/* =========== Pegasus Construction — Global Styles =========== */
:root{
  --primary:#4FB4E8;
  --primary-deep:#2f7ec7;
  --primary-soft:#e8f4fc;
  --ink:#0f1a2b;
  --text:#1f2b3d;
  --muted:#6b7891;
  --border:#e4e9f0;
  --bg:#fbfcfe;
  --card:#ffffff;
  --sand:#f6f4ef;
  --shadow-card: 0 1px 2px rgba(15,26,43,.04), 0 8px 24px -12px rgba(15,26,43,.08);
  --shadow-brand: 0 20px 60px -20px rgba(79,180,232,.45);
  --grad-brand: linear-gradient(120deg,#4FB4E8 0%, #2f7ec7 100%);
  --grad-hero: linear-gradient(135deg, rgba(79,180,232,.92) 0%, rgba(47,126,199,.88) 100%);
  --grad-sky: linear-gradient(180deg,#f2f9fe 0%, #dcecf9 100%);
  --radius:14px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Roboto',system-ui,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{font-family:'Poppins',sans-serif;letter-spacing:-.02em;color:var(--ink);margin:0}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
ul{list-style:none;margin:0;padding:0}
.container-x{width:100%;max-width:1280px;margin:0 auto;padding:0 1.25rem}
[data-lucide]{width:20px;height:20px;stroke-width:2}
.ic-xs[data-lucide]{width:14px;height:14px}

/* ============ NAVBAR ============ */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:50;
  background:rgba(255,255,255,.45);backdrop-filter:blur(6px);
  transition:background .3s, box-shadow .3s;
}
.site-header.scrolled{background:rgba(255,255,255,.9);backdrop-filter:blur(14px);box-shadow:var(--shadow-card)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;height: auto;padding: 20px 0px;}
.brand{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.brand img{height:76px;width:auto}
.brand-text{display:none;flex-direction:column;line-height:1}
.brand-name{font-family:'Poppins';font-weight:800;color:var(--ink);font-size:1.1rem}
.brand-sub{font-size:10px;letter-spacing:.2em;color:var(--muted);margin-top:2px}
.brand-name.light{color:#fff}
.brand-sub.light{color:rgba(255,255,255,.6)}
@media(min-width:640px){.brand-text{display:flex}}
.main-nav{display:none;align-items:center;gap:.25rem}
.main-nav > a, .nav-trigger{
  padding:.55rem .75rem;font-size:.9rem;font-weight:500;color:#22324a;
  transition:color .2s;display:inline-flex;align-items:center;gap:.35rem;
}
.main-nav > a:hover,.nav-trigger:hover{color:var(--primary-deep)}
.main-nav > a.active{color:var(--primary-deep);font-weight:600}
@media(min-width:1200px){.main-nav{display:flex}}
.nav-item{position:relative}
.nav-item .nav-dropdown{
  position:absolute;left:50%;top:100%;transform:translate(-50%,10px) scale(.98);
  margin-top:.25rem;
  width:360px;background:#fff;border:1px solid var(--border);border-radius:18px;
  padding:.5rem;box-shadow:var(--shadow-brand);
  opacity:0;visibility:hidden;transition:opacity .25s,transform .25s,visibility .25s;
}
.nav-item:hover .nav-dropdown,.nav-item:focus-within .nav-dropdown{
  opacity:1;visibility:visible;transform:translate(-50%,0) scale(1);
}
.dd-item{display:flex;gap:.75rem;padding:.75rem;border-radius:12px;transition:background .2s}
.dd-item:hover{background:var(--primary-soft)}
.dd-icon{
  display:grid;place-items:center;width:40px;height:40px;border-radius:10px;
  background:var(--primary-soft);color:var(--primary-deep);flex-shrink:0;
  transition:.25s;
}
.dd-item:hover .dd-icon{background:var(--primary-deep);color:#fff;transform:scale(1.1)}
.dd-item b{display:block;font-family:'Poppins';font-weight:600;font-size:.9rem;color:var(--ink)}
.dd-item small{display:block;font-size:.75rem;color:var(--muted);margin-top:2px}
.nav-right{display:flex;align-items:center;gap:.75rem}
.menu-btn{
  display:grid;place-items:center;width:44px;height:44px;border-radius:999px;
  border:1px solid var(--border);background:#fff;
}
@media(min-width:1200px){.menu-btn{display:none}}
.d-none-mobile{display:none}
@media(min-width:768px){.d-none-mobile{display:inline-flex}}
.mobile-menu{display:none;border-top:1px solid var(--border);background:#fff;max-height:80vh;overflow-y:auto;padding:1rem 1.25rem}
.mobile-menu.open{display:flex;flex-direction:column;gap:.25rem}
.mobile-menu > a{padding:.85rem 0;font-size:.9rem;font-weight:500;color:#22324a;border-bottom:1px solid rgba(228,233,240,.6)}
.mobile-group{border-bottom:1px solid rgba(228,233,240,.6)}
.mobile-trigger{display:flex;justify-content:space-between;align-items:center;width:100%;padding:.85rem 0;font-weight:600;color:var(--ink);font-size:.9rem}
.mobile-trigger [data-lucide]{transition:transform .3s}
.mobile-trigger.open [data-lucide]{transform:rotate(180deg)}
.mobile-submenu{display:none;padding:0 0 .75rem .5rem;flex-direction:column;gap:.25rem}
.mobile-submenu.open{display:flex}
.mobile-submenu a{display:flex;gap:.5rem;align-items:center;padding:.5rem;border-radius:8px;font-size:.85rem}
.mobile-submenu a:hover{background:var(--primary-soft)}
.mobile-submenu a [data-lucide]{width:16px;height:16px;color:var(--primary-deep)}
.mobile-menu .btn-primary{margin-top:1rem}

/* ============ BUTTONS ============ */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.85rem 1.4rem;font-size:.85rem;font-weight:600;font-family:'Poppins';
  color:#fff;background:var(--grad-brand);border-radius:999px;
  box-shadow:var(--shadow-brand);transition:transform .2s,filter .2s;
}
.btn-primary:hover{transform:translateY(-2px);filter:brightness(1.08)}
.btn-ghost{
  display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.4rem;
  font-size:.85rem;font-weight:600;color:var(--ink);
  background:#fff;border:1px solid var(--border);border-radius:999px;transition:.2s;
}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary-deep)}
.btn-block{width:100%}
.btn-white{
  display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.4rem;
  background:#fff;color:var(--primary-deep);border-radius:999px;font-weight:700;font-size:.85rem;
  box-shadow:0 10px 24px rgba(0,0,0,.12);transition:transform .2s;
}
.btn-white:hover{transform:translateY(-2px)}
.btn-outline-white{
  display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.4rem;
  border:1px solid rgba(255,255,255,.5);color:#fff;border-radius:999px;font-weight:600;font-size:.85rem;
  backdrop-filter:blur(6px);transition:background .2s;
}
.btn-outline-white:hover{background:rgba(255,255,255,.12)}

/* Chips */
.chip{
  display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .85rem;
  border-radius:999px;background:#fff;border:1px solid var(--border);
  font-size:.72rem;font-weight:600;color:var(--primary-deep);box-shadow:var(--shadow-card);
}
.chip.on-dark{background:rgba(255,255,255,.15);color:#fff;border:0}

/* Eyebrow */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;font-size:.7rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.2em;color:var(--primary-deep);
}
.eyebrow .line{width:2rem;height:1px;background:var(--primary-deep)}

/* Section basics */
.section{padding:5rem 0;position:relative;overflow:hidden}
@media(min-width:1024px){.section{padding:7rem 0}}
.bg-soft{background:var(--grad-sky)}
.section-head{max-width:640px}
.section-head.center{margin:0 auto;text-align:center}
.section-head h2,.two-col h2,.faq-col h2,.head-row h2,.contact-card h2{
  font-size:2rem;font-weight:800;line-height:1.15;margin-top:1rem;
}
@media(min-width:640px){.section-head h2,.two-col h2,.faq-col h2,.head-row h2,.contact-card h2{font-size:2.4rem}}
@media(min-width:1024px){.section-head h2,.two-col h2,.faq-col h2,.head-row h2,.contact-card h2{font-size:2.6rem}}
.section-head p,.two-col p{margin-top:1.2rem;color:var(--muted);line-height:1.7}
.link-arrow{display:inline-flex;align-items:center;gap:.5rem;font-weight:600;color:var(--primary-deep);font-size:.9rem;margin-top:1.5rem;transition:gap .2s}
.link-arrow:hover{gap:.75rem}
.text-gradient{background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;color:transparent}

/* ============ HERO (homepage) ============ */
.hero{position:relative;padding:9rem 0 5rem}
@media(min-width:1024px){.hero{padding:11rem 0 7rem}}
.hero-bg{position:absolute;inset:0;background:var(--grad-sky);z-index:-3}
.hero-grid{
  position:absolute;inset:0;z-index:-2;opacity:.6;
  background-image:
    linear-gradient(rgba(79,180,232,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,180,232,.08) 1px, transparent 1px);
  background-size:40px 40px;
}
.hero-grid.inset{position:absolute;inset:0;z-index:0;opacity:.7}
.hero-grid.inset.light{opacity:.1}
.blob{position:absolute;border-radius:50%;filter:blur(60px);opacity:.55;pointer-events:none;z-index:-1}
.blob-1{top:-80px;left:-60px;width:380px;height:380px;background:var(--primary)}
.blob-2{bottom:-100px;right:-80px;width:420px;height:420px;background:var(--primary-deep)}
.blob-3{top:-100px;right:-80px;width:380px;height:380px;background:var(--primary);opacity:.35}
.blob-4{top:-80px;left:10%;width:300px;height:300px;background:var(--primary)}
.blob-5{bottom:-80px;right:10%;width:320px;height:320px;background:var(--primary-deep)}
.hero-inner{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center;position:relative}
@media(min-width:1024px){.hero-inner{grid-template-columns:1fr 1fr}}
.hero-copy h1{font-size:2.4rem;font-weight:800;line-height:1.05;margin-top:1.5rem}
@media(min-width:640px){.hero-copy h1{font-size:3rem}}
@media(min-width:1024px){.hero-copy h1{font-size:3.75rem}}
.hero-copy p{margin-top:1.5rem;max-width:34rem;color:var(--muted);font-size:1.05rem;line-height:1.7}
.hero-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:28rem;margin-top:2.5rem}
.stat-n{font-family:'Poppins';font-weight:800;font-size:1.4rem;color:var(--ink)}
.stat-l{font-size:.72rem;color:var(--muted);margin-top:.35rem}
.hero-visual{position:relative}
.hero-img{position:relative;overflow:hidden;border-radius:32px;box-shadow:var(--shadow-brand)}
.hero-img img{width:100%;height:100%;aspect-ratio:4/5;object-fit:cover}
@media(min-width:1024px){.hero-img img{aspect-ratio:5/6}}
.hero-img-overlay{position:absolute;inset:0;background:linear-gradient(to top, rgba(15,26,43,.4), transparent 60%)}
.float-card{
  position:absolute;background:#fff;border:1px solid var(--border);border-radius:16px;
  padding:.9rem;box-shadow:var(--shadow-brand);display:flex;align-items:center;gap:.75rem;
  width:220px;
}
.float-card-1{top:2.5rem;left:-1rem}
.float-card-2{bottom:2.5rem;right:-1rem;width:230px}
@media(min-width:640px){
  .float-card-1{left:-2rem}
  .float-card-2{right:-1.5rem}
}
.fc-icon{display:grid;place-items:center;width:40px;height:40px;border-radius:12px;flex-shrink:0}
.fc-icon.soft{background:var(--primary-soft);color:var(--primary-deep)}
.fc-icon.solid{background:var(--primary);color:#fff}
.fc-icon.gradient{background:var(--grad-brand);color:#fff;width:56px;height:56px;border-radius:14px}
.fc-icon.gradient [data-lucide]{width:26px;height:26px}
.float-card small,.badge-card .badge-l,.materials-card small,.corner-card small{display:block;font-size:.7rem;color:var(--muted)}
.float-card b,.materials-card b,.corner-card b{display:block;font-size:.85rem;color:var(--ink);font-weight:600;margin-top:2px}
.float-pill{
  position:absolute;bottom:-1rem;left:1.5rem;display:flex;align-items:center;gap:.5rem;
  background:#fff;border:1px solid var(--border);border-radius:999px;padding:.5rem 1rem .5rem .5rem;
  box-shadow:var(--shadow-brand);font-size:.72rem;font-weight:600;color:var(--ink);
}
.pulse-dot{position:relative;display:grid;place-items:center;width:12px;height:12px}
.pulse-dot span:first-child{position:absolute;inset:0;border-radius:50%;background:var(--primary);animation:ping 2.4s ease-out infinite}
.pulse-dot span:last-child{width:8px;height:8px;border-radius:50%;background:var(--primary)}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero{
  position:relative;padding:8rem 0 5rem;overflow:hidden;
  background:var(--grad-sky);
}
@media(min-width:1024px){.page-hero{padding:10rem 0 6rem}}
.page-hero-inner{position:relative;z-index:1;max-width:800px}
.page-hero h1{font-size:2.4rem;font-weight:800;line-height:1.1;margin-top:1rem}
@media(min-width:640px){.page-hero h1{font-size:3rem}}
@media(min-width:1024px){.page-hero h1{font-size:3.5rem}}
.page-hero p{margin-top:1.25rem;color:var(--muted);font-size:1.05rem;line-height:1.7;max-width:36rem}
.page-hero-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--muted);margin-bottom:1rem}
.breadcrumb a{color:var(--primary-deep);font-weight:500}
.breadcrumb a:hover{text-decoration:underline}
.breadcrumb span{color:var(--muted)}

/* ============ ANIMATIONS ============ */
@keyframes ping{0%{transform:scale(1);opacity:.6}100%{transform:scale(2.2);opacity:0}}
@keyframes float-y{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes fade-up{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes fade-in{from{opacity:0}to{opacity:1}}
@keyframes slide-right{from{opacity:0;transform:translateX(-24px)}to{opacity:1;transform:translateX(0)}}
.animate-float{animation:float-y 6s ease-in-out infinite}
.delay-1s{animation-delay:1s}
.delay-half{animation-delay:.5s}
.fade-up{animation:fade-up .7s ease-out both}
.delay-1{animation-delay:.15s}
.delay-2{animation-delay:.3s}
.delay-3{animation-delay:.45s}

/* Scroll reveal */

/* ============ TRUST STRIP ============ */
.trust-strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:#fff}
.trust-strip .container-x{padding-top:2.5rem;padding-bottom:2.5rem}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
@media(min-width:768px){.trust-grid{grid-template-columns:repeat(5,1fr)}}
.trust-item{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.75rem}
.trust-icon{
  display:grid;place-items:center;width:56px;height:56px;border-radius:50%;
  background:var(--primary-soft);color:var(--primary-deep);transition:.25s;
}
.trust-item:hover .trust-icon{background:var(--primary);color:#fff;transform:scale(1.1)}
.trust-item span{font-size:.8rem;font-weight:600;color:var(--ink);max-width:10rem;line-height:1.3}

/* ============ TWO COLUMN LAYOUTS ============ */
.two-col{display:grid;grid-template-columns:1fr;gap:3.5rem;align-items:center}
@media(min-width:1024px){.two-col{grid-template-columns:1fr 1fr}}
.areas-col{grid-template-columns:1fr}
@media(min-width:1024px){.areas-col{grid-template-columns:1fr 1.4fr}}
.faq-col{display:grid;grid-template-columns:1fr;gap:3rem}
@media(min-width:1024px){.faq-col{grid-template-columns:1fr 1.4fr}}
.reverse-mobile > div:first-child{order:2}
@media(min-width:1024px){.reverse-mobile > div:first-child{order:1}}

/* ============ ABOUT ============ */
.rounded-shot{border-radius:32px;overflow:hidden;box-shadow:var(--shadow-brand)}
.rounded-shot.border-light{border:1px solid rgba(255,255,255,.1)}
.rounded-shot img{width:100%;aspect-ratio:7/5;object-fit:cover}
.about-img-wrap{position:relative}
.badge-card{
  position:absolute;bottom:-2rem;right:-1rem;background:#fff;border:1px solid var(--border);
  border-radius:18px;padding:1.15rem 1.5rem;box-shadow:var(--shadow-brand);
  display:flex;align-items:center;gap:1rem;
}
@media(min-width:640px){.badge-card{right:2rem}}
.badge-n{font-family:'Poppins';font-weight:800;font-size:1.5rem;color:var(--ink)}
.check-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:2rem}
@media(min-width:640px){.check-grid{grid-template-columns:1fr 1fr}}
.check{display:flex;align-items:flex-start;gap:.75rem;font-size:.9rem;color:var(--ink);font-weight:500}
.check span{
  display:grid;place-items:center;width:24px;height:24px;border-radius:50%;
  background:var(--primary);color:#fff;flex-shrink:0;
}
.check span [data-lucide]{width:14px;height:14px}

/* ============ SERVICES ============ */
.head-row{display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;gap:1.5rem}
@media(min-width:768px){.head-row{flex-direction:row;align-items:flex-end}}
.services-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:3.5rem}
@media(min-width:768px){.services-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.services-grid{grid-template-columns:repeat(3,1fr)}}
.svc-card{
  position:relative;overflow:hidden;background:#fff;border:1px solid var(--border);
  border-radius:24px;padding:1.75rem;box-shadow:var(--shadow-card);transition:.25s;
}
.svc-card:hover{box-shadow:var(--shadow-brand);transform:translateY(-4px)}
.svc-num{
  position:absolute;top:1rem;right:1.25rem;font-family:'Poppins';font-weight:900;font-size:2.25rem;
  color:var(--primary-soft);transition:color .3s;
}
.svc-card:hover .svc-num{color:rgba(79,180,232,.3)}
.svc-icon{
  position:relative;display:grid;place-items:center;width:64px;height:64px;border-radius:18px;
  background:linear-gradient(135deg,var(--primary-soft),#fff);border:1px solid var(--border);
  color:var(--primary-deep);box-shadow:var(--shadow-card);
}
.svc-icon [data-lucide]{width:28px;height:28px}
.svc-card h3{margin-top:1.4rem;font-family:'Poppins';font-weight:700;font-size:1.2rem}
.svc-card p{margin-top:.5rem;color:var(--muted);font-size:.9rem;line-height:1.6}
.svc-card .link-arrow{margin-top:1.25rem;font-size:.85rem}

/* ============ SHOWCASE ============ */
.showcase-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-top:3.5rem}
@media(min-width:1024px){.showcase-grid{grid-template-columns:repeat(3,1fr)}}
.showcase-card{
  overflow:hidden;background:#fff;border:1px solid var(--border);border-radius:24px;
  box-shadow:var(--shadow-card);transition:.25s;
}
.showcase-card:hover{box-shadow:var(--shadow-brand);transform:translateY(-4px)}
.showcase-img{position:relative;overflow:hidden;aspect-ratio:4/3}
.showcase-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.showcase-card:hover .showcase-img img{transform:scale(1.1)}
.showcase-tag{
  position:absolute;top:1rem;left:1rem;background:rgba(255,255,255,.9);backdrop-filter:blur(6px);
  padding:.3rem .75rem;border-radius:999px;font-size:.68rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.08em;color:var(--primary-deep);
}
.showcase-body{padding:1.75rem}
.showcase-body h3{font-family:'Poppins';font-weight:700;font-size:1.4rem}
.showcase-body p{margin-top:.5rem;color:var(--muted);font-size:.9rem;line-height:1.6}
.showcase-body ul{margin-top:1.25rem;display:flex;flex-direction:column;gap:.5rem}
.showcase-body li{display:flex;align-items:center;gap:.5rem;font-size:.9rem;color:var(--ink)}
.showcase-body li [data-lucide]{width:16px;height:16px;color:var(--primary-deep)}

/* ============ CABINETS (dark) ============ */
.dark-section{background:var(--ink);color:#fff}
.dark-section h2{color:#fff}
.dark-section .dim{color:rgba(255,255,255,.7)}
.dark-section .eyebrow{color:var(--primary)}
.dark-section .eyebrow .line{background:var(--primary)}
.feature-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:2rem}
@media(min-width:640px){.feature-grid{grid-template-columns:1fr 1fr}}
.feature-card{
  border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.05);
  border-radius:16px;padding:1.25rem;backdrop-filter:blur(6px);transition:background .2s;
}
.feature-card:hover{background:rgba(255,255,255,.1)}
.feature-card [data-lucide]{color:var(--primary);width:24px;height:24px}
.feature-card b{display:block;margin-top:.75rem;font-family:'Poppins';font-weight:600}
.feature-card small{display:block;margin-top:.25rem;font-size:.72rem;color:rgba(255,255,255,.6)}
.cabinets-img-wrap{position:relative}
.materials-card{
  position:absolute;top:2.5rem;left:-1rem;background:#fff;color:var(--ink);
  border:1px solid var(--border);border-radius:16px;padding:1rem;box-shadow:var(--shadow-brand);width:210px;
}
.materials-card b{font-size:.9rem;font-weight:700;margin-top:.4rem}
.swatches{display:flex;gap:.35rem;margin-top:.75rem}
.swatches span{width:24px;height:24px;border-radius:50%;border:1px solid var(--border)}

/* ============ FLOORING ============ */
.flooring-img-wrap{position:relative}
.flooring-img-wrap .rounded-shot img{aspect-ratio:5/4}
.corner-card{
  position:absolute;bottom:-1.5rem;right:-1rem;background:#fff;border:1px solid var(--border);
  border-radius:16px;padding:.85rem 1.25rem;box-shadow:var(--shadow-brand);
  display:flex;align-items:center;gap:.75rem;
}
@media(min-width:640px){.corner-card{right:1.5rem}}
.pill-grid{display:grid;grid-template-columns:1fr;gap:.75rem;margin-top:2rem}
@media(min-width:640px){.pill-grid{grid-template-columns:1fr 1fr}}
.pill{
  display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;border-radius:12px;
  background:rgba(232,244,252,.5);font-size:.85rem;color:var(--ink);font-weight:500;
}
.pill [data-lucide]{width:16px;height:16px;color:var(--primary-deep);flex-shrink:0}

/* ============ PROCESS ============ */
.process-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:4rem}
@media(min-width:768px){.process-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.process-grid{grid-template-columns:repeat(4,1fr)}}
.step-card{
  position:relative;background:#fff;border:1px solid var(--border);border-radius:24px;
  padding:1.75rem;box-shadow:var(--shadow-card);transition:.25s;
}
.step-card:hover{box-shadow:var(--shadow-brand);transform:translateY(-4px)}
.step-num{
  position:absolute;top:-20px;left:1.5rem;display:grid;place-items:center;width:40px;height:40px;
  border-radius:50%;background:var(--grad-brand);color:#fff;font-family:'Poppins';font-weight:800;
  box-shadow:var(--shadow-brand);
}
.step-icon{
  display:grid;place-items:center;width:56px;height:56px;border-radius:16px;
  background:var(--primary-soft);color:var(--primary-deep);margin-top:1rem;
}
.step-icon [data-lucide]{width:28px;height:28px}
.step-card h3{margin-top:1.25rem;font-family:'Poppins';font-weight:700;font-size:1.1rem}
.step-card p{margin-top:.5rem;color:var(--muted);font-size:.85rem;line-height:1.6}

/* ============ AREAS ============ */
.areas-card{
  position:relative;background:#fff;border:1px solid var(--border);border-radius:24px;
  padding:2rem;box-shadow:var(--shadow-card);overflow:hidden;
}
.areas-grid{position:relative;display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;z-index:1}
.areas-grid a{cursor: pointer;}
@media(min-width:640px){.areas-grid{grid-template-columns:repeat(3,1fr)}}
.area-item{
  display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;background:var(--bg);
  border:1px solid var(--border);border-radius:12px;font-size:.85rem;font-weight:500;color:var(--ink);
  transition:.2s;cursor:default;
}
.area-item:hover{border-color:var(--primary);color:var(--primary-deep);transform:translateY(-2px)}
.area-item [data-lucide]{width:16px;height:16px;color:var(--primary-deep);flex-shrink:0}

/* ============ LOCATION CARDS (areas page) ============ */
.location-cards-grid{
  display:grid;grid-template-columns:1fr;gap:1.75rem;margin-top:3.5rem;
}
@media(min-width:640px){.location-cards-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.location-cards-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1280px){.location-cards-grid{grid-template-columns:repeat(3,1fr)}}
.loc-card{
  position:relative;overflow:hidden;border-radius:24px;background:#fff;
  border:1px solid var(--border);box-shadow:var(--shadow-card);
  transition:transform .3s,box-shadow .3s;display:flex;flex-direction:column;
}
.loc-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-brand)}
.loc-card-img{position:relative;aspect-ratio:16/10;overflow:hidden}
.loc-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.loc-card:hover .loc-card-img img{transform:scale(1.08)}
.loc-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(15,26,43,.55) 0%, transparent 60%);
}
.loc-card-badge{
  position:absolute;top:.85rem;left:.85rem;
  background:rgba(255,255,255,.92);backdrop-filter:blur(6px);
  border-radius:999px;padding:.3rem .75rem;
  font-size:.65rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.1em;color:var(--primary-deep);
}
.loc-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column;gap:.75rem}
.loc-card-body h3{font-family:'Poppins';font-weight:700;font-size:1.15rem;color:var(--ink)}
.loc-card-body p{color:var(--muted);font-size:.85rem;line-height:1.6;flex:1}
.loc-card-cta{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.65rem 1.15rem;border-radius:999px;
  background:var(--primary-soft);color:var(--primary-deep);
  font-size:.8rem;font-weight:600;font-family:'Poppins';
  transition:background .2s,color .2s;align-self:flex-start;margin-top:.25rem;
}
.loc-card-cta:hover{background:var(--primary-deep);color:#fff}
.loc-card-cta [data-lucide]{width:13px;height:13px}

/* ============ TESTIMONIALS ============ */
.reviews-grid{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:3rem}
@media(min-width:768px){.reviews-grid{grid-template-columns:repeat(3,1fr)}}
.review-card{
  background:#fff;border:1px solid var(--border);border-radius:24px;padding:1.75rem;
  box-shadow:var(--shadow-card);transition:.25s;
}
.review-card:hover{box-shadow:var(--shadow-brand);transform:translateY(-4px)}
.stars{display:flex;gap:2px;color:#FF9529}
.stars [data-lucide]{width:16px;height:16px;fill:currentColor}
.review-card blockquote{margin:1rem 0 0;color:var(--ink);line-height:1.65;font-size:.95rem}
.review-foot{display:flex;align-items:center;gap:.75rem;margin-top:1.5rem}
.avatar{
  display:grid;place-items:center;width:44px;height:44px;border-radius:50%;
  background:var(--grad-brand);color:#fff;font-family:'Poppins';font-weight:700;
}
.rv-name{font-weight:600;font-size:.85rem;color:var(--ink)}
.rv-role{font-size:.72rem;color:var(--muted)}

/* ============ FAQ ============ */
.faq-list{display:flex;flex-direction:column;gap:.75rem}
.faq-item{border:1px solid var(--border);background:#fff;border-radius:16px;transition:.2s}
.faq-item.open{border-color:var(--primary);background:rgba(232,244,252,.4);box-shadow:var(--shadow-card)}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;width:100%;
  padding:1.25rem;text-align:left;font-family:'Poppins';font-weight:600;color:var(--ink);
}
.faq-q [data-lucide]{color:var(--primary-deep);transition:transform .3s;flex-shrink:0}
.faq-item.open .faq-q [data-lucide]{transform:rotate(180deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-a-inner{padding:0 1.25rem 1.25rem;color:var(--muted);font-size:.9rem;line-height:1.65}

/* ============ CONTACT ============ */
.contact-section{position:relative}
.contact-card{
  position:relative;overflow:hidden;border-radius:40px;padding:2rem;
  background:var(--grad-brand);color:#fff;box-shadow:var(--shadow-brand);
}
@media(min-width:640px){.contact-card{padding:3.5rem}}
.contact-card h2{color:#fff;margin-top:1.25rem}
.contact-card p{margin-top:1rem;color:rgba(255,255,255,.85);max-width:36rem}
.contact-inner{position:relative;display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center}
@media(min-width:1024px){.contact-inner{grid-template-columns:1.3fr 1fr}}
.contact-btns{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
.contact-form{
  background:#fff;color:var(--text);border-radius:24px;padding:1.5rem;
  box-shadow:var(--shadow-brand);display:flex;flex-direction:column;gap:.75rem;
}
.contact-form label{display:flex;flex-direction:column;gap:.35rem;font-size:.72rem;font-weight:600;color:var(--ink)}
.contact-form input,.contact-form select,.contact-form textarea{
  padding:.85rem 1rem;border:1px solid var(--border);border-radius:12px;background:var(--bg);
  font-family:inherit;font-size:.9rem;outline:none;transition:border-color .2s;
}
.contact-form textarea{resize:vertical;min-height:90px}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--primary)}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.contact-form button{
  margin-top:.5rem;padding:.85rem 1rem;border-radius:12px;background:var(--grad-brand);
  color:#fff;font-family:'Poppins';font-weight:700;font-size:.85rem;transition:filter .2s;
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
}
.contact-form button:hover{filter:brightness(1.1)}

/* ============ FOOTER ============ */
.site-footer{background:var(--ink);color:rgba(255,255,255,.75)}
.footer-grid{padding:4rem 1.25rem;display:grid;gap:2.5rem;grid-template-columns:1fr}
@media(min-width:768px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.foot-title{font-family:'Poppins';font-weight:700;color:#fff}
.site-footer ul{margin-top:1rem;display:flex;flex-direction:column;gap:.5rem;font-size:.9rem}
.site-footer ul a:hover{color:var(--primary)}
.ico-list li{display:flex;align-items:center;gap:.75rem}
.ico-list [data-lucide]{color:var(--primary);width:16px;height:16px}
.dim{color:rgba(255,255,255,.6)}
.mt{margin-top:1.25rem;font-size:.9rem;line-height:1.65}
.foot-bottom{border-top:1px solid rgba(255,255,255,.1)}
.foot-bottom-inner{
  padding:1.5rem 0;display:flex;flex-direction:column;gap:.75rem;
  align-items:center;justify-content:space-between;font-size:.72rem;color:rgba(255,255,255,.5);
}
@media(min-width:768px){.foot-bottom-inner{flex-direction:row}}

/* ============ STATS BAR ============ */
.stats-bar{
  display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;
  background:var(--ink);border-radius:24px;padding:2.5rem;
  margin-top:3.5rem;
}
@media(min-width:640px){.stats-bar{grid-template-columns:repeat(4,1fr)}}
.stat-box{text-align:center}
.stat-box .stat-n{font-size:2.2rem;color:#fff}
.stat-box .stat-l{color:rgba(255,255,255,.6);font-size:.8rem;margin-top:.5rem}

/* ============ GALLERY GRID ============ */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;margin-top:3.5rem;
}
@media(min-width:768px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}
.gallery-item{
  border-radius:16px;overflow:hidden;aspect-ratio:4/3;cursor:pointer;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery-item:hover img{transform:scale(1.08)}
.gallery-item:first-child{
  grid-column:span 2;aspect-ratio:16/7;
}
@media(min-width:768px){
  .gallery-item:first-child{grid-column:span 1;aspect-ratio:4/3}
  .gallery-item:nth-child(4){grid-column:span 2}
}

/* ============ ICON FEATURE ROW ============ */
.icon-feature-row{
  display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:2.5rem;
}
@media(min-width:768px){.icon-feature-row{grid-template-columns:repeat(3,1fr)}}
.icon-feat{
  display:flex;flex-direction:column;align-items:flex-start;gap:.75rem;
  background:#fff;border:1px solid var(--border);border-radius:20px;
  padding:1.5rem;box-shadow:var(--shadow-card);transition:.25s;
}
.icon-feat:hover{box-shadow:var(--shadow-brand);transform:translateY(-3px)}
.icon-feat-ico{
  display:grid;place-items:center;width:52px;height:52px;border-radius:14px;
  background:var(--primary-soft);color:var(--primary-deep);
}
.icon-feat-ico [data-lucide]{width:24px;height:24px}
.icon-feat h4{font-family:'Poppins';font-weight:700;font-size:1rem;color:var(--ink)}
.icon-feat p{color:var(--muted);font-size:.85rem;line-height:1.6;margin:0}

/* ============ HIGHLIGHT CARD (dark, gradient) ============ */
.highlight-band{
  background:var(--grad-brand);border-radius:32px;padding:3rem;
  color:#fff;position:relative;overflow:hidden;margin-top:4rem;
}
.highlight-band h3{color:#fff;font-size:1.75rem;font-weight:800}
.highlight-band p{color:rgba(255,255,255,.85);margin-top:.75rem;line-height:1.65}

/* ============ CITY PAGE specific ============ */
.city-hero-split{
  display:grid;grid-template-columns:1fr;gap:3rem;align-items:center;
  padding-top:2rem;
}
@media(min-width:1024px){.city-hero-split{grid-template-columns:1fr 1fr}}
.city-hero-img{
  border-radius:28px;overflow:hidden;box-shadow:var(--shadow-brand);
  aspect-ratio:4/3;
}
.city-hero-img img{width:100%;height:100%;object-fit:cover}

/* ============ REMODELING PAGE TABS ============ */
.tab-nav{
  display:flex;gap:.5rem;flex-wrap:wrap;margin-top:3rem;
  border-bottom:2px solid var(--border);padding-bottom:.5rem;
}
.tab-btn{
  padding:.65rem 1.25rem;border-radius:12px 12px 0 0;
  font-family:'Poppins';font-weight:600;font-size:.85rem;
  color:var(--muted);transition:.2s;border:1px solid transparent;
}
.tab-btn.active,.tab-btn:hover{color:var(--primary-deep);background:var(--primary-soft)}
.tab-btn.active{border-color:var(--border);border-bottom-color:transparent}
.tab-pane{display:none;padding-top:2.5rem}
.tab-pane.active{display:block}

/* ============ BEFORE/AFTER COMPARISON ============ */
.ba-wrap{
  position:relative;border-radius:24px;overflow:hidden;
  aspect-ratio:16/9;background:var(--border);
}
.ba-label{
  position:absolute;top:.75rem;padding:.3rem .75rem;
  background:rgba(15,26,43,.7);color:#fff;font-size:.7rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;border-radius:999px;
}
.ba-label-before{left:.75rem}
.ba-label-after{right:.75rem}

/* ============ NUMBERED LIST ============ */
.numbered-list{display:flex;flex-direction:column;gap:1.25rem;margin-top:1.5rem}
.num-item{display:flex;gap:1.25rem;align-items:flex-start}
.num-circle{
  flex-shrink:0;display:grid;place-items:center;
  width:40px;height:40px;border-radius:50%;
  background:var(--grad-brand);color:#fff;
  font-family:'Poppins';font-weight:800;font-size:.95rem;
  box-shadow:var(--shadow-brand);
}
.num-item-body h4{font-family:'Poppins';font-weight:700;font-size:1rem;color:var(--ink)}
.num-item-body p{color:var(--muted);font-size:.875rem;line-height:1.6;margin-top:.35rem}

/* ============ MATERIAL SWATCHES LARGE ============ */
.material-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2rem;
}
@media(min-width:640px){.material-grid{grid-template-columns:repeat(4,1fr)}}
.material-card{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  overflow:hidden;box-shadow:var(--shadow-card);transition:.25s;
}
.material-card:hover{box-shadow:var(--shadow-brand);transform:translateY(-3px)}
.material-swatch{height:80px}
.material-card-body{padding:.85rem}
.material-card-body b{display:block;font-size:.85rem;font-family:'Poppins';font-weight:600;color:var(--ink)}
.material-card-body small{font-size:.72rem;color:var(--muted)}

/* ============ MAP PLACEHOLDER ============ */
.map-placeholder{
  width:100%;height:340px;border-radius:24px;overflow:hidden;
  background:linear-gradient(135deg,var(--primary-soft),#d4eaf8);
  display:grid;place-items:center;border:1px solid var(--border);
  position:relative;
}
.map-placeholder svg{width:60px;height:60px;color:var(--primary-deep);opacity:.5}
.map-placeholder span{position:absolute;bottom:1.5rem;font-size:.8rem;color:var(--muted)}

/* ============ CONTACT INFO CARDS ============ */
.contact-info-grid{
  display:grid;grid-template-columns:1fr;gap:1.25rem;margin-top:2rem;
}
@media(min-width:640px){.contact-info-grid{grid-template-columns:repeat(2,1fr)}}
.contact-info-card{
  background:#fff;border:1px solid var(--border);border-radius:20px;
  padding:1.5rem;box-shadow:var(--shadow-card);display:flex;gap:1rem;align-items:flex-start;
  transition:.25s;
}
.contact-info-card:hover{box-shadow:var(--shadow-brand);transform:translateY(-3px)}
.cic-icon{
  flex-shrink:0;display:grid;place-items:center;
  width:48px;height:48px;border-radius:12px;
  background:var(--primary-soft);color:var(--primary-deep);
}
.cic-icon [data-lucide]{width:22px;height:22px}
.cic-body small{display:block;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--muted)}
.cic-body b{display:block;font-size:.95rem;font-weight:700;color:var(--ink);margin-top:.25rem}
.cic-body span{display:block;font-size:.8rem;color:var(--muted);margin-top:.15rem}

/* ========= WordPress-specific overrides ========= */
.wp-block-image img { max-width: 100%; height: auto; }
img.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
img.alignright { float: right; margin: 0 0 1rem 1.5rem; }
img.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--muted); text-align: center; }
a { color: var(--primary); }
.breadcrumb { display:flex; gap:.5rem; align-items:center; padding:.75rem 0; font-size:.875rem; color:var(--muted); flex-wrap:wrap; }
.breadcrumb a { color:var(--muted); text-decoration:none; }
.breadcrumb a:hover { color:var(--primary); }




/* Swiper alignment fixes */
.swiper-wrapper {
    display: flex;
    align-items: stretch; /* Forces all cards in a row to have equal heights */
}

.review-card.swiper-slide {
    height: auto; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 2rem; /* Give some breathing room before pagination dots */
}

/* Style the navigation dots to match your design */
.swiper-pagination {
    position: relative !important;
    margin-top: 1.5rem;
}

.swiper-pagination-bullet {
    background: #ccc !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #000 !important; /* Switch to your theme brand color if needed */
    opacity: 1;
    transform: scale(1.2);
}

@media(max-width:768px){
  .blob-2{
    display: none;
  }
  .nav-inner{
    padding:20px;
  }
}