/* ==========================================================================
   5 STAR PLUMBING EXPRESS — Main Stylesheet
   ========================================================================== */

:root{
  --navy-950:#071224;
  --navy-900:#0b2545;
  --navy-800:#0f3460;
  --navy-700:#154277;
  --blue-600:#1565c0;
  --blue-500:#1e88e5;
  --blue-100:#e8f1fc;
  --gold-500:#f5a623;
  --gold-400:#ffbb3d;
  --gold-600:#d98c0f;
  --white:#ffffff;
  --off-white:#f7f9fc;
  --gray-100:#eef1f6;
  --gray-200:#dde3ec;
  --gray-400:#9aa5b6;
  --gray-600:#5c6b81;
  --gray-800:#2b3648;
  --ink:#101828;
  --success:#1c9d5b;
  --danger:#d63f3f;
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --shadow-sm:0 2px 8px rgba(11,37,69,.08);
  --shadow-md:0 10px 30px rgba(11,37,69,.12);
  --shadow-lg:0 24px 60px rgba(11,37,69,.18);
  --container:1220px;
  --ff-head:'Poppins',system-ui,-apple-system,sans-serif;
  --ff-body:'Inter',system-ui,-apple-system,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;font-size:1rem;}
h1,h2,h3,h4{font-family:var(--ff-head);color:var(--navy-900);line-height:1.2;font-weight:700;}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 24px;}
section{position:relative;}
.section-pad{padding:96px 0;}
@media(max-width:768px){.section-pad{padding:64px 0;}}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--ff-head);font-weight:600;font-size:.78rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold-600);
  background:linear-gradient(90deg,rgba(245,166,35,.14),rgba(245,166,35,0));
  padding:7px 16px 7px 12px;border-radius:999px;margin-bottom:16px;
}
.eyebrow::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--gold-500);box-shadow:0 0 0 4px rgba(245,166,35,.2);}
.section-head{max-width:680px;margin-bottom:48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:clamp(1.7rem,3vw,2.5rem);margin-bottom:14px;}
.section-head p{color:var(--gray-600);font-size:1.08rem;}
.text-gold{color:var(--gold-500);}
.text-blue{color:var(--blue-600);}
.bg-navy{background:var(--navy-900);color:var(--white);}
.bg-off{background:var(--off-white);}
.stars{color:var(--gold-500);letter-spacing:2px;font-size:.95rem;}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease;}
.reveal.in{opacity:1;transform:translateY(0);}
.badge-row{display:flex;flex-wrap:wrap;gap:10px;}
.chip{
  display:inline-flex;align-items:center;gap:8px;background:var(--white);
  border:1px solid var(--gray-200);padding:8px 14px;border-radius:999px;
  font-size:.85rem;font-weight:600;color:var(--navy-800);box-shadow:var(--shadow-sm);
}
.chip svg{width:16px;height:16px;color:var(--gold-500);flex:none;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--ff-head);font-weight:600;font-size:.95rem;
  padding:15px 28px;border-radius:999px;transition:all .25s ease;white-space:nowrap;
  border:2px solid transparent;
}
.btn-gold{background:linear-gradient(135deg,var(--gold-400),var(--gold-600));color:var(--navy-950);box-shadow:0 10px 24px rgba(245,166,35,.35);}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 16px 30px rgba(245,166,35,.45);}
.btn-navy{background:var(--navy-900);color:var(--white);}
.btn-navy:hover{background:var(--navy-800);transform:translateY(-3px);}
.btn-outline{border-color:rgba(255,255,255,.5);color:var(--white);}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:var(--white);}
.btn-outline-navy{border-color:var(--navy-900);color:var(--navy-900);}
.btn-outline-navy:hover{background:var(--navy-900);color:var(--white);}
.btn-block{width:100%;}
.btn-sm{padding:10px 20px;font-size:.85rem;}

/* ---------- Top bar ---------- */
.topbar{background:var(--navy-950);color:var(--gray-200);font-size:.83rem;}
.topbar .container{display:flex;align-items:center;justify-content:space-between;padding-top:9px;padding-bottom:9px;}
.topbar-left{display:flex;gap:22px;flex-wrap:wrap;}
.topbar a{display:inline-flex;align-items:center;gap:7px;transition:color .2s;}
.topbar a:hover{color:var(--gold-400);}
.topbar svg{width:14px;height:14px;color:var(--gold-500);}
.topbar-social{display:flex;gap:10px;}
.topbar-social a{width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;}
.topbar-social svg{width:13px;height:13px;color:var(--gray-200);}
.topbar-social a:hover{background:var(--gold-500);}
.topbar-social a:hover svg{color:var(--navy-950);}

/* ---------- Header / Nav ---------- */
header.site-header{
  position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);box-shadow:0 1px 0 var(--gray-200);
  transition:box-shadow .3s;
}
header.site-header.scrolled{box-shadow:var(--shadow-md);}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:24px;}
.logo{display:flex;align-items:center;gap:12px;flex:none;}
.logo .mark{width:52px;height:52px;flex:none;}
.logo .word{font-family:var(--ff-head);line-height:1.05;}
.logo .word b{display:block;font-size:1.28rem;font-weight:800;color:var(--navy-900);letter-spacing:.01em;}
.logo .word span{display:block;font-size:.68rem;font-weight:600;letter-spacing:.16em;color:var(--gold-600);text-transform:uppercase;margin-top:3px;}
nav.main-nav{display:flex;align-items:center;gap:2px;}
nav.main-nav>ul{display:flex;align-items:center;gap:2px;}
nav.main-nav a.nav-link{
  display:flex;align-items:center;gap:5px;padding:12px 16px;font-weight:600;font-size:.94rem;
  color:var(--navy-800);border-radius:999px;transition:all .2s;
}
nav.main-nav a.nav-link:hover,nav.main-nav a.nav-link.active{background:var(--blue-100);color:var(--blue-600);}
.has-dropdown{position:relative;}
.dropdown{
  position:absolute;top:calc(100% + 6px);left:0;background:var(--white);min-width:290px;
  border-radius:var(--radius-md);box-shadow:var(--shadow-lg);border:1px solid var(--gray-100);
  padding:10px;opacity:0;visibility:hidden;transform:translateY(8px);transition:all .22s ease;z-index:50;
}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown a{display:flex;align-items:center;gap:12px;padding:11px 12px;border-radius:var(--radius-sm);font-size:.92rem;font-weight:600;color:var(--navy-800);}
.dropdown a:hover{background:var(--off-white);color:var(--blue-600);}
.dropdown a .ic{width:34px;height:34px;border-radius:9px;background:var(--blue-100);display:flex;align-items:center;justify-content:center;flex:none;}
.dropdown a .ic svg{width:17px;height:17px;color:var(--blue-600);}
.header-cta{display:flex;align-items:center;gap:14px;flex:none;}
.header-phone{display:flex;align-items:center;gap:10px;}
.header-phone .ic{width:44px;height:44px;border-radius:50%;background:var(--gold-500);display:flex;align-items:center;justify-content:center;flex:none;}
.header-phone .ic svg{width:20px;height:20px;color:var(--navy-950);}
.header-phone small{display:block;font-size:.72rem;color:var(--gray-600);font-weight:600;}
.header-phone strong{display:block;font-size:1.05rem;color:var(--navy-900);font-family:var(--ff-head);}
.burger{display:none;flex-direction:column;gap:5px;width:32px;}
.burger span{height:3px;background:var(--navy-900);border-radius:3px;transition:all .25s;}
.mobile-call{display:none;}

/* ---------- Hero ---------- */
.hero{
  position:relative;color:var(--white);
  background:linear-gradient(120deg,rgba(7,18,36,.93),rgba(11,37,69,.86)), var(--navy-900);
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle at 15% 20%,rgba(245,166,35,.18),transparent 40%),radial-gradient(circle at 85% 80%,rgba(30,136,229,.25),transparent 45%);
  pointer-events:none;
}
.hero .pipe-deco{position:absolute;right:-60px;top:-60px;width:420px;opacity:.08;pointer-events:none;}
.hero-inner{position:relative;z-index:2;padding:100px 0 90px;display:grid;grid-template-columns:1.15fr .85fr;gap:50px;align-items:center;}
.hero h1{color:var(--white);font-size:clamp(2.1rem,4.2vw,3.4rem);margin-bottom:20px;}
.hero h1 em{font-style:normal;color:var(--gold-400);}
.hero p.lead{font-size:1.14rem;color:var(--gray-200);max-width:560px;margin-bottom:30px;}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:36px;}
.hero-trust{display:flex;flex-wrap:wrap;gap:26px;}
.hero-trust .item{display:flex;align-items:center;gap:10px;}
.hero-trust .item svg{width:22px;height:22px;color:var(--gold-400);flex:none;}
.hero-trust .item span{font-size:.87rem;color:var(--gray-200);font-weight:600;}
.hero-media{position:relative;}
.hero-card{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);border:6px solid rgba(255,255,255,.08);}
.hero-card img{width:100%;height:460px;object-fit:cover;}
.hero-badge{
  position:absolute;left:-24px;bottom:-24px;background:var(--white);color:var(--navy-900);
  border-radius:var(--radius-md);padding:18px 22px;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:14px;max-width:250px;
}
.hero-badge .num{font-family:var(--ff-head);font-size:1.9rem;font-weight:800;color:var(--gold-600);}
.hero-badge .lbl{font-size:.78rem;color:var(--gray-600);font-weight:600;line-height:1.3;}
@media(max-width:992px){
  .hero-inner{grid-template-columns:1fr;padding:64px 0 60px;}
  .hero-media{order:-1;}
  .hero-card img{height:300px;}
  .hero-badge{left:16px;bottom:-20px;}
}

/* page hero (inner pages) */
.page-hero{
  background:linear-gradient(120deg,rgba(7,18,36,.94),rgba(11,37,69,.88)),var(--navy-900);
  color:var(--white);padding:64px 0 56px;position:relative;overflow:hidden;
}
.page-hero::before{content:"";position:absolute;inset:0;background-image:radial-gradient(circle at 90% 10%,rgba(245,166,35,.18),transparent 40%);}
.page-hero .container{position:relative;z-index:2;}
.breadcrumb{display:flex;gap:8px;align-items:center;font-size:.85rem;color:var(--gray-400);margin-bottom:16px;flex-wrap:wrap;}
.breadcrumb a:hover{color:var(--gold-400);}
.page-hero h1{color:var(--white);font-size:clamp(1.8rem,3.6vw,2.7rem);max-width:760px;}
.page-hero p{color:var(--gray-200);max-width:640px;margin-top:14px;font-size:1.05rem;}

/* ---------- Stat strip ---------- */
.stat-strip{background:var(--navy-900);color:var(--white);padding:34px 0;}
.stat-strip .container{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;}
.stat-strip .num{font-family:var(--ff-head);font-size:2.1rem;font-weight:800;color:var(--gold-400);}
.stat-strip .lbl{font-size:.82rem;color:var(--gray-200);margin-top:4px;font-weight:600;}
@media(max-width:768px){.stat-strip .container{grid-template-columns:repeat(2,1fr);}}

/* ---------- Service cards ---------- */
.grid-5{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
@media(max-width:992px){.grid-5{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.grid-5{grid-template-columns:1fr;}}
.svc-card{
  background:var(--white);border-radius:var(--radius-md);padding:34px 28px;
  box-shadow:var(--shadow-sm);border:1px solid var(--gray-100);transition:all .3s ease;position:relative;
  display:flex;flex-direction:column;
}
.svc-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:transparent;}
.svc-card .ic{
  width:60px;height:60px;border-radius:16px;background:linear-gradient(135deg,var(--blue-500),var(--navy-800));
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;
}
.svc-card .ic svg{width:28px;height:28px;color:var(--white);}
.svc-card h3{font-size:1.2rem;margin-bottom:10px;}
.svc-card p{color:var(--gray-600);font-size:.94rem;margin-bottom:18px;flex:1;}
.svc-card .more{display:inline-flex;align-items:center;gap:7px;font-weight:700;color:var(--blue-600);font-size:.88rem;}
.svc-card .more svg{width:15px;height:15px;transition:transform .2s;}
.svc-card:hover .more svg{transform:translateX(4px);}
.svc-card .tag{position:absolute;top:22px;right:22px;background:var(--gold-500);color:var(--navy-950);font-size:.68rem;font-weight:800;padding:4px 10px;border-radius:999px;letter-spacing:.05em;}

/* ---------- Why us ---------- */
.why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;}
@media(max-width:640px){.why-grid{grid-template-columns:1fr;}}
.why-item{display:flex;gap:16px;padding:22px;border-radius:var(--radius-md);background:var(--white);border:1px solid var(--gray-100);box-shadow:var(--shadow-sm);}
.why-item .ic{width:48px;height:48px;border-radius:12px;background:var(--blue-100);display:flex;align-items:center;justify-content:center;flex:none;}
.why-item .ic svg{width:24px;height:24px;color:var(--blue-600);}
.why-item h4{font-size:1.02rem;margin-bottom:6px;}
.why-item p{font-size:.89rem;color:var(--gray-600);}

/* ---------- Split section (image + text) ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media(max-width:900px){.split{grid-template-columns:1fr;gap:32px;}}
.split.reverse .split-media{order:2;}
.split-media{position:relative;}
.split-media img{border-radius:var(--radius-lg);box-shadow:var(--shadow-md);width:100%;height:420px;object-fit:cover;}
.split-media .float-card{
  position:absolute;bottom:-22px;right:-22px;background:var(--navy-900);color:var(--white);
  padding:18px 22px;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);display:flex;gap:14px;align-items:center;max-width:230px;
}
.split-media .float-card svg{width:30px;height:30px;color:var(--gold-400);flex:none;}
.split-media .float-card span{font-size:.82rem;font-weight:600;line-height:1.35;}
@media(max-width:640px){.split-media .float-card{position:static;margin-top:16px;max-width:100%;}}
.check-list li{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px;font-size:.98rem;color:var(--gray-800);}
.check-list li svg{width:22px;height:22px;color:var(--success);flex:none;margin-top:1px;}

/* ---------- Process steps ---------- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;counter-reset:step;}
@media(max-width:900px){.steps{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.steps{grid-template-columns:1fr;}}
.step{text-align:center;position:relative;padding:0 8px;}
.step .step-num{
  width:56px;height:56px;border-radius:50%;background:var(--navy-900);color:var(--gold-400);
  font-family:var(--ff-head);font-weight:800;font-size:1.3rem;display:flex;align-items:center;justify-content:center;
  margin:0 auto 18px;box-shadow:0 8px 18px rgba(11,37,69,.25);
}
.step h4{font-size:1rem;margin-bottom:8px;}
.step p{font-size:.87rem;color:var(--gray-600);}

/* ---------- Testimonials ---------- */
.testi-wrap{position:relative;max-width:820px;margin:0 auto;}
.testi-slide{
  background:var(--white);border-radius:var(--radius-lg);padding:44px 40px;box-shadow:var(--shadow-md);
  border:1px solid var(--gray-100);text-align:center;display:none;
}
.testi-slide.active{display:block;animation:fadein .5s ease;}
@keyframes fadein{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}
.testi-slide .stars{margin-bottom:16px;font-size:1.1rem;}
.testi-slide p.quote{font-size:1.12rem;color:var(--gray-800);font-style:italic;margin-bottom:22px;}
.testi-slide .who{display:flex;align-items:center;justify-content:center;gap:12px;}
.testi-slide .avatar{width:46px;height:46px;border-radius:50%;background:var(--blue-600);color:var(--white);display:flex;align-items:center;justify-content:center;font-family:var(--ff-head);font-weight:700;}
.testi-slide .who strong{display:block;font-size:.95rem;}
.testi-slide .who small{color:var(--gray-600);font-size:.8rem;}
.testi-dots{display:flex;justify-content:center;gap:8px;margin-top:26px;}
.testi-dots button{width:9px;height:9px;border-radius:50%;background:var(--gray-200);transition:all .2s;}
.testi-dots button.active{background:var(--gold-500);width:26px;border-radius:6px;}

/* ---------- FAQ Accordion ---------- */
.faq-list{max-width:840px;margin:0 auto;}
.faq-item{border:1px solid var(--gray-200);border-radius:var(--radius-md);margin-bottom:14px;overflow:hidden;background:var(--white);}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px 24px;font-family:var(--ff-head);font-weight:700;font-size:1rem;width:100%;text-align:left;color:var(--navy-900);}
.faq-q .plus{width:26px;height:26px;border-radius:50%;background:var(--blue-100);color:var(--blue-600);display:flex;align-items:center;justify-content:center;flex:none;transition:transform .25s;font-size:1.1rem;font-weight:800;}
.faq-item.open .faq-q .plus{transform:rotate(45deg);background:var(--gold-500);color:var(--navy-950);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq-a-inner{padding:0 24px 22px;color:var(--gray-600);font-size:.95rem;line-height:1.7;}
.faq-item.open .faq-a{max-height:400px;}

/* ---------- Gallery ---------- */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media(max-width:900px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.gallery-grid{grid-template-columns:1fr;}}
.gal-item{position:relative;border-radius:var(--radius-md);overflow:hidden;cursor:pointer;box-shadow:var(--shadow-sm);aspect-ratio:4/3;}
.gal-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.gal-item:hover img{transform:scale(1.08);}
.gal-item .overlay{
  position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,18,36,.85),rgba(7,18,36,0) 55%);
  display:flex;align-items:flex-end;padding:18px;opacity:0;transition:opacity .3s;
}
.gal-item:hover .overlay{opacity:1;}
.gal-item .overlay span{color:var(--white);font-weight:700;font-size:.92rem;font-family:var(--ff-head);}
.lightbox{position:fixed;inset:0;background:rgba(4,10,20,.94);z-index:3000;display:none;align-items:center;justify-content:center;padding:40px;}
.lightbox.open{display:flex;}
.lightbox img{max-width:90vw;max-height:82vh;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);}
.lightbox .lb-caption{position:absolute;bottom:24px;left:0;right:0;text-align:center;color:var(--gray-200);font-size:.9rem;}
.lightbox .lb-close,.lightbox .lb-nav{position:absolute;background:rgba(255,255,255,.12);color:var(--white);width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.4rem;transition:background .2s;}
.lightbox .lb-close{top:26px;right:26px;}
.lightbox .lb-close:hover,.lightbox .lb-nav:hover{background:var(--gold-500);color:var(--navy-950);}
.lightbox .lb-prev{left:26px;top:50%;transform:translateY(-50%);}
.lightbox .lb-next{right:26px;top:50%;transform:translateY(-50%);}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg,var(--navy-950),var(--navy-800));color:var(--white);
  border-radius:var(--radius-lg);padding:56px 50px;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
  position:relative;overflow:hidden;
}
.cta-band::before{content:"";position:absolute;inset:0;background-image:radial-gradient(circle at 90% 20%,rgba(245,166,35,.22),transparent 45%);}
.cta-band>*{position:relative;z-index:2;}
.cta-band h3{color:var(--white);font-size:1.7rem;margin-bottom:8px;}
.cta-band p{color:var(--gray-200);}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap;}

/* ---------- Service areas ---------- */
.area-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
@media(max-width:768px){.area-grid{grid-template-columns:repeat(2,1fr);}}
.area-chip{display:flex;align-items:center;gap:10px;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-sm);padding:14px 16px;font-weight:600;font-size:.9rem;}
.area-chip svg{width:18px;height:18px;color:var(--gold-500);flex:none;}

/* ---------- Forms ---------- */
.form-card{background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);padding:38px;border:1px solid var(--gray-100);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px;}
@media(max-width:560px){.form-row{grid-template-columns:1fr;}}
.field{display:flex;flex-direction:column;gap:7px;margin-bottom:18px;}
.field label{font-size:.85rem;font-weight:700;color:var(--navy-800);}
.field input,.field select,.field textarea{
  padding:13px 15px;border:1.5px solid var(--gray-200);border-radius:var(--radius-sm);font-size:.95rem;
  transition:border-color .2s,box-shadow .2s;background:var(--off-white);
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--blue-500);box-shadow:0 0 0 4px rgba(30,136,229,.12);background:var(--white);}
.field.error input,.field.error select,.field.error textarea{border-color:var(--danger);}
.field .err-msg{font-size:.78rem;color:var(--danger);display:none;font-weight:600;}
.field.error .err-msg{display:block;}
.form-msg{display:none;padding:14px 16px;border-radius:var(--radius-sm);font-size:.9rem;font-weight:600;margin-bottom:18px;align-items:center;gap:10px;}
.form-msg.show{display:flex;}
.form-msg.success{background:#e7f7ee;color:var(--success);}
.form-msg.error{background:#fbeaea;color:var(--danger);}
.hp-field{position:absolute;left:-9999px;opacity:0;}

/* ---------- Contact info blocks ---------- */
.contact-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media(max-width:900px){.contact-info-grid{grid-template-columns:1fr;}}
.info-block{background:var(--white);border:1px solid var(--gray-100);box-shadow:var(--shadow-sm);border-radius:var(--radius-md);padding:26px;text-align:center;}
.info-block .ic{width:52px;height:52px;border-radius:14px;background:var(--blue-100);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.info-block .ic svg{width:24px;height:24px;color:var(--blue-600);}
.info-block h4{font-size:1rem;margin-bottom:8px;}
.info-block p,.info-block a{font-size:.9rem;color:var(--gray-600);}
.map-frame{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);border:1px solid var(--gray-100);}
.map-frame iframe{width:100%;height:380px;border:0;display:block;}

/* ---------- Footer ---------- */
footer.site-footer{background:var(--navy-950);color:var(--gray-200);padding-top:72px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,.08);}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-logo{display:flex;align-items:center;gap:12px;margin-bottom:18px;}
.footer-logo .mark{width:46px;height:46px;}
.footer-logo b{color:var(--white);font-family:var(--ff-head);font-size:1.15rem;}
.footer-logo span{display:block;font-size:.65rem;color:var(--gold-500);letter-spacing:.14em;font-weight:700;}
.site-footer p{font-size:.87rem;color:var(--gray-400);margin-bottom:18px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;transition:background .2s;}
.footer-social a:hover{background:var(--gold-500);}
.footer-social svg{width:16px;height:16px;color:var(--gray-200);}
.footer-social a:hover svg{color:var(--navy-950);}
.site-footer h5{color:var(--white);font-family:var(--ff-head);font-size:.95rem;margin-bottom:20px;letter-spacing:.03em;}
.footer-links li{margin-bottom:12px;}
.footer-links a{font-size:.87rem;color:var(--gray-400);transition:color .2s;}
.footer-links a:hover{color:var(--gold-400);}
.footer-contact li{display:flex;gap:12px;margin-bottom:16px;font-size:.87rem;color:var(--gray-400);}
.footer-contact svg{width:18px;height:18px;color:var(--gold-500);flex:none;margin-top:2px;}
.footer-hours{display:flex;justify-content:space-between;font-size:.85rem;color:var(--gray-400);margin-bottom:8px;}
.footer-hours strong{color:var(--gray-200);font-weight:600;}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:22px 0;font-size:.8rem;color:var(--gray-400);flex-wrap:wrap;gap:10px;}
.footer-bottom a:hover{color:var(--gold-400);}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:900;
  background:var(--navy-950);padding:12px 16px;box-shadow:0 -6px 20px rgba(0,0,0,.25);
  align-items:center;gap:10px;
}
.sticky-call a{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;font-weight:700;font-size:.9rem;padding:13px;border-radius:999px;}
.sticky-call .call{background:var(--gold-500);color:var(--navy-950);}
.sticky-call .quote{background:rgba(255,255,255,.1);color:var(--white);}

/* ---------- Back to top ---------- */
.to-top{
  position:fixed;right:22px;bottom:22px;width:48px;height:48px;border-radius:50%;
  background:var(--navy-900);color:var(--gold-400);display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);opacity:0;visibility:hidden;transform:translateY(10px);transition:all .3s;z-index:800;
}
.to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.to-top:hover{background:var(--gold-500);color:var(--navy-950);}
.to-top svg{width:20px;height:20px;}

/* ---------- Related / cross-links ---------- */
.related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:900px){.related-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.related-grid{grid-template-columns:1fr;}}
.related-card{display:block;background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-md);padding:22px;box-shadow:var(--shadow-sm);transition:all .25s;}
.related-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.related-card .ic{width:42px;height:42px;border-radius:11px;background:var(--blue-100);display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.related-card .ic svg{width:20px;height:20px;color:var(--blue-600);}
.related-card h5{font-size:.95rem;margin-bottom:6px;}
.related-card span{font-size:.8rem;color:var(--blue-600);font-weight:700;}

/* ---------- Misc pages ---------- */
.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media(max-width:768px){.value-grid{grid-template-columns:1fr;}}
.value-card{text-align:center;padding:30px 20px;}
.value-card .ic{width:66px;height:66px;border-radius:50%;background:linear-gradient(135deg,var(--blue-500),var(--navy-800));display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.value-card .ic svg{width:30px;height:30px;color:var(--white);}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
@media(max-width:900px){.team-grid{grid-template-columns:repeat(2,1fr);}}
.team-card{text-align:center;}
.team-card .photo{width:100%;aspect-ratio:1/1;border-radius:var(--radius-md);background:linear-gradient(135deg,var(--blue-100),var(--gray-100));display:flex;align-items:center;justify-content:center;margin-bottom:14px;overflow:hidden;}
.team-card .photo svg{width:56px;height:56px;color:var(--blue-600);opacity:.55;}
.team-card h4{font-size:1rem;}
.team-card small{color:var(--gray-600);font-size:.82rem;}

.error-page{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:80px 24px;}
.error-page .code{font-family:var(--ff-head);font-size:6rem;font-weight:800;color:var(--navy-900);line-height:1;}
.error-page .code span{color:var(--gold-500);}

.pricing-note{display:flex;gap:16px;background:var(--blue-100);border-radius:var(--radius-md);padding:22px 24px;align-items:flex-start;}
.pricing-note svg{width:26px;height:26px;color:var(--blue-600);flex:none;}
.pricing-note p{font-size:.92rem;color:var(--navy-800);}

/* ---------- Animations ---------- */
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
.floaty{animation:float 4s ease-in-out infinite;}

/* ---------- Mobile nav ---------- */
@media(max-width:992px){
  .header-phone{display:none;}
  .header-cta>a.btn{display:none;}
  .nav-wrap{flex-wrap:nowrap;}
  .logo{min-width:0;}
  .logo .word{min-width:0;overflow:hidden;}
  .logo .word b{font-size:1.08rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .logo .word span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .burger{display:flex;flex:none;}
  nav.main-nav{
    position:fixed;top:0;right:-100%;width:82%;max-width:340px;height:100vh;background:var(--white);
    flex-direction:column;align-items:stretch;padding:90px 26px 26px;box-shadow:var(--shadow-lg);
    transition:right .35s ease;overflow-y:auto;z-index:1100;
  }
  nav.main-nav.open{right:0;}
  nav.main-nav>ul{flex-direction:column;align-items:stretch;gap:4px;}
  nav.main-nav a.nav-link{padding:14px 12px;border-bottom:1px solid var(--gray-100);border-radius:0;}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;display:none;padding:0 0 0 14px;}
  .has-dropdown.open .dropdown{display:block;}
  .mobile-call{display:flex;margin-top:20px;}
  .nav-backdrop{position:fixed;inset:0;background:rgba(4,10,20,.5);z-index:1050;opacity:0;visibility:hidden;transition:all .3s;}
  .nav-backdrop.show{opacity:1;visibility:visible;}
  .sticky-call{display:flex;}
  body{padding-bottom:74px;}
}
@media(max-width:992px){.topbar{display:none;}}
@media(max-width:400px){
  .logo .mark{width:42px;height:42px;}
  .logo .word span{display:none;}
  .logo .word b{font-size:.98rem;}
}
