/* =========================================================
   5Star Plumbing Community — Master Stylesheet
   Tampa, FL Plumbing Company
   ========================================================= */

:root{
  --navy:#0b3556;
  --navy-dark:#07263f;
  --blue:#1f7fc1;
  --blue-light:#3aa0e0;
  --gold:#f5a623;
  --gold-dark:#d98c0f;
  --bg:#f5f8fb;
  --white:#ffffff;
  --text:#223142;
  --text-light:#5a6b7c;
  --border:#e2e8ef;
  --success:#2fb673;
  --danger:#e0483e;
  --radius:14px;
  --radius-sm:8px;
  --shadow-sm:0 2px 8px rgba(11,53,86,.08);
  --shadow-md:0 8px 24px rgba(11,53,86,.12);
  --shadow-lg:0 20px 50px rgba(11,53,86,.18);
  --container:1220px;
  --ff-head:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --ff-body:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
/* Safety default: any inline icon SVG not given an explicit size elsewhere
   falls back to a sane, text-relative size instead of the browser's
   300x150 replaced-element default. More specific rules below still win. */
svg{width:1em;height:1em;flex-shrink:0;vertical-align:-0.14em;}
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5{
  font-family:var(--ff-head);
  color:var(--navy);
  line-height:1.2;
  margin:0 0 .6em;
  font-weight:700;
}
p{margin:0 0 1em;color:var(--text-light);}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul{margin:0;padding:0;}
li{list-style:none;}
button{font-family:inherit;cursor:pointer;}
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
section{padding:88px 0;}
.section-tight{padding:56px 0;}
@media(max-width:768px){
  section{padding:56px 0;}
}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--ff-head);
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
  background:rgba(31,127,193,.08);
  padding:8px 16px;
  border-radius:99px;
  margin-bottom:18px;
}
.eyebrow svg{width:14px;height:14px;fill:var(--gold);}
.section-head{
  max-width:680px;
  margin:0 auto 52px;
  text-align:center;
}
.section-head h2{font-size:clamp(28px,4vw,40px);}
.section-head p{font-size:17px;}
.text-left{text-align:left;margin-left:0;}
.grad-text{
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 30px;
  border-radius:99px;
  font-family:var(--ff-head);
  font-weight:600;
  font-size:15px;
  border:2px solid transparent;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn svg{width:18px;height:18px;flex-shrink:0;}
.btn-primary{
  background:linear-gradient(90deg,var(--gold) 0%,var(--gold-dark) 100%);
  color:var(--navy-dark);
  box-shadow:0 10px 24px rgba(245,166,35,.35);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 16px 30px rgba(245,166,35,.45);}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.5);
  color:var(--white);
}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:var(--white);transform:translateY(-3px);}
.btn-navy{
  background:var(--navy);
  color:var(--white);
  box-shadow:var(--shadow-sm);
}
.btn-navy:hover{background:var(--navy-dark);transform:translateY(-3px);box-shadow:var(--shadow-md);}
.btn-block{width:100%;}
.btn-sm{padding:11px 20px;font-size:13.5px;}

/* ---------- Top bar ---------- */
.topbar{
  background:var(--navy-dark);
  color:#cfe0ef;
  font-size:13.5px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:9px;
  padding-bottom:9px;
  gap:20px;
}
.topbar a{color:#cfe0ef;}
.topbar-left{display:flex;gap:22px;flex-wrap:wrap;align-items:center;}
.topbar-left span{display:inline-flex;align-items:center;gap:6px;}
.topbar-left svg{width:14px;height:14px;fill:var(--gold);flex-shrink:0;}
.topbar-badge{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--gold);font-weight:700;letter-spacing:.03em;
}
.topbar-badge svg{width:13px;height:13px;fill:var(--gold);flex-shrink:0;}
.topbar-right{display:flex;align-items:center;gap:16px;}
.topbar-right a:hover{color:var(--gold);}
.social-row{display:flex;gap:10px;}
.social-row a{
  width:26px;height:26px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  transition:background .2s ease;
}
.social-row a:hover{background:var(--gold);color:var(--navy-dark);}
.social-row svg{width:13px;height:13px;fill:currentColor;}
@media(max-width:860px){
  .topbar-left span:nth-child(3){display:none;}
}
@media(max-width:640px){.topbar{display:none;}}

/* ---------- Header ---------- */
header.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 var(--border);
  transition:box-shadow .3s ease, padding .3s ease;
}
header.site-header.scrolled{box-shadow:var(--shadow-md);}
header.site-header .container{max-width:1400px;}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.logo{display:flex;align-items:center;gap:12px;min-width:0;flex-shrink:1;}
@media(min-width:1341px){.logo{flex-shrink:0;}}
.logo svg{width:48px;height:48px;flex-shrink:0;}
.logo-text{font-family:var(--ff-head);line-height:1.15;}
.logo-text .l1{
  display:block;white-space:nowrap;
  font-size:18px;font-weight:800;color:var(--navy);letter-spacing:.01em;
}
.logo-text .l1 span{color:var(--gold-dark);}
.logo-text .l2{
  display:block;white-space:nowrap;
  font-size:10.5px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--text-light);
}
nav.main-nav{display:flex;align-items:center;gap:0;flex-shrink:1;min-width:0;}
nav.main-nav a{
  padding:10px 12px;
  font-family:var(--ff-head);
  font-weight:600;
  font-size:14px;
  color:var(--navy);
  border-radius:99px;
  position:relative;
  white-space:nowrap;
  flex-shrink:0;
  transition:background .2s ease,color .2s ease;
}
nav.main-nav a:hover{background:rgba(31,127,193,.08);color:var(--blue);}
nav.main-nav a.active{color:var(--blue);background:rgba(31,127,193,.1);}
.dropdown{position:relative;flex-shrink:0;}
.dropdown-panel{
  position:absolute;top:calc(100% + 10px);left:0;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  width:300px;
  padding:10px;
  opacity:0;visibility:hidden;
  transform:translateY(8px);
  transition:all .22s ease;
  border:1px solid var(--border);
}
.dropdown:hover .dropdown-panel,.dropdown:focus-within .dropdown-panel{
  opacity:1;visibility:visible;transform:translateY(0);
}
.dropdown-panel a{
  display:flex;align-items:center;gap:10px;
  padding:11px 12px;border-radius:var(--radius-sm);
  font-size:14px;font-weight:600;color:var(--navy);
}
.dropdown-panel a svg{width:16px;height:16px;fill:var(--blue);flex-shrink:0;}
.dropdown-panel a:hover{background:var(--bg);color:var(--blue);}
.dropdown-panel a.view-all{color:var(--blue);border-top:1px solid var(--border);margin-top:6px;padding-top:12px;}
.header-cta{display:flex;align-items:center;gap:12px;flex-shrink:0;}
.header-phone{
  display:flex;align-items:center;gap:10px;
  font-family:var(--ff-head);
}
.header-phone .ico{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.header-phone .ico svg{width:18px;height:18px;fill:var(--navy-dark);}
.header-phone .txt{line-height:1.2;}
.header-phone .txt small{display:block;font-size:11px;color:var(--text-light);font-weight:600;text-transform:uppercase;letter-spacing:.06em;}
.header-phone .txt strong{font-size:17px;color:var(--navy);}
.menu-toggle{
  display:none;
  width:44px;height:44px;border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--white);
  align-items:center;justify-content:center;
  flex-shrink:0;
}
.menu-toggle svg{width:20px;height:20px;fill:var(--navy);}

@media(max-width:1340px){
  nav.main-nav{
    position:fixed;top:0;right:-100%;
    width:min(340px,86vw);height:100vh;
    background:var(--white);
    flex-direction:column;
    align-items:stretch;
    padding:90px 22px 30px;
    box-shadow:var(--shadow-lg);
    transition:right .35s ease;
    overflow-y:auto;
    gap:4px;
  }
  nav.main-nav.open{right:0;}
  nav.main-nav a{padding:14px 16px;border-radius:var(--radius-sm);}
  .dropdown-panel{
    position:static;opacity:1;visibility:visible;transform:none;
    box-shadow:none;border:none;width:auto;
    max-height:0;overflow:hidden;padding:0 6px;transition:max-height .3s ease;
  }
  .dropdown.open .dropdown-panel{max-height:400px;padding:6px;}
  .dropdown-arrow{transition:transform .25s ease;}
  .dropdown.open .dropdown-arrow{transform:rotate(180deg);}
  .menu-toggle{display:flex;}
  .header-phone .txt small{display:none;}
}
@media(max-width:560px){
  .header-phone{display:none;}
  .logo svg{width:38px;height:38px;}
  .logo-text .l1{font-size:14.5px;white-space:normal;line-height:1.2;max-width:128px;}
  .logo-text .l2{display:none;}
  .header-cta{gap:8px;}
  .btn.header-cta-quote{padding:10px 14px;font-size:12.5px;}
}
@media(max-width:400px){
  .logo-text .l1{font-size:13.5px;max-width:104px;}
  .header-cta-quote span.label{display:none;}
}
.nav-overlay{
  position:fixed;inset:0;background:rgba(7,38,63,.55);
  opacity:0;visibility:hidden;transition:all .3s ease;z-index:999;
}
.nav-overlay.show{opacity:1;visibility:visible;}

/* ---------- Emergency Strip ---------- */
.emergency-strip{
  background:linear-gradient(90deg,var(--danger),#c53b32);
  color:#fff;text-align:center;
  padding:10px 16px;font-size:14px;font-weight:600;
}
.emergency-strip svg{width:15px;height:15px;fill:#fff;}
.emergency-strip a{text-decoration:underline;}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:radial-gradient(1200px 600px at 85% -10%,rgba(31,127,193,.55),transparent),
             linear-gradient(120deg,var(--navy-dark) 0%,var(--navy) 55%,#0f4c78 100%);
  color:#fff;overflow:hidden;
  padding:110px 0 130px;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h6v-4h4V4H6zm54 26v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity:.7;
}
.hero .container{position:relative;z-index:2;}
.hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);
  padding:8px 16px;border-radius:99px;font-size:13px;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:22px;
}
.hero-badge svg{width:14px;height:14px;fill:var(--gold);}
.hero h1{
  color:#fff;font-size:clamp(34px,5vw,54px);margin-bottom:20px;
}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(90deg,var(--gold),#ffd88a);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero p.lead{color:#cfe0ef;font-size:18px;max-width:520px;margin-bottom:32px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:40px;}
.hero-points{display:flex;flex-wrap:wrap;gap:22px;}
.hero-points li{
  display:flex;align-items:center;gap:9px;font-size:14px;font-weight:600;color:#e6f0f8;
}
.hero-points svg{width:20px;height:20px;fill:var(--gold);flex-shrink:0;}
.hero-media{position:relative;}
.hero-media .frame{
  position:relative;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-lg);
  border:6px solid rgba(255,255,255,.12);
}
.hero-media img{width:100%;height:520px;object-fit:cover;}
.hero-media .floater{
  position:absolute;background:#fff;color:var(--navy);border-radius:var(--radius);
  box-shadow:var(--shadow-lg);padding:16px 18px;display:flex;align-items:center;gap:12px;
  animation:float 4.5s ease-in-out infinite;
}
.hero-media .floater.f1{top:-24px;left:-30px;}
.hero-media .floater.f2{bottom:-22px;right:-24px;animation-delay:1.4s;}
.hero-media .floater .ic{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
}
.hero-media .floater .ic svg{width:20px;height:20px;fill:var(--navy-dark);}
.hero-media .floater strong{display:block;font-size:15px;font-family:var(--ff-head);}
.hero-media .floater span{font-size:12.5px;color:var(--text-light);}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-media{order:-1;}
  .hero-media img{height:340px;}
  .hero-media .floater{position:static;margin-top:14px;animation:none;}
  .hero-media .frame{margin-bottom:0;}
}

/* ---------- Trust strip ---------- */
.trust-strip{background:var(--white);border-bottom:1px solid var(--border);}
.trust-strip .container{
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:24px;
  padding:26px 24px;
}
.trust-item{display:flex;align-items:center;gap:12px;font-family:var(--ff-head);font-weight:700;color:var(--navy);font-size:14.5px;}
.trust-item svg{width:26px;height:26px;fill:var(--blue);flex-shrink:0;}

/* ---------- Stats ---------- */
.stats{
  background:linear-gradient(120deg,var(--navy-dark),var(--navy));
  color:#fff;
}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center;
}
.stat-num{
  font-family:var(--ff-head);font-size:clamp(30px,4vw,44px);font-weight:800;color:var(--gold);
  display:flex;align-items:center;justify-content:center;gap:4px;
}
.stat-label{font-size:14px;color:#c9dcec;font-weight:600;margin-top:6px;}
@media(max-width:768px){.stats-grid{grid-template-columns:repeat(2,1fr);}}

/* ---------- Services grid ---------- */
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
}
.service-card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-sm);border:1px solid var(--border);
  display:flex;flex-direction:column;
  transition:transform .3s ease,box-shadow .3s ease;
}
.service-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);}
.service-card .img-wrap{position:relative;height:210px;overflow:hidden;}
.service-card .img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.service-card:hover .img-wrap img{transform:scale(1.08);}
.service-card .num{
  position:absolute;top:14px;left:14px;
  background:rgba(11,53,86,.85);color:var(--gold);
  font-family:var(--ff-head);font-weight:800;font-size:13px;
  padding:6px 12px;border-radius:99px;
}
.service-card .body{padding:26px 24px 28px;display:flex;flex-direction:column;flex:1;}
.service-card .ic{
  width:52px;height:52px;border-radius:14px;
  background:rgba(31,127,193,.1);display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.service-card .ic svg{width:26px;height:26px;fill:var(--blue);}
.service-card h3{font-size:19.5px;margin-bottom:10px;}
.service-card p{font-size:14.5px;flex:1;}
.service-card .more{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--ff-head);font-weight:700;font-size:14px;color:var(--blue);margin-top:10px;
}
.service-card .more svg{width:16px;height:16px;fill:var(--blue);transition:transform .2s ease;}
.service-card:hover .more svg{transform:translateX(4px);}
@media(max-width:980px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.services-grid{grid-template-columns:1fr;}}

/* ---------- Why us / split ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.split-media{position:relative;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-md);}
.split-media img{width:100%;height:100%;object-fit:cover;min-height:420px;}
.check-list{margin-top:26px;}
.check-list li{
  display:flex;gap:14px;padding:14px 0;border-bottom:1px dashed var(--border);
}
.check-list li:last-child{border-bottom:none;}
.check-list .tick{
  width:32px;height:32px;border-radius:50%;background:rgba(47,182,115,.12);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.check-list .tick svg{width:16px;height:16px;fill:var(--success);}
.check-list strong{display:block;color:var(--navy);font-family:var(--ff-head);font-size:15.5px;margin-bottom:2px;}
.check-list span{font-size:14px;color:var(--text-light);}
@media(max-width:940px){.split{grid-template-columns:1fr;}.split-media img{min-height:280px;}}

/* ---------- Process ---------- */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;counter-reset:step;}
.process-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  padding:30px 24px;position:relative;box-shadow:var(--shadow-sm);
}
.process-card .step-num{
  font-family:var(--ff-head);font-weight:800;font-size:15px;color:var(--white);
  background:var(--navy);width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.process-card h3{font-size:17.5px;}
.process-card p{font-size:14px;margin-bottom:0;}
@media(max-width:980px){.process-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.process-grid{grid-template-columns:1fr;}}

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
}
.gallery-item{
  position:relative;border-radius:var(--radius);overflow:hidden;cursor:pointer;
  box-shadow:var(--shadow-sm);
}
.gallery-item img{width:100%;height:230px;object-fit:cover;transition:transform .45s ease;}
.gallery-item:hover img{transform:scale(1.1);}
.gallery-item .caption{
  position:absolute;inset:auto 0 0 0;padding:16px 14px;
  background:linear-gradient(0deg,rgba(7,38,63,.88),transparent);
  color:#fff;font-family:var(--ff-head);font-weight:600;font-size:13.5px;
  opacity:0;transform:translateY(8px);transition:all .3s ease;
}
.gallery-item:hover .caption{opacity:1;transform:translateY(0);}
@media(max-width:980px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.gallery-grid{grid-template-columns:1fr;}.gallery-item img{height:210px;}}

.lightbox{
  position:fixed;inset:0;background:rgba(4,18,30,.92);
  display:flex;align-items:center;justify-content:center;
  z-index:3000;opacity:0;visibility:hidden;transition:all .25s ease;padding:30px;
}
.lightbox.show{opacity:1;visibility:visible;}
.lightbox img{max-width:min(880px,100%);max-height:82vh;border-radius:12px;box-shadow:var(--shadow-lg);}
.lightbox-close{
  position:absolute;top:26px;right:30px;width:46px;height:46px;border-radius:50%;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.3);
  display:flex;align-items:center;justify-content:center;
}
.lightbox-close svg{width:20px;height:20px;fill:#fff;}

/* ---------- Areas ---------- */
.areas-wrap{
  display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center;
}
.area-tags{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;}
.area-tags span{
  background:var(--white);border:1px solid var(--border);
  padding:10px 18px;border-radius:99px;font-weight:600;font-size:14px;color:var(--navy);
  display:inline-flex;align-items:center;gap:8px;box-shadow:var(--shadow-sm);
}
.area-tags svg{width:14px;height:14px;fill:var(--blue);}
.areas-map{
  background:var(--white);border-radius:var(--radius);border:1px solid var(--border);
  box-shadow:var(--shadow-sm);padding:10px;
}
.areas-map iframe{width:100%;height:360px;border:0;border-radius:10px;display:block;}
@media(max-width:940px){.areas-wrap{grid-template-columns:1fr;}}

/* ---------- FAQ ---------- */
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  margin-bottom:14px;overflow:hidden;
}
.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:16px;color:var(--navy);
}
.faq-q .plus{
  width:30px;height:30px;border-radius:50%;background:rgba(31,127,193,.1);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;position:relative;transition:transform .3s ease;
}
.faq-q .plus::before,.faq-q .plus::after{
  content:'';position:absolute;background:var(--blue);border-radius:2px;
}
.faq-q .plus::before{width:12px;height:2px;}
.faq-q .plus::after{width:2px;height:12px;}
.faq-item.open .faq-q .plus{transform:rotate(135deg);background:rgba(245,166,35,.15);}
.faq-item.open .faq-q .plus::before,.faq-item.open .faq-q .plus::after{background:var(--gold-dark);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-a p{padding:0 24px 22px;font-size:15px;margin:0;}
.faq-item.open .faq-a{max-height:400px;}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--navy-dark),#0f4c78 60%,var(--blue));
  color:#fff;border-radius:24px;position:relative;overflow:hidden;
  padding:56px 50px;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
}
.cta-banner::after{
  content:'';position:absolute;right:-60px;top:-60px;width:260px;height:260px;
  background:radial-gradient(circle,rgba(245,166,35,.35),transparent 70%);
}
.cta-banner h2{color:#fff;margin-bottom:8px;font-size:clamp(24px,3vw,32px);}
.cta-banner p{color:#cfe0ef;margin-bottom:0;}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap;position:relative;z-index:2;}

/* ---------- Contact / Form ---------- */
.contact-wrap{display:grid;grid-template-columns:.95fr 1.05fr;gap:50px;align-items:start;}
.contact-info-card{
  background:var(--navy-dark);color:#fff;border-radius:var(--radius);padding:40px 34px;
  box-shadow:var(--shadow-lg);
}
.contact-info-card h3{color:#fff;font-size:22px;}
.contact-info-card p{color:#c9dcec;}
.contact-row{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid rgba(255,255,255,.12);}
.contact-row:last-of-type{border-bottom:none;}
.contact-row .ic{
  width:44px;height:44px;border-radius:12px;background:rgba(245,166,35,.16);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.contact-row .ic svg{width:20px;height:20px;fill:var(--gold);}
.contact-row strong{display:block;font-family:var(--ff-head);font-size:15px;color:#fff;}
.contact-row span,.contact-row a{font-size:14px;color:#c9dcec;}
.hours-table{width:100%;margin-top:8px;border-collapse:collapse;}
.hours-table td{padding:6px 0;font-size:14px;color:#c9dcec;}
.hours-table td:last-child{text-align:right;font-weight:700;color:#fff;}
.form-card{
  background:var(--white);border-radius:var(--radius);padding:40px 36px;
  box-shadow:var(--shadow-md);border:1px solid var(--border);
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.form-group{margin-bottom:18px;}
.form-group.full{grid-column:1/-1;}
.form-group label{
  display:block;font-family:var(--ff-head);font-weight:600;font-size:13.5px;color:var(--navy);margin-bottom:7px;
}
.form-group input,.form-group select,.form-group textarea{
  width:100%;padding:13px 16px;border-radius:var(--radius-sm);border:1.5px solid var(--border);
  font-family:var(--ff-body);font-size:14.5px;color:var(--text);background:var(--bg);
  transition:border-color .2s ease,background .2s ease;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  outline:none;border-color:var(--blue);background:#fff;
}
.form-group textarea{resize:vertical;min-height:120px;}
.form-msg{
  display:none;padding:14px 18px;border-radius:var(--radius-sm);font-size:14px;font-weight:600;margin-bottom:18px;
}
.form-msg.show{display:flex;align-items:center;gap:10px;}
.form-msg.success{background:rgba(47,182,115,.12);color:var(--success);}
.form-msg.error{background:rgba(224,72,62,.12);color:var(--danger);}
@media(max-width:940px){.contact-wrap{grid-template-columns:1fr;}}
@media(max-width:560px){.form-grid{grid-template-columns:1fr;}.form-card{padding:28px 22px;}}

/* ---------- Breadcrumb / page hero ---------- */
.page-hero{
  background:linear-gradient(120deg,var(--navy-dark),var(--navy) 60%,#0f4c78);
  color:#fff;padding:70px 0 60px;position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h6v-4h4V4H6zm54 26v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity:.6;
}
.page-hero .container{position:relative;z-index:2;}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:13.5px;color:#bcd4e8;margin-bottom:16px;flex-wrap:wrap;}
.breadcrumb a{color:#bcd4e8;font-weight:600;}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb svg{width:11px;height:11px;fill:#7fa4c2;}
.page-hero h1{color:#fff;font-size:clamp(30px,4.5vw,46px);margin-bottom:14px;max-width:760px;}
.page-hero p{color:#cfe0ef;font-size:16.5px;max-width:640px;margin-bottom:0;}

/* ---------- Service detail ---------- */
.service-detail{display:grid;grid-template-columns:1fr 340px;gap:50px;align-items:start;}
.sd-media{border-radius:20px;overflow:hidden;box-shadow:var(--shadow-md);margin-bottom:34px;}
.sd-media img{width:100%;height:420px;object-fit:cover;}
.sd-body h2{font-size:26px;margin-top:34px;}
.sd-body p{font-size:15.5px;}
.benefit-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:20px;}
.benefit-item{
  display:flex;gap:12px;background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-sm);padding:16px;box-shadow:var(--shadow-sm);
}
.benefit-item svg{width:20px;height:20px;fill:var(--success);flex-shrink:0;margin-top:2px;}
.benefit-item strong{display:block;color:var(--navy);font-family:var(--ff-head);font-size:14.5px;}
.benefit-item span{font-size:13.5px;color:var(--text-light);}
.sidebar-card{
  background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  box-shadow:var(--shadow-sm);padding:26px 24px;margin-bottom:22px;
}
.sidebar-card h3{font-size:17px;margin-bottom:16px;}
.sidebar-list a{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:12px 0;border-bottom:1px solid var(--border);font-weight:600;font-size:14px;color:var(--navy);
}
.sidebar-list a:last-child{border-bottom:none;}
.sidebar-list a:hover{color:var(--blue);}
.sidebar-list a svg{width:14px;height:14px;fill:var(--blue);flex-shrink:0;}
.sidebar-card.cta-card{
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));color:#fff;text-align:center;
}
.sidebar-card.cta-card h3{color:#fff;}
.sidebar-card.cta-card p{color:#c9dcec;font-size:13.5px;}
@media(max-width:980px){.service-detail{grid-template-columns:1fr;}}

/* ---------- Footer ---------- */
footer.site-footer{
  background:var(--navy-dark);color:#c9dcec;padding-top:70px;
}
.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,.1);
}
.footer-logo{display:flex;align-items:center;gap:12px;margin-bottom:16px;}
.footer-logo svg{width:42px;height:42px;}
.footer-logo .l1{font-family:var(--ff-head);font-weight:800;font-size:17px;color:#fff;}
.footer-logo .l1 span{color:var(--gold);}
footer .col p{color:#a9c2d8;font-size:14px;}
footer h4{color:#fff;font-family:var(--ff-head);font-size:15.5px;margin-bottom:18px;letter-spacing:.02em;}
footer .col ul li{margin-bottom:11px;}
footer .col ul a{font-size:14px;color:#a9c2d8;display:inline-flex;align-items:center;gap:8px;}
footer .col ul a:hover{color:var(--gold);}
footer .col ul svg{width:12px;height:12px;fill:var(--blue-light);}
.footer-contact li{display:flex;gap:10px;margin-bottom:14px;font-size:14px;color:#a9c2d8;align-items:flex-start;}
.footer-contact svg{width:16px;height:16px;fill:var(--gold);flex-shrink:0;margin-top:2px;}
.footer-social{display:flex;gap:10px;margin-top:18px;}
.footer-social a{
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;transition:background .2s ease;
}
.footer-social a:hover{background:var(--gold);}
.footer-social svg{width:16px;height:16px;fill:#fff;}
.footer-bottom{
  padding:22px 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  font-size:13px;color:#8badc7;
}
.footer-bottom a{color:#8badc7;}
.footer-bottom a:hover{color:var(--gold);}
@media(max-width:940px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr;}}

/* ---------- Floating call button (mobile) ---------- */
.float-call{
  position:fixed;right:20px;bottom:20px;z-index:900;
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 26px rgba(245,166,35,.5);
  animation:pulse 2.2s infinite;
}
.float-call svg{width:26px;height:26px;fill:var(--navy-dark);}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(245,166,35,.55);}
  70%{box-shadow:0 0 0 16px rgba(245,166,35,0);}
  100%{box-shadow:0 0 0 0 rgba(245,166,35,0);}
}
.back-to-top{
  position:fixed;right:20px;bottom:92px;z-index:900;
  width:44px;height:44px;border-radius:50%;background:var(--navy);
  display:flex;align-items:center;justify-content:center;color:#fff;
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:all .3s ease;box-shadow:var(--shadow-md);border:none;
}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top svg{width:18px;height:18px;fill:#fff;}

/* ---------- Reveal animation ---------- */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease;}
.reveal.in{opacity:1;transform:translateY(0);}
.reveal-delay-1{transition-delay:.08s;}
.reveal-delay-2{transition-delay:.16s;}
.reveal-delay-3{transition-delay:.24s;}
.reveal-delay-4{transition-delay:.32s;}
.reveal-delay-5{transition-delay:.4s;}

/* ---------- Misc pages (about / services index) ---------- */
.value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.value-card{
  text-align:center;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);
  padding:32px 22px;box-shadow:var(--shadow-sm);
}
.value-card .ic{
  width:60px;height:60px;border-radius:16px;background:rgba(31,127,193,.1);margin:0 auto 18px;
  display:flex;align-items:center;justify-content:center;
}
.value-card .ic svg{width:28px;height:28px;fill:var(--blue);}
.value-card h3{font-size:16.5px;}
.value-card p{font-size:13.5px;margin-bottom:0;}
@media(max-width:980px){.value-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.value-grid{grid-template-columns:1fr;}}

.timeline{border-left:3px solid var(--border);margin-left:10px;padding-left:36px;}
.timeline-item{position:relative;padding-bottom:34px;}
.timeline-item:last-child{padding-bottom:0;}
.timeline-item::before{
  content:'';position:absolute;left:-45px;top:2px;width:16px;height:16px;border-radius:50%;
  background:var(--gold);border:3px solid var(--navy-dark);
}
.timeline-item strong{display:block;color:var(--blue);font-family:var(--ff-head);font-size:13px;letter-spacing:.04em;text-transform:uppercase;margin-bottom:4px;}
.timeline-item h4{font-size:17px;margin-bottom:6px;}
.timeline-item p{font-size:14px;margin-bottom:0;}

.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.team-card{background:var(--white);border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;box-shadow:var(--shadow-sm);text-align:center;padding-bottom:26px;}
.team-avatar{
  width:100%;height:190px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.team-avatar svg{width:64px;height:64px;fill:rgba(255,255,255,.85);}
.team-card h3{font-size:17px;margin-bottom:2px;}
.team-card span{font-size:13px;color:var(--blue);font-weight:700;}
@media(max-width:860px){.team-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.team-grid{grid-template-columns:1fr;}}

.badge-strip{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;}
.badge-strip .badge{
  display:flex;align-items:center;gap:10px;background:var(--white);border:1px solid var(--border);
  padding:14px 20px;border-radius:99px;box-shadow:var(--shadow-sm);font-weight:700;font-size:13.5px;color:var(--navy);
}
.badge-strip svg{width:18px;height:18px;fill:var(--gold-dark);}

.map-cta{
  display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:20px;overflow:hidden;box-shadow:var(--shadow-md);
}
.map-cta .info{background:var(--navy-dark);color:#fff;padding:50px 44px;}
.map-cta .info h2{color:#fff;}
.map-cta .info p{color:#c9dcec;}
.map-cta iframe{width:100%;height:100%;min-height:340px;border:0;}
@media(max-width:860px){.map-cta{grid-template-columns:1fr;}}

.not-found{text-align:center;padding:130px 24px;}
.not-found .code{
  font-family:var(--ff-head);font-weight:800;font-size:clamp(70px,14vw,150px);
  color:var(--navy);line-height:1;background:linear-gradient(90deg,var(--navy),var(--blue));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
