:root{
  --orange:#E8672C;
  --orange-dk:#C4521E;
  --navy:#1A2E42;
  --navy-lt:#233B50;
  --cream:#FFF9F5;
  --cream2:#FFF3ED;
  --white:#ffffff;
  --gray:#667085;
  --border:#EAECF0;
  --shadow-sm:0 2px 8px rgba(0,0,0,.06);
  --shadow-md:0 8px 30px rgba(0,0,0,.09);
  --shadow-lg:0 20px 60px rgba(0,0,0,.10);
  --r-sm:12px;
  --r-md:18px;
  --r-lg:28px;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',Arial,sans-serif;color:var(--navy);line-height:1.5;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{display:block;max-width:100%;}

.container{max-width:1240px;margin:auto;padding:0 24px;}
.eyebrow{display:inline-block;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--orange);margin-bottom:14px;}
.section-title{font-size:48px;font-weight:800;line-height:1.1;color:var(--navy-lt);}
.section-title strong{color:var(--orange);}
.section-sub{font-size:17px;line-height:1.85;color:var(--gray);margin-top:14px;}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.header{
  position:sticky;top:0;z-index:9999;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.navbar{
  height:80px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo img{
    height:170px;
    width:auto;
    display:block;
}
.logo span{color:var(--orange);}

.nav-menu{
  display:flex;align-items:center;gap:36px;
}
.nav-menu a{
  font-size:15px;font-weight:600;color:var(--navy-lt);
  position:relative;padding-bottom:4px;transition:color .25s;
}
.nav-menu a::after{
  content:'';position:absolute;left:0;bottom:0;
  width:0;height:2px;background:var(--orange);
  transition:width .28s;
}
.nav-menu a:hover{color:var(--orange);}
.nav-menu a:hover::after{width:100%;}

.header-cta{
  background:var(--orange);color:#fff;
  padding:12px 24px;border-radius:var(--r-sm);
  font-weight:700;font-size:14px;white-space:nowrap;
  transition:background .25s;
}
.header-cta:hover{background:var(--orange-dk);}

/* hamburger */
.hamburger{
  display:none;
  width:44px;height:44px;flex-direction:column;
  align-items:center;justify-content:center;gap:5px;
  cursor:pointer;background:none;border:none;padding:4px;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:var(--navy);border-radius:2px;
  transition:transform .3s,opacity .3s;
}

/* mobile drawer */
.mobile-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;visibility:hidden;
  transition:opacity .35s,visibility .35s;
  z-index:9998;
}
.mobile-overlay.open{opacity:1;visibility:visible;}

.mobile-drawer{
  position:fixed;top:0;right:-100%;
  width:300px;height:100vh;
  background:#fff;z-index:9999;
  padding:80px 32px 40px;
  transition:right .38s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;gap:0;
}
.mobile-drawer.open{right:0;}

.drawer-close{
  position:absolute;top:20px;right:20px;
  width:42px;height:42px;border-radius:10px;
  background:var(--cream2);color:var(--orange);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;cursor:pointer;border:none;
}
.mobile-drawer ul{display:flex;flex-direction:column;}
.mobile-drawer ul li a{
  display:block;padding:14px 0;
  font-size:16px;font-weight:600;color:var(--navy-lt);
  border-bottom:1px solid var(--border);
  transition:color .2s;
}
.mobile-drawer ul li a:hover{color:var(--orange);}
.mobile-drawer .drawer-cta{
  margin-top:28px;background:var(--orange);color:#fff;
  padding:15px;border-radius:var(--r-sm);
  font-weight:700;text-align:center;font-size:15px;
  transition:background .25s;
}
.mobile-drawer .drawer-cta:hover{background:var(--orange-dk);}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero{background:var(--cream);padding:90px 0 100px;}
.hero-inner{
  display:grid;grid-template-columns:1.15fr .85fr;
  gap:60px;align-items:center;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:var(--orange);
  padding:9px 18px;border-radius:50px;
  font-size:13px;font-weight:700;
  box-shadow:var(--shadow-sm);
  margin-bottom:22px;
}
.hero h1{
  font-size:58px;font-weight:800;line-height:1.09;
  color:var(--navy);margin-bottom:20px;
}
.hero h1 span{color:var(--orange);}
.hero-desc{font-size:17px;line-height:1.85;color:var(--gray);}
.hero-btns{display:flex;gap:14px;margin-top:32px;flex-wrap:wrap;}
.btn-orange{
  background:var(--orange);color:#fff;
  padding:15px 28px;border-radius:var(--r-sm);
  font-weight:700;font-size:15px;
  display:inline-flex;align-items:center;gap:10px;
  transition:background .25s,transform .2s;
}
.btn-orange:hover{background:var(--orange-dk);transform:translateY(-2px);}
.btn-wa{
  background:#fff;color:#25D366;
  border:2px solid #25D366;
  padding:15px 28px;border-radius:var(--r-sm);
  font-weight:700;font-size:15px;
  display:inline-flex;align-items:center;gap:10px;
  transition:background .25s,transform .2s;
}
.btn-wa:hover{background:#f0fff6;transform:translateY(-2px);}

.hero-chips{
  display:grid;grid-template-columns:1fr 1fr;
  gap:12px;margin-top:36px;
}
.chip{
  background:#fff;border-radius:var(--r-sm);
  padding:14px 16px;
  display:flex;align-items:center;gap:12px;
  box-shadow:var(--shadow-sm);
  font-size:13px;font-weight:600;
}
.chip i{color:var(--orange);font-size:17px;min-width:18px;}

/* QUOTE FORM */
.quote-card{
  background:#fff;border-radius:var(--r-lg);
  padding:36px;box-shadow:var(--shadow-lg);
}
.quote-card h3{font-size:26px;font-weight:800;margin-bottom:6px;color:var(--navy);}
.quote-card>.sub{font-size:14px;color:var(--gray);margin-bottom:22px;}
.form-fields{display:flex;flex-direction:column;gap:12px;}
.form-fields input,
.form-fields select{
  width:100%;padding:14px 16px;
  border:1.5px solid var(--border);border-radius:var(--r-sm);
  font-size:14px;color:var(--navy);
  background:#fff;outline:none;
  transition:border-color .2s;
  appearance:none;
}
.form-fields input:focus,
.form-fields select:focus{border-color:var(--orange);}
.form-fields input::placeholder{color:#adb5bd;}
.form-btn{
  width:100%;padding:16px;
  background:var(--orange);color:#fff;
  border:none;border-radius:var(--r-sm);
  font-size:16px;font-weight:700;
  cursor:pointer;margin-top:4px;
  transition:background .25s;
}
.form-btn:hover{background:var(--orange-dk);}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar{background:var(--navy);padding:56px 24px;}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:20px;text-align:center;
}
.stat-num{font-size:52px;font-weight:800;color:#fff;line-height:1;}
.stat-label{font-size:14px;color:rgba(255,255,255,.6);margin-top:6px;}
.stat-item .stat-num span{color:var(--orange);}


.about-section{
    padding:110px 0;
    background:#fff;
}

.about-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-visual{
    position:relative;
}

.about-img-wrap{
    position:relative;
    height:520px;
    border-radius:30px;
    overflow:hidden;
    padding:0;
    background:none;
}

.about-img-wrap img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:30px;
}

.exp-badge{
    position:absolute;
    left:25px;
    bottom:25px;
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.exp-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#FFF3ED;
    color:#E8672C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.exp-badge h4{
    color:#E8672C;
    font-size:30px;
    font-weight:800;
    line-height:1;
}

.exp-badge span{
    color:#667085;
    font-size:13px;
    font-weight:600;
}

.about-text h2{
    font-size:52px;
    line-height:1.08;
    color:#233B50;
    font-weight:800;
    margin-bottom:20px;
}

.about-text h2 span{
    display:block;
    color:#E8672C;
}

.body-p{
    font-size:17px;
    line-height:1.9;
    color:#667085;
    margin-bottom:20px;
}

.about-quote{
    border-left:4px solid #E8672C;
    padding-left:20px;
    margin:30px 0;
    font-size:17px;
    line-height:1.8;
    font-weight:600;
    color:#233B50;
}

.about-feats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.feat-item{
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.feat-icon{
    width:52px;
    height:52px;
    min-width:52px;
    background:#FFF3ED;
    border-radius:14px;
    color:#E8672C;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feat-item h5{
    font-size:16px;
    font-weight:700;
    color:#233B50;
    margin-bottom:4px;
}

.feat-item p{
    font-size:13px;
    color:#667085;
    line-height:1.7;
}

.about-actions{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
}

.btn-orange{
    background:#E8672C;
    color:#fff;
    text-decoration:none;
    padding:16px 28px;
    border-radius:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

.phone-row{
    display:flex;
    align-items:center;
    gap:12px;
}

.ph-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#FFF3ED;
    color:#E8672C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.ph-info small{
    display:block;
    color:#667085;
    font-size:12px;
}

.ph-info strong{
    color:#233B50;
    font-size:20px;
}
  
.services-section{padding:110px 0;background:var(--cream);}
.services-head{text-align:center;max-width:780px;margin:0 auto 64px;}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.svc-card{
  background:#fff;border-radius:var(--r-lg);
  padding:36px 32px;border:1.5px solid transparent;
  transition:border-color .3s,transform .3s,box-shadow .3s;
  position:relative;overflow:hidden;
}
.svc-card::after{
  content:'';position:absolute;top:0;left:0;
  width:100%;height:4px;background:var(--orange);
  transform:scaleX(0);transform-origin:left;
  transition:transform .35s;
}
.svc-card:hover{
  border-color:rgba(232,103,44,.15);
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(232,103,44,.10);
}
.svc-card:hover::after{transform:scaleX(1);}
.svc-icon{
  width:76px;height:76px;border-radius:20px;
  background:var(--cream2);color:var(--orange);
  display:flex;align-items:center;justify-content:center;
  font-size:28px;margin-bottom:22px;
}
.svc-card h3{font-size:22px;font-weight:700;color:var(--navy-lt);margin-bottom:12px;}
.svc-card p{font-size:14px;color:var(--gray);line-height:1.8;margin-bottom:22px;}
.svc-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:14px;font-weight:700;color:var(--orange);
  transition:gap .2s,color .2s;
}
.svc-link:hover{gap:12px;color:var(--orange-dk);}
/* ==========================
   OUR WORK SECTION
========================== */

.our-work-section{
    padding:120px 0;
    background:#fff;
}

.work-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.work-heading .eyebrow{
    display:inline-block;
    color:var(--orange);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.work-heading h2{
    font-size:56px;
    font-weight:800;
    color:var(--navy);
    line-height:1.1;
    margin-bottom:15px;
}

.work-heading h2 span{
    display:block;
    color:var(--orange);
}

.work-heading p{
    font-size:17px;
    color:var(--gray);
    line-height:1.8;
}

.work-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:280px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:22px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent
    );
}

.gallery-overlay h4{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .work-gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .work-heading h2{
        font-size:42px;
    }

}

/* Mobile */

@media(max-width:768px){

    .our-work-section{
        padding:80px 0;
    }

    .work-gallery{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .gallery-item{
        height:170px;
        border-radius:16px;
    }

    .gallery-overlay{
        padding:12px;
    }

    .gallery-overlay h4{
        font-size:13px;
    }

    .work-heading{
        margin-bottom:40px;
    }

    .work-heading h2{
        font-size:32px;
    }

    .work-heading p{
        font-size:15px;
    }

}

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
/* WHY CHOOSE US */

.why-section{
    padding:120px 0;
    background:#FFF9F5;
}

.section-head{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.eyebrow{
    display:inline-block;
    color:#E8672C;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-title{
    font-size:58px;
    line-height:1.1;
    color:#233B50;
    font-weight:800;
    margin-bottom:20px;
}

.section-head p{
    color:#667085;
    font-size:18px;
    line-height:1.8;
}

.why-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px 50px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.why-icon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:20px;
    background:#FFF3ED;
    color:#E8672C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.why-content h3{
    color:#233B50;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.why-content p{
    color:#667085;
    font-size:15px;
    line-height:1.9;
}

/* TABLET */

@media(max-width:991px){

    .section-title{
        font-size:44px;
    }

    .why-list{
        gap:30px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .why-section{
        padding:80px 0;
    }

    .why-list{
        grid-template-columns:1fr;
        gap:28px;
    }

    .section-title{
        font-size:34px;
    }

    .why-icon{
        width:65px;
        height:65px;
        min-width:65px;
        font-size:24px;
    }

    .why-content h3{
        font-size:19px;
    }

}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-section{padding:110px 0;background:var(--cream);}
.process-head{text-align:center;max-width:700px;margin:0 auto 72px;}
.process-steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;position:relative;
}
.process-steps::before{
  content:'';position:absolute;
  top:40px;left:calc(12.5%);right:calc(12.5%);
  height:2px;background:linear-gradient(90deg,var(--orange),#f5914d);
  z-index:0;
}
.p-step{text-align:center;position:relative;z-index:1;padding:0 16px;}
.p-num{
  width:80px;height:80px;border-radius:50%;
  background:var(--orange);color:#fff;
  font-size:26px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 22px;
  border:5px solid var(--cream);
  box-shadow:0 0 0 3px var(--orange);
}
.p-step h4{font-size:17px;font-weight:700;margin-bottom:10px;color:var(--navy);}
.p-step p{font-size:14px;color:var(--gray);line-height:1.7;}

/* ─────────────────────────────────────────
   AREAS
───────────────────────────────────────── */
.areas-section{padding:110px 0;background:#fff;}
.areas-head{text-align:center;max-width:650px;margin:0 auto 56px;}
.areas-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.area-chip{
  background:var(--cream);border-radius:var(--r-sm);
  padding:18px 20px;
  display:flex;align-items:center;gap:12px;
  font-size:14px;font-weight:600;color:var(--navy-lt);
  transition:background .25s,transform .2s,box-shadow .2s;
}
.area-chip:hover{
  background:var(--cream2);
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.area-chip i{color:var(--orange);font-size:15px;}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi-section{padding:110px 0;background:var(--cream);}
.testi-head{text-align:center;max-width:650px;margin:0 auto 60px;}
.testi-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.testi-card{
  background:#fff;border-radius:var(--r-lg);padding:32px;
  position:relative;
}
.t-stars{color:#F59E0B;font-size:16px;letter-spacing:2px;margin-bottom:16px;}
.t-text{font-size:15px;line-height:1.8;color:var(--gray);margin-bottom:22px;}
.t-author{display:flex;align-items:center;gap:14px;}
.t-avatar{
  width:46px;height:46px;border-radius:50%;
  background:var(--orange);color:#fff;
  font-size:18px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.t-name{font-size:15px;font-weight:700;color:var(--navy);}
.t-role{font-size:12px;color:var(--gray);}
.t-quote{
  position:absolute;top:24px;right:28px;
  font-size:60px;color:var(--orange);opacity:.1;
  font-family:Georgia,serif;line-height:1;
}

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta-section{
  background:linear-gradient(135deg,var(--orange) 0%,#c9521c 100%);
  padding:90px 24px;text-align:center;
}
.cta-section h2{font-size:48px;font-weight:800;color:#fff;margin-bottom:14px;}
.cta-section p{font-size:18px;color:rgba(255,255,255,.8);margin-bottom:36px;}
.cta-btns{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;}
.btn-white{
  background:#fff;color:var(--orange);
  padding:16px 32px;border-radius:var(--r-sm);
  font-weight:700;font-size:15px;
  display:inline-flex;align-items:center;gap:10px;
  transition:transform .2s,box-shadow .2s;
}
.btn-white:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(0,0,0,.15);}
.btn-outline-w{
  background:transparent;color:#fff;
  border:2px solid rgba(255,255,255,.65);
  padding:16px 32px;border-radius:var(--r-sm);
  font-weight:700;font-size:15px;
  display:inline-flex;align-items:center;gap:10px;
  transition:background .25s;
}
.btn-outline-w:hover{background:rgba(255,255,255,.12);}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer{background:var(--navy);color:#fff;padding:80px 0 0;}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:50px;padding-bottom:60px;
}
.f-brand .logo{font-size:26px;font-weight:800;color:#fff;display:block;margin-bottom:16px;}
.f-brand .logo span{color:var(--orange);}
.f-brand p{font-size:14px;color:rgba(255,255,255,.5);line-height:1.8;margin-bottom:24px;}
.socials{display:flex;gap:10px;}
.socials a{
  width:40px;height:40px;border-radius:10px;
  background:rgba(255,255,255,.08);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;transition:background .25s;
}
.socials a:hover{background:var(--orange);}
.f-col h4{font-size:15px;font-weight:700;margin-bottom:20px;}
.f-col ul{display:flex;flex-direction:column;gap:11px;}
.f-col ul a{font-size:14px;color:rgba(255,255,255,.5);transition:color .2s;}
.f-col ul a:hover{color:var(--orange);}
.f-contact-row{display:flex;gap:12px;align-items:flex-start;margin-bottom:14px;}
.f-contact-row i{color:var(--orange);margin-top:2px;font-size:14px;min-width:14px;}
.f-contact-row span{font-size:14px;color:rgba(255,255,255,.55);line-height:1.6;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:10px;
}
.footer-bottom p{font-size:13px;color:rgba(255,255,255,.35);}

/* ─────────────────────────────────────────
   FLOATING WA
───────────────────────────────────────── */
.wa-float{
  position:fixed;bottom:28px;right:28px;z-index:9000;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
  box-shadow:0 6px 24px rgba(37,211,102,.4);
  transition:transform .25s,box-shadow .25s;
}
.wa-float:hover{transform:scale(1.1);box-shadow:0 10px 32px rgba(37,211,102,.5);}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* Tablet */
@media(max-width:1024px){
  .section-title{font-size:40px;}
  .hero h1{font-size:46px;}
  .about-text h2{font-size:38px;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px;}
  .areas-grid{grid-template-columns:repeat(3,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:36px;}
  .why-inner{gap:48px;}
}

/* Mobile */
@media(max-width:768px){
  .nav-menu,.header-cta{display:none;}
  .hamburger{display:flex;}

  .hero{padding:56px 0 64px;}
  .hero-inner{grid-template-columns:1fr;gap:40px;}
  .hero h1{font-size:36px;}
  .hero-btns{flex-direction:column;}
  .btn-orange,.btn-wa{justify-content:center;}
  .hero-chips{grid-template-columns:1fr;}

  .stats-bar{padding:48px 24px;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat-num{font-size:40px;}

  .about-section{padding:72px 0;}
  .about-inner{grid-template-columns:1fr;gap:40px;}
  .about-img-wrap{height:300px;}
  .about-text h2{font-size:32px;}
  .about-feats{grid-template-columns:1fr;}
  .about-actions{flex-direction:column;align-items:flex-start;}

  .services-section,.why-section,.process-section,.areas-section,.testi-section{padding:72px 0;}
  .services-grid{grid-template-columns:1fr;}
  .services-head,.process-head,.testi-head,.areas-head,.why-inner{gap:0;}
  .section-title{font-size:32px;}

  .why-inner{grid-template-columns:1fr;}
  .why-stat-row{grid-template-columns:1fr 1fr;}

  .process-steps{grid-template-columns:repeat(2,1fr);}
  .process-steps::before{display:none;}

  .areas-grid{grid-template-columns:repeat(2,1fr);}

  .testi-grid{grid-template-columns:1fr;}

  .cta-section h2{font-size:32px;}
  .cta-section p{font-size:16px;}

  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}

  .wa-float{bottom:20px;right:20px;width:52px;height:52px;font-size:24px;}
}

@media(max-width:480px){
  .hero h1{font-size:30px;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .process-steps{grid-template-columns:1fr;}
  .areas-grid{grid-template-columns:1fr 1fr;}
  .cta-btns{flex-direction:column;align-items:center;}
  .why-stat-row{grid-template-columns:1fr;}
}
/* =====================================
   FINAL MOBILE FIX UPDATE
===================================== */

html,
body{
    width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:100%;
    max-width:1240px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

/* Fix long text overflow */

h1,h2,h3,h4,h5,h6,p,a,span{
    word-wrap:break-word;
    overflow-wrap:break-word;
}

/* Mobile Drawer Upgrade */

.mobile-drawer{
    overflow-y:auto;
}

@media(max-width:768px){

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .mobile-drawer{
        width:100%;
        max-width:100%;
        padding:85px 24px 30px;
    }

    .drawer-close{
        width:46px;
        height:46px;
        font-size:20px;
        top:20px;
        right:20px;
    }

    .hero-inner,
    .about-inner,
    .why-inner{
        grid-template-columns:1fr !important;
    }

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero-btns{
        flex-direction:column;
    }

    .btn-orange,
    .btn-wa{
        width:100%;
        justify-content:center;
    }

    .hero-chips{
        grid-template-columns:1fr;
    }

    .quote-card{
        padding:24px;
    }

    .about-section{
        padding:80px 0;
    }

    .about-img-wrap{
        height:340px;
    }

    .about-actions{
        flex-direction:column;
        gap:15px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .svc-card{
        width:100%;
    }

    .why-stat-row{
        grid-template-columns:1fr;
    }

    .process-steps{
        grid-template-columns:1fr;
    }

    .areas-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .section-title{
        font-size:30px;
        line-height:1.2;
    }

    .about-text h2{
        font-size:30px;
        line-height:1.2;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:28px;
    }

    .section-title,
    .about-text h2{
        font-size:26px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .mobile-drawer{
        padding:80px 20px 25px;
    }

    .areas-grid{
        grid-template-columns:1fr;
    }
    .why-card,
.why-card *,
.why-card p,
.why-card h3{
    max-width:100%;
    white-space:normal;
    word-wrap:break-word;
    overflow-wrap:break-word;
}
}
/* MOBILE FIXED BAR */

.mobile-bottom-bar{
    display:none;
}

@media(max-width:768px){

    body{
        padding-bottom:75px;
    }

    .mobile-bottom-bar{
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        height:65px;
        background:#fff;
        display:flex;
        z-index:99999;
        box-shadow:0 -5px 20px rgba(0,0,0,.08);
    }

    .mobile-btn{
        flex:1;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-decoration:none;
        font-size:12px;
        font-weight:600;
        gap:4px;
    }

    .mobile-btn i{
        font-size:18px;
    }

    .call-btn-mobile{
        color:#E8672C;
    }

    .whatsapp-btn-mobile{
        color:#25D366;
        border-left:1px solid #eee;
        border-right:1px solid #eee;
    }

    .inquiry-btn-mobile{
        color:#233B50;
    }

}