/* =====================
   GLOBAL RESET
===================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

@font-face {
  font-family: 'Countach Regular'; /* Choose a descriptive name */
  src: url('fonts/countach-regular-webfont.woff2') format('woff2'),
       url('fonts/countach-regular-webfont.woff') format('woff');
  font-weight: normal; /* Or 400 for regular weight */
  font-style: normal;
}

body{
    font-family: "Source Sans 3", sans-serif;
    background:#EFE2C9;
}


/* =====================
   HEADER WRAPPER
===================== */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:175px;
    z-index:9999;
}


/* =====================
   SHAPED BACKGROUND
===================== */
.header-shape{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:225px;
    z-index:0;
}

.header-shape svg{
    width:100%;
    height:100%;
    display:block;
}

.header-shape path{
    fill:#EFE2C9;
}

/* =====================
   NAV INNER CONTENT
===================== */
/* =====================
   DROPDOWN
===================== */

/* =====================
   PREMIUM GLASS DROPDOWN
===================== */

.nav-dropdown{
    position:relative;
    display:flex;
    align-items:center;
}

/* caret */
.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:6px;
    transition:.2s ease;
}

.dropdown-toggle i{
    font-size:12px;
    transition:.25s ease;
}

/* subtle hover lift */
@media(min-width:901px){
    .nav-dropdown:hover .dropdown-toggle{
        transform:translateY(-1px);
        color:#2E5FA7;
    }
}

/* hover bridge */
.nav-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:18px;
}

/* GLASS MENU */
.dropdown-menu{
    position:absolute;
    top:calc(100% + 14px);
    left:-14px;

    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-radius:18px;
    padding:14px 0;
    min-width:270px;

    border:1px solid rgba(255,255,255,.55);
    box-shadow:
        0 25px 55px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.6);

    opacity:0;
    pointer-events:none;
    transform:translateY(12px) scale(.97);
    transform-origin:top;
    transition:
        opacity .22s ease,
        transform .22s ease;

    z-index:1000;
}

/* menu items */
.dropdown-menu a{
    display:block;
    padding:13px 24px;
    color:#2a2a2a;
    font-weight:600;
    font-size:15px;
    letter-spacing:.2px;
    transition:.18s ease;
    border-radius:10px;
}

/* item hover */
.dropdown-menu a:hover{
    background:rgba(228,154,74,.18);
    color:#2E5FA7;
    transform:translateX(4px);
}

/* DESKTOP OPEN */
@media(min-width:901px){

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu{
        opacity:1;
        pointer-events:auto;
        transform:translateY(0) scale(1);
    }

    .nav-dropdown:hover .dropdown-toggle i{
        transform:rotate(180deg);
    }
}



.nav-inner{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:28px 60px 0 60px;
}

/* =====================
   LOGO
===================== */
.logo{
    display:flex;
    align-items:flex-start;
}

.logo img{
    height:120px;
    width:auto;
    transition:.25s ease;
}

/* =====================
   NAV LINKS
===================== */
.nav-links{
    display:flex;
    align-items:center;
    gap:50px;
    margin-top:-16px;
}


.nav-links a{
    text-decoration:none;
    color:#E49A4A;
    font-weight:600;
    font-size:16px;
    position:relative;
    transition:.2s;
}

/* subtle underline hover */
.nav-links a:not(.nav-cta)::after{
    content:'';
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:#2E5FA7;
    transition:.25s;
}


.nav-links a:hover{
    color:#2E5FA7;
}

.nav-links a:hover::after{
    width:100%;
}

/* =====================
   CTA BUTTON
===================== */
.nav-cta{
    background:#2E5FA7;
    color:white !important;
    padding:12px 26px;
    border-radius:40px;
    font-weight:700;
}

.nav-cta:hover{
    background:#E49A4A;
}


/* =====================
   HAMBURGER
===================== */
.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    margin-top:30px;
    cursor:pointer;
    color: #E49A4A;
}

.hamburger span{
    width:26px;
    height:3px;
    background:#7A5525;
    transition:.3s;
}

/* =====================
   MOBILE STYLES
===================== */
@media(max-width:900px){

    body{
        padding-top:120px;
    }

    .site-header{
        height:130px;
    }

    .header-shape{
        height:130px;
    }

    .nav-inner{
        padding:20px 18px 0 18px;
    }

    .logo img{
        height:50px;
    }

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:120px;
        left:0;
        width:100%;
        background:#EFE2C9;
        flex-direction:column;
        align-items:flex-start;
        padding:24px;
        gap:20px;

        transform:translateY(-120%);
        opacity:0;
        pointer-events:none;
        transition:.3s ease;
        box-shadow:0 20px 35px rgba(0,0,0,.08);
    }

    .nav-links.open{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }

    .nav-links a{
        font-size:18px;
    }

    .nav-cta{
        width:100%;
        text-align:center;
        padding:14px;
    }
}

/* =====================
   HERO
===================== */

.hero{
    position:relative;
    height:720px;
    width:100%;
    background:url("images/orangeclean.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    padding-left:8%;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.35),
        rgba(0,0,0,.25)
    );
}

/* content container */
.hero-content{
    padding-top: 150px;
    position:relative;
    z-index:2;
    max-width:900px;
    color:#F4E7CF;
}

.hero-announcement {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: #E49A4A;
    color: #fff;

    text-align: center;
    padding: 12px 16px;

    font-size: 0.95rem;
    font-weight: 500;

    z-index: 3;
    backdrop-filter: blur(6px);
}

/* BIG HEADLINE */
.hero-title{
    font-family:'Anton', sans-serif;
    font-size:86px;
    line-height:1.05;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.hero-title span{
    display:block;
}

/* rating row */
.hero-rating{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:32px;
    font-weight:600;
}

.stars{
    color:#FFD34D;
    font-size:30px;
    letter-spacing:4px;

    /* new */
    background: rgba(0,0,0,0.45);   /* transparent black */
    padding:10px 18px;
    border-radius:999px;            /* pill shape */
    backdrop-filter: blur(6px);     /* glass effect (modern browsers) */
    -webkit-backdrop-filter: blur(6px);

    display:inline-block;
    line-height:1;
    box-shadow: 
        inset 0 0 0 1px rgba(255,255,255,0.15),
        0 8px 20px rgba(0,0,0,0.25);
}


.rating-text{
    font-size:22px;
    color:#F4E7CF;
}

/* call button */
.hero-call{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#F2A654;
    color:white;
    padding:18px 36px;
    border-radius:60px;
    text-decoration:none;
    font-size:26px;
    font-weight:700;
    transition:.25s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.hero-call:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 16px 40px rgba(0,0,0,.35);
    background:#2E5FA7;
}

.phone-icon{
    font-size:24px;
}

/* MOBILE */
@media(max-width:900px){

    .hero{
        height:510px;
        padding-left:24px;
        padding-right:24px;
        align-items:flex-end;
        padding-bottom:140px;
    }

    .hero-title{
        font-size:46px;
    }

    .rating-text{
        font-size:18px;
    }

    .hero-call{
        font-size:20px;
        padding:14px 26px;
    }
}


.services{
letter-spacing:4px;
color:#f29a2e;
margin-bottom:60px;
font-weight:800;
padding: 75px;
}

.services-title{
    font-size: 45px;
    padding-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
}

.services-subtitle{
    font-size: 15px;
    color:#2E5FA7;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    text-shadow:
        0 0 6px rgba(255,140,0,.8),
        0 0 18px rgba(255,140,0,.6),
        0 0 38px rgba(255,140,0,.4);
}


/* GRID */
.services-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:22px;
}


.card{
position:relative;
overflow:hidden;
border-radius:18px;
height:260px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,.12);
transition:transform .35s ease, box-shadow .35s ease;
}


.card.large{ grid-column:span 3; height:340px; }
.card.medium{ grid-column:span 2; }


.card img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .7s ease, filter .5s ease;
}


/* overlay */
.overlay{
position:absolute;
inset:0;
display:flex;
align-items:flex-end;
padding:24px;
background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.15), transparent);
}


.overlay span{
color:white;
font-size:22px;
font-weight:700;
letter-spacing:1px;
transform:translateY(10px);
transition:transform .35s ease, letter-spacing .35s ease;
}


/* HOVER EFFECT */
.card:hover{
transform:translateY(-8px) scale(1.01);
box-shadow:0 22px 45px rgba(0,0,0,.25);
}


.card:hover img{
transform:scale(1.12);
filter:brightness(.9) saturate(1.1);
}


.card:hover .overlay span{
transform:translateY(0);
letter-spacing:2px;
}


/* MOBILE */
@media(max-width:900px){
.services-title{font-size:30px;margin-bottom:40px;}
.plans-title{font-size:30px;margin-bottom:40px;}
.reviews-title{font-size:30px;margin-bottom:40px;}
.services-grid{grid-template-columns:repeat(2,1fr);}
.card.large{grid-column:span 2;height:240px;}
.card.medium{grid-column:span 2;height:220px;}
}


.plans{
margin:0 0 38px;
display:flex;
flex-direction:column;
gap:16px;
background-color: white;

}

.plans-section {
  background-image: url("images/home.jpg"); 
  background-size: cover;
  background-position: center;
  padding: 75px 20px;
  padding-bottom: 100px;
  position: relative;
}

.plans-section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.plans-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.plans-title{
    font-size: 45px;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 5px;
    text-align: center;
    color:#ffffff;
    text-transform: uppercase;
}

.plans-subtitle{
    font-size: 15px;
    letter-spacing: 4px;
    position: relative;
    color:#ffffff;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    text-shadow:
        0 0 6px rgba(255,140,0,.8),
        0 0 18px rgba(255,140,0,.6),
        0 0 38px rgba(255,140,0,.4);
}

.plan-card {
  background: white;
  z-index: 2;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.plan-frequency {
  text-align: center;
  color: #2E5FA7; /* your brand orange */
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.plan-price {
  text-align: center;
  color: #f28c28; /* your brand orange */
  font-size: 35px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.plan-sub {
  text-align: center;
  color: #f28c28; /* your brand orange */
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px #E49A4A;
}



.plan-features li{
font-weight:600;
list-style: none;
text-align: center;
}


.plan-features .yes::before{
content:"✔";
color:#27c3a6;
margin-right:10px;
list-style: none;
}


.plan-features .no::before{
content:"✖";
color:#ff5b5b;
margin-right:10px;
list-style: none;
}


.plan-btn{
display:block;
background:linear-gradient(135deg,#E49A4A,#E49A4A);
color:white;
padding:18px 36px;
border-radius:999px;
font-weight:800;
letter-spacing:1px;
text-decoration:none;
transition:.25s ease;
width: fit-content;
margin: 24px auto 0 auto;

}


.plan-btn:hover{
transform:scale(1.05);
box-shadow:0 10px 30px rgba(0,0,0,.2);
}


@media(max-width:900px){
.plans-inner{
grid-template-columns:1fr;
}
.plan-price{font-size:40px;text}
}

@media (max-width:900px){
  .plans-container {
    grid-template-columns: 1fr;
  }
}

/* =====================
   REVIEWS SECTION
===================== */

.reviews{
    padding:80px 6%;
    background:#EFE2C9;
}

.reviews-title{
    font-size:45px;
    letter-spacing: 4px;
    text-align:center;
    color:#E49A4A;
    text-transform:uppercase;
    margin-bottom:5px;
}

.reviews-subtitle{
    font-size:15px;
    letter-spacing: 4px;
    color:#2E5FA7;
    text-align:center;
    margin-bottom:45px;
    text-transform:uppercase;
    text-shadow:
        0 0 6px rgba(255,140,0,.8),
        0 0 18px rgba(255,140,0,.6),
        0 0 38px rgba(255,140,0,.4);
}

/* MASONRY GRID */
.reviews-grid{
    column-count:3;
    column-gap:26px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.review-card{
    background:white;
    border-radius:18px;
    padding:22px 22px 18px 22px;
    margin:0 0 26px;
    display:inline-block;
    width:100%;
    break-inside:avoid;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    transition:.25s ease;
}

.review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

/* stars */
.review-stars{
    color:#FFD34D;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:10px;
}

/* text */
.review-text{
    color:#333;
    font-size:15px;
    line-height:1.6;
    margin-bottom:18px;
    font-weight:500;
}

/* user row */
.review-user{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    color:#2E5FA7;
}

.review-user img{
    width:38px;
    height:38px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #E49A4A;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:1100px){
    .reviews-grid{ column-count:2; }
}

@media(max-width:700px){
    .reviews-grid{ column-count:1; }

    .reviews-title{ font-size:34px; }
}

/* MOBILE DROPDOWN */
@media(max-width:900px){

    .dropdown-menu{
        position:static;
        box-shadow:none;
        background:transparent;
        padding:0;
        max-height:0;
        overflow:hidden;
        opacity:1;
        transform:none;
        pointer-events:auto;
        transition:max-height .35s ease;
    }

    .nav-dropdown.active .dropdown-menu{
        max-height:500px;
        margin-top:10px;
    }

    .dropdown-menu a{
        padding:10px 0 10px 14px;
        font-size:17px;
    }

    .dropdown-toggle{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .nav-dropdown.active .dropdown-toggle i{
        transform:rotate(180deg);
    }
}

/* =====================
   FOOTER
===================== */

.site-footer{
    background:#F4E7CF;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:70px 6% 40px;
    display:grid;
    grid-template-columns:2fr 1fr 1.4fr 1.2fr;
    gap:50px;
    padding-top: 90px;
}

/* brand */
.footer-brand img{
    height:85px;
    margin-bottom:18px;
}

.footer-brand p{
    color:#555;
    line-height:1.7;
    font-weight:500;
    margin-bottom:22px;
    max-width:320px;
}

/* column titles */
.footer-col h4{
    color:#2E5FA7;
    margin-bottom:16px;
    font-size:18px;
    letter-spacing:1px;
}

/* links */
.footer-col a{
    display:block;
    text-decoration:none;
    color:#444;
    margin-bottom:12px;
    font-weight:500;
    transition:.18s ease;
}

.footer-col a:hover{
    color:#E49A4A;
    transform:translateX(3px);
}

/* icons inside contact */
.footer-col i{
    color:#E49A4A;
}

.footer-col i:hover{
    color:#ffffff;
}

/* socials */
.footer-socials{
    display:flex;
    gap:14px;
}

.footer-socials a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2E5FA7;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
    transition:.25s ease;
}

.footer-socials a:hover{
    background:#E49A4A;
    color:white;
    transform:translateY(-3px);
}

/* bottom bar */
.footer-bottom{
    text-align:center;
    padding:18px;
    font-size:14px;
    color:#666;
    border-top:1px solid rgba(0,0,0,.05);
}

/* =====================
   MOBILE
===================== */

@media(max-width:900px){

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .footer-brand p{
        margin:auto auto 20px;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-col a:hover{
        transform:none;
    }
}

/* ===== CTA IMAGE SECTION ===== */

.cta-section {
    position: relative;
    height: 520px;
    background-image: url("images/home.jpg"); /* change this */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* darken image */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* fade into footer color */
.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    pointer-events: none;

    /* replace #0e1621 with your actual footer color */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.35) 40%,
        #F4E7CF 100%
    );
}

/* content */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    color: white;
}

.cta-title {
    font-size: 62px;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cta-sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* button */

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#F2A654;
    color:white;
    padding:18px 36px;
    border-radius:60px;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    transition:.25s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.cta-button:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 16px 40px rgba(0,0,0,.35);
    background:#2E5FA7;
}

/* ===== Announcement Bar ===== */

.announcement-bar {
    width: 100%;
    background: #F2A654;
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 8px 12px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1000;
}

.announcement-bar strong {
    font-weight: 700;
}

.announcement-bar .divider {
    margin: 0 10px;
    opacity: 0.7;
}

/* push navbar down correctly if it's fixed */
body.has-announcement nav {
    top: 36px;
}

.about-hero {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.about-hero h1 {
    font-size: 38px;
    padding-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    color:#F2A654;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.75;
    line-height: 1.6;
}

.about-story {
    padding: 60px 20px;
    background: white;
}

.about-story-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-story-text p {
    margin-bottom: 16px;
    line-height: 1.7;
    opacity: 0.85;
}

.about-story-image img {
    width: 100%;
    border-radius: 14px;
}

.about-trust {
    padding: 60px 20px;
    text-align: center;
}

.about-trust h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    color:#F2A654;
}

.trust-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.trust-item p {
    opacity: 0.75;
    line-height: 1.6;
}

.about-process {
    padding: 100px 20px;
    text-align: center;
    background: white;
}

.process-steps {
    max-width: 1000px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step span {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: #F2A654;
    color: white;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ===== TEAM SECTION ===== */

.team-section {
    padding: 50px 20px;
    text-align: center;
}

.team-title {
    font-size: 38px;
    padding-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    color:#F2A654;
}

/* grid */
.team-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* card */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

/* image */
.team-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .45s ease;
}

/* bottom gradient + name */
.team-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 16px 18px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.3px;

    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

/* hover effect (matches service cards feel) */
.team-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.team-card:hover .team-info {
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}

@media (max-width: 1000px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 900px) {
    .about-story-grid,
    .trust-grid,
    .process-steps {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

.commercial-overview {
    padding: 90px 20px;
}

.commercial-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commercial-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.commercial-text p {
    margin-bottom: 16px;
    line-height: 1.7;
    opacity: 0.85;
}

.commercial-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.commercial-benefits {
    padding: 50px 20px;
    text-align: center;
    background: white;
}

.commercial-benefits h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

.benefits-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    opacity: 0.75;
    line-height: 1.6;
}

@media (max-width: 1000px) {

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .commercial-hero h1 {
        font-size: 32px;
    }
}

/* ===== LOGO SLIDER ===== */

.logo-slider-section {
    padding: 50px 20px;
    padding-bottom: 60px;
    text-align: center;
}

.logo-slider-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Slider container */
.logo-slider {
    overflow: hidden;
    position: relative;
}

/* Track that moves */
.logo-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

/* Logo images */
.logo-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s ease;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Optional: Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.why-choose {
  padding: 65px 5%;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon-circle {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2A654, #F2A654);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  transition: 0.3s ease;
}

.why-card:hover .icon-circle {
  transform: scale(1.1);
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.faq-section {
  padding: 100px 5%;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
}

.faq-question:hover {
  color: #F2A654; /* Brand Orange */
}

.faq-icon {
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #F2A654;
}

/* Overlay */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

/* Active State */
.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.contact-modal {
  background: #ffffff;
  width: 90%;
  max-width: 600px;
  padding: 50px 40px;
  border-radius: 20px;
  transform: scale(0.9);
  transition: 0.4s ease;
  position: relative;
  text-align: center;
}

.contact-overlay.active .contact-modal {
  transform: scale(1);
}

/* Close Button */
.close-contact {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: 0.3s;
}

.close-contact:hover {
  color: #ff6a13;
}

/* Heading */
.contact-modal h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.contact-subtext {
  margin-bottom: 30px;
  color: #666;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6a13;
  box-shadow: 0 0 0 3px rgba(255,106,19,0.15);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #ff8c00, #ff6a13);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,106,19,0.35);
}

/* Mobile */
@media (max-width: 600px) {
  .contact-modal {
    padding: 40px 25px;
  }
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  background: white;
  appearance: none;
  transition: 0.3s;
}

.contact-form select:focus {
  outline: none;
  border-color: #ff6a13;
  box-shadow: 0 0 0 3px rgba(255,106,19,0.15);
}

.form-step {
  display: none;
  animation: fadeSlide 0.4s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.next-btn,
.back-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #111;
  color: white;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.next-btn:hover,
.back-btn:hover {
  background: #ff6a13;
}

.form-navigation {
  display: flex;
  gap: 15px;
}

.form-navigation .back-btn,
.form-navigation .submit-btn {
  width: 50%;
}

.property-type {
  display: flex;
  gap: 20px;
}

.property-option {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
}

.property-option input {
  display: none;
}

.property-option span {
  display: block;
}

/* Hover */
.property-option:hover {
  border-color: #ff6a13;
}

/* Active (checked) state */
.property-option input:checked + span {
  color: white;
}

.property-option input:checked + span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8c00, #ff6a13);
  border-radius: 14px;
  z-index: -1;
}

.contact-page {
  padding: 50px 5%;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  width: 100%;
  max-width: 650px;
  background: white;
  padding: 60px 50px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.contact-header p {
  color: #666;
}

.form-step {
  display: none;
  animation: fadeSlide 0.4s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #ff6a13;
  box-shadow: 0 0 0 3px rgba(255,106,19,0.15);
}

.next-btn,
.back-btn,
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #ff8c00, #ff6a13);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.next-btn:hover,
.back-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255,106,19,0.35);
}

.form-navigation {
  display: flex;
  gap: 15px;
}

.form-navigation .back-btn,
.form-navigation .submit-btn {
  width: 50%;
}

.property-type {
  display: flex;
  gap: 20px;
}

.property-option {
  flex: 1;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.property-option input {
  display: none;
}

.property-option:hover {
  border-color: #ff6a13;
}

.property-option input:checked + span {
  color: white;
}

.property-option input:checked + span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8c00, #ff6a13);
  border-radius: 14px;
  z-index: -1;
}

.success-state {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ff6a13);
  color: white;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
