/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'DM Sans',sans-serif;color:#222;line-height:1.6;background:#fff
    font-size: 16px;
}
h1,h2,h3,h4,h5,h6{font-family:'Space Grotesk',sans-serif;font-weight:700;line-height:1.2;color:#1a3a5c}
a{color:#1a3a5c;text-decoration:none}
a:hover{color:#28a745}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}
.container{width:90%;max-width:1200px;margin:0 auto}

/* ===== UTILITY ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.85rem 2rem;border-radius:6px;font-weight:700;font-size:1rem;text-align:center;cursor:pointer;transition:all .25s ease;border:none}
.btn-primary{background:#28a745;color:#fff}
.btn-primary:hover{background:#218838;color:#fff;transform:translateY(-2px);box-shadow:0 4px 14px rgba(40,167,69,.35)}
.btn-outline{background:transparent;color:#fff;border:2px solid #fff}
.btn-outline:hover{background:#fff;color:#1a3a5c}
.btn-navy{background:#1a3a5c;color:#fff}
.btn-navy:hover{background:#142d47;color:#fff;transform:translateY(-2px)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ===== TOP BAR ===== */
.top-bar{background:#142d47;color:#fff;padding:.45rem 0;font-size:.85rem;text-align:center}
.top-bar a{color:#28a745;font-weight:700}
.top-bar a:hover{color:#fff}

/* ===== HEADER / STICKY ===== */
.site-header{background:#1a3a5c;position:sticky;top:0;z-index:1000;box-shadow:0 2px 12px rgba(0,0,0,.15)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.logo{font-family:'Space Grotesk',sans-serif;font-size:1.35rem;font-weight:700;color:#fff;white-space:nowrap}
.logo span{color:#28a745}
.header-phone{display:flex;align-items:center;gap:.5rem;background:#28a745;color:#fff;padding:.55rem 1.2rem;border-radius:6px;font-weight:700;font-size:.95rem;transition:background .25s;white-space:nowrap}
.header-phone:hover{background:#218838;color:#fff}
.header-phone i{font-size:1.1rem}

/* ===== NAVIGATION ===== */
.nav-toggle{display:none;background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer}
.main-nav ul{display:flex;gap:.25rem}
.main-nav a{color:#fff;padding:.5rem .85rem;border-radius:4px;font-weight:500;font-size:.9rem;transition:background .2s}
.main-nav a:hover,.main-nav a.active{background:rgba(255,255,255,.12);color:#fff}
.dropdown{position:relative}
.dropdown-menu{display:none;position:absolute;top:100%;left:0;background:#fff;border-radius:6px;box-shadow:0 8px 24px rgba(0,0,0,.12);min-width:220px;padding:.5rem 0;z-index:100}
.dropdown-menu a{color:#1a3a5c;padding:.55rem 1.2rem;display:block;font-size:.88rem}
.dropdown-menu a:hover{background:#f0f7ff;color:#28a745}
.dropdown:hover .dropdown-menu{display:block}

@media(max-width:991px){
  .nav-toggle{display:block}
  .main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#1a3a5c;padding:1rem;box-shadow:0 8px 24px rgba(0,0,0,.2)}
  .main-nav.open{display:block}
  .main-nav ul{flex-direction:column;gap:0}
  .main-nav a{padding:.75rem 1rem;display:block}
  .dropdown-menu{position:static;box-shadow:none;background:rgba(255,255,255,.05);border-radius:0;padding-left:1rem}
  .dropdown-menu a{color:#ccc}
  .dropdown:hover .dropdown-menu,.dropdown.open .dropdown-menu{display:block}
}

/* ===== HERO ===== */
.hero{position:relative;background:#1a3a5c;color:#fff;padding:5rem 0 4rem;overflow:hidden;min-height:520px;display:flex;align-items:center}
.hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(26,58,92,.92),rgba(20,45,71,.85));z-index:1}
.hero .container{position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.hero h1{font-size:2.75rem;margin-bottom:1rem;line-height:1.15;color:#fff}
.hero h1 span{color:#28a745}
.hero p{font-size:1.15rem;margin-bottom:2rem;opacity:.92;max-width:540px}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}

/* Before/After Slider */
.ba-slider{position:relative;width:100%;max-width:520px;aspect-ratio:4/3;border-radius:12px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.3);cursor:col-resize;-webkit-user-select:none;user-select:none}
.ba-slider img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}
.ba-after{clip-path:inset(0 0 0 50%)}
.ba-handle{position:absolute;top:0;bottom:0;left:50%;width:4px;background:#28a745;z-index:10;transform:translateX(-50%)}
.ba-handle::after{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;background:#28a745;border-radius:50%;border:3px solid #fff;box-shadow:0 2px 8px rgba(0,0,0,.3)}
.ba-handle i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;font-size:1.1rem;z-index:11}
.ba-label{position:absolute;bottom:12px;padding:.3rem .7rem;background:rgba(0,0,0,.6);color:#fff;font-size:.75rem;border-radius:4px;font-weight:600;z-index:5}
.ba-label-before{left:12px}
.ba-label-after{right:12px}

@media(max-width:768px){
  .hero{padding:3rem 0 2.5rem;min-height:auto}
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero h1{font-size:2rem}
  .hero-buttons{justify-content:center}
  .ba-slider{max-width:100%;margin:0 auto}
}

/* ===== TRUST BAR ===== */
.trust-bar{background:#f8f9fa;padding:1.5rem 0;border-bottom:1px solid #e9ecef}
.trust-grid{display:flex;justify-content:center;flex-wrap:wrap;gap:2rem}
.trust-item{display:flex;align-items:center;gap:.6rem;font-weight:600;color:#1a3a5c;font-size:.95rem}
.trust-item i{font-size:1.4rem;color:#28a745}

/* ===== SECTIONS ===== */
.section{padding:4.5rem 0}
.section-alt{background:#f8f9fa}
.section-heading{text-align:center;margin-bottom:3rem}
.section-heading h2{font-size:2.1rem;margin-bottom:.75rem}
.section-heading p{color:#555;max-width:640px;margin:0 auto;font-size:1.05rem}

/* ===== SERVICES GRID ===== */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.75rem}
.service-card{background:#fff;border-radius:10px;padding:2rem;box-shadow:0 2px 12px rgba(0,0,0,.06);transition:all .3s ease;border:1px solid #e9ecef}
.service-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,.1);border-color:#28a745}
.service-card i{font-size:2.2rem;color:#28a745;margin-bottom:1rem}
.service-card h3{font-size:1.2rem;margin-bottom:.6rem}
.service-card p{color:#555;font-size:.92rem;margin-bottom:1rem}
.service-card .card-link{color:#28a745;font-weight:600;font-size:.9rem;display:inline-flex;align-items:center;gap:.3rem}
.service-card .card-link:hover{gap:.6rem}

/* ===== WHY CHOOSE US ===== */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.75rem}
.why-card{text-align:center;padding:2rem 1.5rem}
.why-card i{font-size:2.5rem;color:#28a745;margin-bottom:1rem}
.why-card h3{margin-bottom:.5rem;font-size:1.15rem}
.why-card p{color:#555;font-size:.9rem}

/* ===== TESTIMONIALS ===== */
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.75rem}
.testimonial-card{background:#fff;border-radius:10px;padding:2rem;box-shadow:0 2px 12px rgba(0,0,0,.06);border:1px solid #e9ecef}
.testimonial-stars{color:#f4c430;margin-bottom:.75rem;font-size:1.1rem}
.testimonial-card blockquote{font-style:italic;color:#444;margin-bottom:1rem;line-height:1.7;font-size:.95rem}
.testimonial-card cite{font-weight:700;color:#1a3a5c;font-style:normal;font-size:.9rem}

/* ===== CTA BANNER ===== */
.cta-banner{background:linear-gradient(135deg,#1a3a5c,#142d47);color:#fff;padding:4rem 0;text-align:center}
.cta-banner h2{font-size:2rem;margin-bottom:.75rem;color:#fff}
.cta-banner p{margin-bottom:2rem;opacity:.9;font-size:1.05rem}
.cta-banner .btn{font-size:1.1rem;padding:1rem 2.5rem}

/* ===== AREAS SERVED ===== */
.areas-list{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem}
.areas-list a{display:inline-flex;align-items:center;gap:.4rem;background:#fff;padding:.6rem 1.2rem;border-radius:6px;border:1px solid #e9ecef;font-weight:500;font-size:.9rem;transition:all .2s}
.areas-list a:hover{border-color:#28a745;background:#f0fff4;color:#28a745}

/* ===== FAQ ===== */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border:1px solid #e9ecef;border-radius:8px;margin-bottom:.75rem;overflow:hidden}
.faq-question{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;cursor:pointer;font-weight:600;font-size:1rem;background:#fff;transition:background .2s;border:none;width:100%;text-align:left;font-family:'DM Sans',sans-serif;color:#1a3a5c}
.faq-question:hover{background:#f8f9fa}
.faq-question i{transition:transform .3s;color:#28a745;font-size:1.2rem;flex-shrink:0;margin-left:1rem}
.faq-item.open .faq-question i{transform:rotate(180deg)}
.faq-answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease}
.faq-item.open .faq-answer{padding:0 1.5rem 1.25rem;max-height:500px}
.faq-answer p{color:#555;line-height:1.7;font-size:.95rem}

/* ===== CONTACT FORM ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-info-item{display:flex;gap:1rem;align-items:flex-start}
.contact-info-item i{font-size:1.4rem;color:#28a745;flex-shrink:0;margin-top:.2rem}
.contact-info-item h3{font-size:1rem;margin-bottom:.2rem}
.contact-info-item p{color:#555;font-size:.9rem}
.contact-form{background:#fff;border-radius:10px;padding:2rem;box-shadow:0 2px 16px rgba(0,0,0,.08);border:1px solid #e9ecef}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:600;margin-bottom:.4rem;font-size:.9rem;color:#1a3a5c}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem 1rem;border:1px solid #d1d5db;border-radius:6px;font-size:.95rem;font-family:'DM Sans',sans-serif;transition:border-color .2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#28a745;box-shadow:0 0 0 3px rgba(40,167,69,.12)}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-status{padding:.75rem;border-radius:6px;margin-top:1rem;display:none;font-weight:600;text-align:center}
.form-status.success{display:block;background:#d4edda;color:#155724}
.form-status.error{display:block;background:#f8d7da;color:#721c24}

@media(max-width:768px){
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

/* ===== FOOTER ===== */
.site-footer{background:#0f2133;color:#aab;padding:3.5rem 0 0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem;margin-bottom:2.5rem}
.footer-col h4{color:#fff;font-size:1rem;margin-bottom:1rem;font-family:'Space Grotesk',sans-serif}
.footer-col p{font-size:.88rem;line-height:1.7}
.footer-col a{color:#aab;font-size:.88rem;display:block;padding:.2rem 0;transition:color .2s}
.footer-col a:hover{color:#28a745}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:1.25rem 0;text-align:center;font-size:.82rem}
.footer-bottom a{color:#28a745}

@media(max-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;background:#1a3a5c;padding:.6rem .75rem;box-shadow:0 -4px 16px rgba(0,0,0,.2)}
.mobile-cta-inner{display:flex;gap:.5rem}
.mobile-cta a{flex:1;display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem;border-radius:6px;font-weight:700;font-size:.95rem;text-align:center}
.mobile-cta .cta-call{background:#28a745;color:#fff}
.mobile-cta .cta-sms{background:#fff;color:#1a3a5c}

@media(max-width:768px){
  .mobile-cta{display:block}
  body{padding-bottom:70px}
}

/* ===== BREADCRUMB ===== */
.breadcrumb{padding:.75rem 0;background:#f8f9fa;border-bottom:1px solid #e9ecef;font-size:.85rem}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:.25rem;list-style:none}
.breadcrumb li::after{content:'/';margin-left:.5rem;color:#999}
.breadcrumb li:last-child::after{display:none}
.breadcrumb a{color:#1a3a5c}
.breadcrumb a:hover{color:#28a745}
.breadcrumb span{color:#666}

/* ===== INNER PAGE HERO ===== */
.page-hero{background:linear-gradient(135deg,#1a3a5c,#142d47);color:#fff;padding:3.5rem 0;text-align:center}
.page-hero h1{font-size:2.2rem;color:#fff;margin-bottom:.5rem}
.page-hero p{opacity:.85;font-size:1.05rem;max-width:600px;margin:0 auto}

/* ===== INNER CONTENT ===== */
.page-content{padding:3.5rem 0}
.page-content h2{font-size:1.6rem;margin:2rem 0 .75rem}
.page-content h3{font-size:1.25rem;margin:1.5rem 0 .5rem}
.page-content p{margin-bottom:1rem;color:#444}
.page-content ul{margin-bottom:1rem;padding-left:1.5rem}
.page-content ul li{margin-bottom:.4rem;color:#444;position:relative;padding-left:.5rem}
.page-content ul li::before{content:'\2713';color:#28a745;position:absolute;left:-.75rem;font-weight:700}
.content-narrow{max-width:800px;margin:0 auto}

/* ===== SERVICE PAGE LAYOUT ===== */
.service-content{display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:start}
.service-sidebar{position:sticky;top:100px}
.sidebar-card{background:#f8f9fa;border-radius:10px;padding:1.5rem;border:1px solid #e9ecef;margin-bottom:1.25rem}
.sidebar-card h3{font-size:1.05rem;margin-bottom:.75rem}
.sidebar-card ul{padding-left:0}
.sidebar-card ul li{padding:.4rem 0;border-bottom:1px solid #e9ecef}
.sidebar-card ul li:last-child{border-bottom:none}
.sidebar-card ul li a{color:#1a3a5c;font-size:.9rem}
.sidebar-card ul li a:hover{color:#28a745}
.sidebar-card ul li::before{display:none}
.sidebar-cta{background:#1a3a5c;color:#fff;border-radius:10px;padding:2rem;text-align:center}
.sidebar-cta h3{color:#fff;margin-bottom:.5rem;font-size:1.1rem}
.sidebar-cta p{color:#aab;font-size:.9rem;margin-bottom:1.25rem}
.sidebar-cta .btn{width:100%}

@media(max-width:768px){
  .service-content{grid-template-columns:1fr}
  .service-sidebar{position:static}
}

/* ===== LOCATION PAGE ===== */
.location-hero{position:relative;background:linear-gradient(135deg,#1a3a5c,#142d47);color:#fff;padding:4rem 0;text-align:center}
.location-hero h1{color:#fff;font-size:2.2rem;margin-bottom:.5rem}
.location-hero p{opacity:.85;font-size:1.05rem;max-width:600px;margin:0 auto}

/* ===== MAP EMBED ===== */
.map-section{padding:0}
.map-section iframe{width:100%;height:400px;border:0;display:block}

/* ===== ABOUT PAGE ===== */
.about-intro ul{list-style:none;padding-left:0;margin:1.5rem 0}
.about-intro ul li{display:flex;align-items:center;gap:.75rem;padding:.6rem 0;font-size:.95rem;color:#444}
.about-intro ul li::before{display:none}
.about-intro ul li i{font-size:1.3rem;color:#28a745;flex-shrink:0}

/* ===== THANK YOU ===== */
.thank-you-content{text-align:center;padding:5rem 0}
.thank-you-content i.check{font-size:4rem;color:#28a745;margin-bottom:1.5rem}
.thank-you-content h1{margin-bottom:1rem}
.thank-you-content p{color:#555;max-width:500px;margin:0 auto 1.5rem}

/* ===== 404 ===== */
.error-content{text-align:center;padding:5rem 0}
.error-content h1{font-size:5rem;color:#28a745;margin-bottom:.5rem}
.error-content h2{margin-bottom:1rem}
.error-content p{color:#555;max-width:500px;margin:0 auto 2rem}

/* ===== LEGAL PAGES ===== */
.legal-content{padding:3.5rem 0}
.legal-content h2{font-size:1.4rem;margin:2rem 0 .75rem}
.legal-content h3{font-size:1.15rem;margin:1.5rem 0 .5rem}
.legal-content p,.legal-content li{color:#444;margin-bottom:.75rem;font-size:.95rem}
.legal-content ul{padding-left:1.5rem;margin-bottom:1rem}
.legal-content ul li{list-style:disc;padding-left:0}
.legal-content ul li::before{display:none}

/* ===== ANIMATIONS ===== */
@media(prefers-reduced-motion:no-preference){
  .fade-up{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
  .fade-up.visible{opacity:1;transform:translateY(0)}
}

/* ── Mobile Tap Targets (M10/M11) ── */
@media (max-width: 768px) {
    .btn, a.btn, button.btn {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    a[href^="tel"] {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
    select,
    textarea {
        min-height: 48px;
        font-size: 16px !important;
        padding: 12px 16px;
    }
}

/* ── Mobile Grid Fix (auto-applied 2026-03-25) ── */
.trust-bar .container,
.trust-bar-inner,
.trust-grid,
.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
}
@media (min-width: 600px) {
  .trust-bar .container, .trust-bar-inner, .trust-grid, .trust-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust-bar .container, .trust-bar-inner, .trust-grid, .trust-items {
    grid-template-columns: repeat(6, auto);
    justify-content: center;
  }
}
