/* ============================================================
   RATHNA ENTERPRISES — DESIGN SYSTEM
   Signature: diamond mesh (from the logo's net) as a structural
   motif + single-corner "shield-cut" facets on cards & buttons.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* Brand palette — drawn from the Rathna Enterprises crest */
  --navy-950:#060f24;
  --navy-900:#0a1b3f;
  --navy-800:#102753;
  --royal-700:#1e4db7;
  --blue-600:#2f6fed;
  --blue-500:#4c8dff;
  --blue-100:#e7f0ff;
  --gold-600:#b8892f;
  --gold-500:#d4af37;
  --gold-300:#f0d77b;
  --teal-600:#0e9488;
  --teal-100:#e1f7f3;
  --white:#ffffff;
  --grey-50:#f6f8fb;
  --grey-100:#eaeef5;
  --grey-200:#dbe2ee;
  --ink:#0a1b3f;
  --ink-soft:#4c5977;
  --ink-faint:#8592ad;

  --font-display:'Archivo', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;

  --shield-cut:22px;         /* signature corner facet */
  --shield-cut-sm:12px;
  --radius:14px;
  --radius-sm:8px;

  --shadow-soft:0 10px 30px -12px rgba(10,27,63,0.25);
  --shadow-lift:0 24px 60px -20px rgba(10,27,63,0.35);
  --shadow-gold:0 0 0 1px rgba(212,175,55,0.35), 0 18px 40px -18px rgba(212,175,55,0.35);

  --container:1240px;
  --nav-h:76px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--font-display);margin:0;color:var(--navy-900);line-height:1.12;letter-spacing:-0.01em;}
p{margin:0;}
:focus-visible{outline:3px solid var(--gold-500);outline-offset:3px;}

.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.section{padding:96px 0;}
@media (max-width:768px){.section{padding:64px 0;}}

.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-mono);font-size:12.5px;font-weight:600;
  letter-spacing:0.14em;text-transform:uppercase;color:var(--royal-700);
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--gold-500);display:inline-block;}
.eyebrow.on-dark{color:var(--gold-300);}

h2.headline{font-size:clamp(28px,3.6vw,42px);}
h3.subhead{font-size:clamp(20px,2.4vw,26px);}
.lede{font-size:18px;color:var(--ink-soft);max-width:60ch;}

.section-head{max-width:720px;margin-bottom:48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head .eyebrow{margin-bottom:14px;}
.section-head h2{margin-bottom:16px;}

/* ---------- Diamond mesh — the recurring "net" texture ---------- */
.mesh-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(45deg, rgba(212,175,55,0.14) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(212,175,55,0.14) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
  pointer-events:none;
}
.mesh-bg.dense{background-size:22px 22px;}
.mesh-bg.light{
  background-image:
    linear-gradient(45deg, rgba(10,27,63,0.06) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(10,27,63,0.06) 1px, transparent 1px);
}

/* ---------- Shield-cut facet: signature single-corner clip ---------- */
.facet{clip-path:polygon(0 0, 100% 0, 100% calc(100% - var(--shield-cut)), calc(100% - var(--shield-cut)) 100%, 0 100%);}
.facet-sm{clip-path:polygon(0 0, 100% 0, 100% calc(100% - var(--shield-cut-sm)), calc(100% - var(--shield-cut-sm)) 100%, 0 100%);}
.facet-rev{clip-path:polygon(var(--shield-cut) 0, 100% 0, 100% 100%, 0 100%, 0 var(--shield-cut));}

/* ============ HEADER ============ */
.site-header{
  position:sticky;top:0;z-index:900;
  height:var(--nav-h);
  background:rgba(10,27,63,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(212,175,55,0.25);
}
.site-header .container{height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand{display:flex;align-items:center;gap:12px;flex-shrink:0;}
.brand img{height:46px;width:auto;}
.brand-word{font-family:var(--font-display);font-weight:800;color:var(--white);font-size:19px;letter-spacing:-0.01em;line-height:1.1;}
.brand-word span{display:block;font-family:var(--font-mono);font-weight:600;font-size:10px;letter-spacing:0.18em;color:var(--gold-300);text-transform:uppercase;margin-top:2px;}

.main-nav{display:flex;align-items:center;gap:2px;}
.main-nav a{
  color:rgba(255,255,255,0.82);font-size:14.5px;font-weight:500;
  padding:10px 14px;border-radius:8px;transition:.2s;
}
.main-nav a:hover, .main-nav a.active{color:var(--white);background:rgba(255,255,255,0.08);}
.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,var(--gold-500),var(--gold-600));
  color:var(--navy-950) !important;font-weight:700;font-size:14px;
  padding:11px 20px;margin-left:8px;box-shadow:var(--shadow-gold);
}
.nav-cta:hover{transform:translateY(-1px);}
.hamburger{display:none;background:none;border:0;padding:8px;color:var(--white);}
.hamburger svg{width:26px;height:26px;}

@media (max-width:1080px){
  .main-nav{display:none;}
  .hamburger{display:block;}
}

/* Mobile menu drawer */
.mobile-menu{
  position:fixed;inset:0;z-index:1000;
  background:var(--navy-900);
  transform:translateX(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;padding:22px 24px 32px;
}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:32px;}
.mobile-menu-top img{height:40px;}
.mobile-menu-close{background:none;border:0;color:var(--white);padding:8px;}
.mobile-menu-close svg{width:26px;height:26px;}
.mobile-menu nav{display:flex;flex-direction:column;gap:2px;overflow-y:auto;}
.mobile-menu nav a{
  color:var(--white);font-family:var(--font-display);font-weight:600;
  font-size:22px;padding:14px 6px;border-bottom:1px solid rgba(255,255,255,0.08);
}
.mobile-menu-actions{display:flex;gap:12px;margin-top:24px;}
.mobile-menu-actions a{
  flex:1;text-align:center;padding:14px;border-radius:10px;font-weight:700;font-size:14px;
}
.mobile-menu-actions .call{background:rgba(255,255,255,0.1);color:var(--white);}
.mobile-menu-actions .wa{background:#25d366;color:var(--white);}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-weight:700;font-size:15px;padding:15px 28px;
  border:0;transition:transform .2s, box-shadow .2s, background .2s;
  white-space:nowrap;
}
.btn-gold{background:linear-gradient(135deg,var(--gold-300),var(--gold-600));color:var(--navy-950);box-shadow:var(--shadow-gold);}
.btn-gold:hover{transform:translateY(-2px);}
.btn-outline{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,0.5);}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,0.08);}
.btn-outline-navy{background:transparent;color:var(--navy-900);border:1.5px solid var(--navy-900);}
.btn-outline-navy:hover{background:var(--navy-900);color:var(--white);}
.btn-wa{background:#25d366;color:var(--white);}
.btn-wa:hover{transform:translateY(-2px);}
.btn-block{width:100%;}
.btn-sm{padding:10px 18px;font-size:13.5px;}

/* ============ HERO ============ */
.hero{
  position:relative;overflow:hidden;
  background:radial-gradient(120% 100% at 15% 0%, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  padding:48px 0 0;
}
.hero-grid{
  display:grid;grid-template-columns:1.05fr 0.95fr;gap:40px;align-items:center;
  padding-bottom:56px;
}
@media (max-width:960px){
  .hero{padding:20px 0 0;}
  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:22px;
    padding-bottom:28px;
  }
  .hero-slider-wrap{
    order:-1; /* Place 5 scrolling images right at the top on opening hero page */
    max-width:100%;
    margin-bottom:6px;
  }
}

.hero-badge{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(212,175,55,0.4);
  padding:9px 16px 9px 10px;border-radius:100px;margin-bottom:26px;
  font-family:var(--font-mono);font-size:12px;color:var(--gold-300);letter-spacing:0.05em;
}
.hero-badge img{height:22px;width:22px;border-radius:50%;background:var(--white);}

.hero h1{
  font-size:clamp(34px,4.8vw,58px);color:var(--white);font-weight:800;
  margin-bottom:22px;
}
.hero h1 em{font-style:normal;color:var(--gold-300);}
.hero .lede{color:rgba(255,255,255,0.75);font-size:18px;margin-bottom:34px;}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:36px;}
.hero-trust{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  font-family:var(--font-mono);font-size:12.5px;color:rgba(255,255,255,0.55);
  padding-top:24px;border-top:1px solid rgba(255,255,255,0.12);
}
.hero-trust .dot{color:var(--gold-500);}

/* ============ HERO SLIDER (5 SCROLLING IMAGES) ============ */
.hero-slider-wrap{
  position:relative;
  width:100%;
  max-width:580px;
  margin:0 auto;
}
.hero-slider{
  position:relative;
  aspect-ratio:1/0.95;
  min-height:420px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(212,175,55,0.38);
  box-shadow:var(--shadow-lift), 0 0 0 1px rgba(255,255,255,0.06);
  background:var(--navy-950);
}
@media (max-width:768px){
  .hero-slider{
    aspect-ratio:4/3;
    min-height:280px;
  }
}
@media (max-width:480px){
  .hero-slider{
    aspect-ratio:16/12;
    min-height:250px;
  }
}

.hero-slides-track{
  position:absolute;inset:0;
  width:100%;height:100%;
}
.hero-slide{
  position:absolute;inset:0;
  opacity:0;visibility:hidden;
  transition:opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  transform:scale(1.03);
  z-index:1;
}
.hero-slide.active{
  opacity:1;visibility:visible;
  transform:scale(1);
  z-index:2;
}
.hero-slide img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform 7s cubic-bezier(.25,1,.5,1);
}
.hero-slide.active img{
  transform:scale(1.07);
}
.hero-slide::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 70%, rgba(6,15,36,0.5) 100%);
  pointer-events:none;
}

/* Slider Controls */
.hero-slider-controls{
  position:absolute;left:14px;right:14px;bottom:12px;z-index:5;
  display:flex;align-items:center;justify-content:space-between;
}
.hero-nav-btn{
  background:rgba(10,27,63,0.85);backdrop-filter:blur(8px);
  border:1px solid rgba(212,175,55,0.4);
  color:var(--white);
  width:32px;height:32px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all .2s ease;padding:0;
}
.hero-nav-btn:hover{
  background:var(--gold-500);color:var(--navy-950);
  border-color:var(--gold-500);transform:scale(1.08);
}
.hero-slider-dots{
  display:flex;align-items:center;gap:7px;
}
.hero-dot{
  width:8px;height:8px;border-radius:100px;
  border:0;background:rgba(255,255,255,0.35);
  cursor:pointer;padding:0;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.hero-dot.active{
  width:24px;background:var(--gold-300);
  box-shadow:0 0 10px rgba(212,175,55,0.6);
}

/* Progress bar */
.hero-slider-progress{
  position:absolute;top:0;left:0;right:0;height:3.5px;
  background:rgba(255,255,255,0.15);z-index:6;overflow:hidden;
}
.hero-progress-fill{
  height:100%;width:0%;
  background:linear-gradient(90deg, var(--gold-300), var(--gold-500));
}

/* Thumbnails tab bar */
.hero-thumbs-bar{
  display:grid;grid-template-columns:repeat(5,1fr);gap:6px;
  margin-top:12px;
}
.hero-thumb-btn{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:8px;padding:7px 4px;
  text-align:center;color:rgba(255,255,255,0.72);
  cursor:pointer;transition:all .2s ease;
  display:flex;flex-direction:column;align-items:center;gap:2px;
}
.hero-thumb-btn .num{
  font-family:var(--font-mono);font-size:10px;font-weight:600;
  color:var(--gold-300);
}
.hero-thumb-btn .lbl{
  font-size:11px;font-weight:600;line-height:1.2;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;
}
.hero-thumb-btn:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(212,175,55,0.4);
  color:var(--white);
}
.hero-thumb-btn.active{
  background:rgba(212,175,55,0.15);
  border-color:var(--gold-500);
  color:var(--white);
  box-shadow:0 3px 10px rgba(212,175,55,0.22);
}

@media (max-width:600px){
  .hero-thumbs-bar{
    display:flex;
    overflow-x:auto;
    gap:6px;
    padding-bottom:4px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .hero-thumbs-bar::-webkit-scrollbar{display:none;}
  .hero-thumb-btn{
    flex:0 0 auto;
    min-width:85px;
    padding:6px 8px;
  }
  .hero-slider-controls{
    left:10px;right:10px;bottom:8px;
  }
  .hero-nav-btn{
    width:28px;height:28px;
  }
  .hero-nav-btn svg{
    width:16px;height:16px;
  }
  .hero-dot{
    width:7px;height:7px;
  }
  .hero-dot.active{
    width:20px;
  }
  .hero-badge{
    margin-bottom:14px;font-size:11px;padding:7px 12px;
  }
  .hero h1{
    font-size:clamp(24px, 5.8vw, 32px);margin-bottom:14px;
  }
  .hero .lede{
    font-size:14.5px;margin-bottom:18px;line-height:1.5;
  }
  .hero-ctas{
    display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px;
  }
  .hero-ctas .btn{
    padding:12px 14px;font-size:13.5px;
  }
  .hero-ctas .btn:last-child{
    grid-column:span 2;
  }
  .hero-trust{
    padding-top:16px;font-size:11.5px;justify-content:center;
  }
}

/* ============ TRUST STRIP ============ */
.trust-strip{background:var(--white);border-bottom:1px solid var(--grey-100);}
.trust-strip .container{
  display:grid;grid-template-columns:repeat(5,1fr);gap:0;
}
.trust-item{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;
  padding:34px 16px;border-left:1px solid var(--grey-100);
}
.trust-item:first-child{border-left:0;}
.trust-item svg{width:26px;height:26px;color:var(--royal-700);}
.trust-item span{font-size:13.5px;font-weight:600;color:var(--ink);}
@media (max-width:900px){
  .trust-strip .container{grid-template-columns:repeat(2,1fr);}
  .trust-item{border-left:0 !important;border-bottom:1px solid var(--grey-100);}
}

/* ============ CARDS ============ */
.card{
  background:var(--white);border:1px solid var(--grey-100);
  padding:30px;box-shadow:var(--shadow-soft);
  transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lift);}
.card .icon-wrap{
  width:52px;height:52px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--blue-100),var(--teal-100));
  margin-bottom:20px;color:var(--royal-700);
}
.card .icon-wrap svg{width:26px;height:26px;}
.card h3{font-size:18px;margin-bottom:10px;}
.card p{color:var(--ink-soft);font-size:14.5px;}

/* Service card (with image) */
.service-card{
  background:var(--white);border:1px solid var(--grey-100);
  overflow:hidden;box-shadow:var(--shadow-soft);
  transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  display:flex;flex-direction:column;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lift);}
.service-card .thumb{aspect-ratio:4/3;position:relative;overflow:hidden;background:var(--navy-900);}
.service-card .thumb svg,.service-card .thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s cubic-bezier(.4,0,.2,1);}
.service-card:hover .thumb svg,.service-card:hover .thumb img{transform:scale(1.06);}
.service-card .body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1;}
.service-card .tag{font-family:var(--font-mono);font-size:11px;color:var(--teal-600);letter-spacing:0.08em;text-transform:uppercase;margin-bottom:8px;}
.service-card h3{font-size:17px;margin-bottom:8px;}
.service-card p{color:var(--ink-soft);font-size:14px;margin-bottom:18px;flex:1;}
.service-card .card-link{display:inline-flex;align-items:center;gap:6px;font-weight:700;font-size:13.5px;color:var(--royal-700);}
.service-card .card-link svg{width:15px;height:15px;transition:transform .2s;}
.service-card:hover .card-link svg{transform:translateX(3px);}

.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
@media (max-width:1080px){.services-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:760px){.services-grid{grid-template-columns:repeat(2,1fr);gap:14px;}}
@media (max-width:480px){.services-grid{grid-template-columns:1fr;}}

.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
@media (max-width:900px){.grid-4,.grid-3,.grid-2{grid-template-columns:repeat(2,1fr);}}
@media (max-width:560px){.grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}}

/* ============ ABOUT / SPLIT SECTIONS ============ */
.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
@media (max-width:900px){.split{grid-template-columns:1fr;gap:36px;}}
.split.reverse .split-media{order:2;}
.split-media{position:relative;}
.split-media svg,.split-media img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow-lift);display:block;}
.stat-row{display:flex;gap:36px;margin-top:32px;flex-wrap:wrap;}
.stat-row .stat b{display:block;font-family:var(--font-display);font-size:32px;color:var(--navy-900);}
.stat-row .stat span{font-size:13px;color:var(--ink-soft);}

/* ============ WHY CHOOSE — mesh cards ============ */
.why-section{position:relative;background:var(--navy-900);overflow:hidden;}
.why-section .section-head h2,.why-section .section-head .lede{color:var(--white);}
.why-section .section-head .lede{color:rgba(255,255,255,0.65);}
.why-card{
  position:relative;background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);padding:26px;
  transition:.3s;
}
.why-card:hover{background:rgba(255,255,255,0.07);border-color:rgba(212,175,55,0.5);transform:translateY(-4px);}
.why-card .icon-wrap{
  width:46px;height:46px;display:flex;align-items:center;justify-content:center;
  background:rgba(212,175,55,0.14);color:var(--gold-300);margin-bottom:18px;
}
.why-card .icon-wrap svg{width:22px;height:22px;}
.why-card h3{color:var(--white);font-size:16px;margin-bottom:8px;}
.why-card p{color:rgba(255,255,255,0.55);font-size:13.5px;}

/* ============ PROCESS TIMELINE ============ */
.process-list{display:flex;flex-direction:column;}
.process-item{display:grid;grid-template-columns:90px 1fr;gap:24px;padding:26px 0;border-top:1px solid var(--grey-100);}
.process-item:last-child{border-bottom:1px solid var(--grey-100);}
.process-item .pnum{font-family:var(--font-mono);font-size:28px;font-weight:600;color:var(--gold-500);}
.process-item h3{font-size:18px;margin-bottom:6px;}
.process-item p{color:var(--ink-soft);font-size:14.5px;max-width:60ch;}
@media (max-width:600px){.process-item{grid-template-columns:50px 1fr;}.process-item .pnum{font-size:20px;}}
.process-list.on-dark .process-item{border-color:rgba(255,255,255,0.12);}
.process-list.on-dark .process-item h3{color:var(--white);}
.process-list.on-dark .process-item p{color:rgba(255,255,255,0.6);}

/* ============ TESTIMONIALS ============ */
.testi-card{background:var(--grey-50);border:1px solid var(--grey-100);padding:28px;}
.testi-card .stars{color:var(--gold-500);font-size:15px;margin-bottom:14px;letter-spacing:2px;}
.testi-card p.quote{font-size:15px;color:var(--ink);margin-bottom:20px;}
.testi-card .who{display:flex;align-items:center;gap:12px;}
.testi-card .avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--royal-700),var(--teal-600));color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-family:var(--font-display);}
.testi-card .who b{display:block;font-size:14px;}
.testi-card .who span{font-size:12.5px;color:var(--ink-faint);}
.placeholder-tag{display:inline-block;margin-top:14px;font-family:var(--font-mono);font-size:10.5px;color:var(--ink-faint);letter-spacing:0.06em;}

/* ============ FAQ ACCORDION ============ */
.faq-item{border-bottom:1px solid var(--grey-100);}
.faq-q{
  width:100%;text-align:left;background:none;border:0;padding:22px 4px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-family:var(--font-display);font-weight:600;font-size:16.5px;color:var(--navy-900);
}
.faq-q svg{width:20px;height:20px;flex-shrink:0;transition:transform .3s;color:var(--gold-600);}
.faq-item.open .faq-q svg{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-item.open .faq-a{max-height:400px;}
.faq-a p{padding:0 4px 22px;color:var(--ink-soft);font-size:14.5px;max-width:70ch;}

/* ============ CTA BAND ============ */
.cta-band{
  position:relative;overflow:hidden;
  background:linear-gradient(120deg,var(--navy-950),var(--royal-700) 130%);
  padding:70px 0;
}
.cta-band .inner{display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;position:relative;z-index:1;}
.cta-band h2{color:var(--white);font-size:clamp(24px,3vw,34px);margin-bottom:8px;}
.cta-band p{color:rgba(255,255,255,0.7);}
.cta-band .actions{display:flex;gap:14px;flex-wrap:wrap;}

/* ============ FOOTER ============ */
.site-footer{background:var(--navy-950);color:rgba(255,255,255,0.65);padding:72px 0 0;position:relative;overflow:hidden;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;position:relative;z-index:1;}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-grid h4{color:var(--white);font-size:14px;letter-spacing:0.04em;margin-bottom:18px;font-family:var(--font-mono);text-transform:uppercase;}
.footer-grid ul li{margin-bottom:11px;font-size:14px;}
.footer-grid ul li a:hover{color:var(--gold-300);}
.footer-brand img{height:44px;margin-bottom:16px;}
.footer-brand p{font-size:14px;max-width:32ch;margin-bottom:18px;}
.footer-tag{font-family:var(--font-mono);font-size:12px;color:var(--gold-300);letter-spacing:0.1em;text-transform:uppercase;}
.footer-social{display:flex;gap:10px;margin-top:20px;}
.footer-social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;}
.footer-social a svg{width:17px;height:17px;}
.footer-bottom{
  margin-top:56px;padding:24px 0;border-top:1px solid rgba(255,255,255,0.1);
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
  font-size:13px;position:relative;z-index:1;
}
.footer-bottom .legal-links{display:flex;gap:18px;}

/* ============ FLOATING MOBILE ACTIONS ============ */
.floating-actions{
  position:fixed;right:20px;bottom:96px;z-index:800;
  display:flex;flex-direction:column;gap:12px;
}
.fab{
  width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px -6px rgba(10,27,63,0.4);
}
.fab.wa{background:#25d366;color:var(--white);}
.fab.call{background:var(--gold-500);color:var(--navy-950);}
.fab svg{width:24px;height:24px;}
@media (min-width:761px){.floating-actions{bottom:32px;}}

.mobile-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:850;
  display:none;
  background:var(--navy-950);border-top:1px solid rgba(212,175,55,0.3);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  gap:8px;
}
.mobile-bar a{
  flex:1;display:flex;flex-direction:column;align-items:center;gap:4px;
  color:var(--white);font-size:11px;font-weight:600;padding:8px 4px;border-radius:10px;
}
.mobile-bar a svg{width:20px;height:20px;}
.mobile-bar a.wa{color:#25d366;}
.mobile-bar a.quote{background:linear-gradient(135deg,var(--gold-300),var(--gold-600));color:var(--navy-950);}
@media (max-width:760px){
  .mobile-bar{display:flex;}
  .floating-actions{display:none;}
  body{padding-bottom:74px;}
}

/* ============ SCROLL REVEAL ============ */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);}
.reveal.in{opacity:1;transform:translateY(0);}
.reveal-stagger > *{opacity:0;transform:translateY(24px);transition:opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);}
.reveal-stagger.in > *{opacity:1;transform:translateY(0);}
.reveal-stagger.in > *:nth-child(1){transition-delay:.03s;}
.reveal-stagger.in > *:nth-child(2){transition-delay:.09s;}
.reveal-stagger.in > *:nth-child(3){transition-delay:.15s;}
.reveal-stagger.in > *:nth-child(4){transition-delay:.21s;}
.reveal-stagger.in > *:nth-child(5){transition-delay:.27s;}
.reveal-stagger.in > *:nth-child(6){transition-delay:.33s;}
.reveal-stagger.in > *:nth-child(7){transition-delay:.39s;}
.reveal-stagger.in > *:nth-child(8){transition-delay:.45s;}

/* ============ BREADCRUMB ============ */
.breadcrumb{background:var(--grey-50);border-bottom:1px solid var(--grey-100);padding:16px 0;}
.breadcrumb ol{display:flex;gap:8px;align-items:center;flex-wrap:wrap;font-size:13px;color:var(--ink-faint);}
.breadcrumb a{color:var(--ink-soft);}
.breadcrumb a:hover{color:var(--royal-700);}
.breadcrumb li:not(:last-child)::after{content:"/";margin-left:8px;color:var(--grey-200);}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero{
  position:relative;overflow:hidden;
  background:radial-gradient(120% 140% at 85% 0%, var(--navy-800) 0%, var(--navy-950) 60%);
  padding:64px 0 76px;
}
.page-hero .eyebrow{margin-bottom:16px;}
.page-hero h1{color:var(--white);font-size:clamp(30px,4.4vw,48px);max-width:820px;}
.page-hero p.lede{color:rgba(255,255,255,0.7);margin-top:16px;}

/* ============ FORMS ============ */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:640px){.form-grid{grid-template-columns:1fr;}}
.field{display:flex;flex-direction:column;gap:8px;}
.field.full{grid-column:1/-1;}
.field label{font-size:13px;font-weight:600;color:var(--ink);}
.field input,.field select,.field textarea{
  border:1.5px solid var(--grey-200);padding:13px 15px;font-size:14.5px;
  font-family:var(--font-body);background:var(--white);color:var(--ink);
  border-radius:8px;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--royal-700);outline:none;}
.field textarea{resize:vertical;min-height:110px;}

/* ============ GALLERY ============ */
.filter-bar{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:36px;}
.filter-chip{
  padding:9px 18px;border:1.5px solid var(--grey-200);font-size:13.5px;font-weight:600;
  border-radius:100px;color:var(--ink-soft);background:var(--white);transition:.2s;
}
.filter-chip:hover{border-color:var(--royal-700);color:var(--royal-700);}
.filter-chip.active{background:var(--navy-900);border-color:var(--navy-900);color:var(--white);}
.masonry{columns:4 220px;column-gap:16px;}
.masonry .gitem{break-inside:avoid;margin-bottom:16px;overflow:hidden;position:relative;cursor:zoom-in;border-radius:var(--radius-sm);}
.masonry .gitem svg,.masonry .gitem img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .4s;}
.masonry .gitem:hover svg,.masonry .gitem:hover img{transform:scale(1.05);}
.masonry .gitem .glabel{
  position:absolute;left:0;right:0;bottom:0;padding:14px;
  background:linear-gradient(0deg,rgba(6,15,36,0.85),transparent);
  color:var(--white);font-size:12.5px;font-weight:600;opacity:0;transition:.2s;
}
.masonry .gitem:hover .glabel{opacity:1;}

/* ============ BEFORE/AFTER SLIDER ============ */
.ba-slider{position:relative;aspect-ratio:16/10;overflow:hidden;user-select:none;}
.ba-slider .ba-before,.ba-slider .ba-after{position:absolute;inset:0;}
.ba-slider .ba-before img,.ba-slider .ba-after img{width:100%;height:100%;object-fit:cover;display:block;}
.ba-slider .ba-after{clip-path:inset(0 0 0 50%);}
.ba-slider .ba-handle{
  position:absolute;top:0;bottom:0;left:50%;width:3px;background:var(--gold-500);
  cursor:ew-resize;transform:translateX(-50%);
}
.ba-slider .ba-handle::after{
  content:"⟷";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:44px;height:44px;background:var(--gold-500);color:var(--navy-950);border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:16px;box-shadow:var(--shadow-lift);
}
.ba-label{position:absolute;top:14px;font-family:var(--font-mono);font-size:11px;letter-spacing:0.08em;color:var(--white);background:rgba(6,15,36,0.6);padding:6px 12px;border-radius:100px;}
.ba-label.left{left:14px;}
.ba-label.right{right:14px;}

/* ============ SERVICE FINDER ============ */
.finder{background:var(--grey-50);border:1px solid var(--grey-100);padding:40px;}
.finder-options{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:24px;}
@media (max-width:760px){.finder-options{grid-template-columns:repeat(2,1fr);}}
.finder-opt{
  background:var(--white);border:1.5px solid var(--grey-200);padding:20px 14px;text-align:center;
  transition:.2s;
}
.finder-opt:hover,.finder-opt.selected{border-color:var(--gold-500);box-shadow:0 8px 20px -8px rgba(212,175,55,0.5);}
.finder-opt svg{width:28px;height:28px;color:var(--royal-700);margin:0 auto 10px;}
.finder-opt span{font-size:13px;font-weight:600;}
.finder-result{margin-top:26px;padding-top:26px;border-top:1px dashed var(--grey-200);display:none;}
.finder-result.show{display:block;}

/* ============ BADGES / TAGS ============ */
.badge{display:inline-flex;align-items:center;gap:6px;background:var(--teal-100);color:var(--teal-600);font-size:12px;font-weight:700;padding:5px 12px;border-radius:100px;}
.badge.gold{background:rgba(212,175,55,0.14);color:var(--gold-600);}

/* Utility */
.mt-8{margin-top:8px;}.mt-16{margin-top:16px;}.mt-24{margin-top:24px;}.mt-32{margin-top:32px;}.mt-48{margin-top:48px;}
.text-center{text-align:center;}
.flex{display:flex;}.items-center{align-items:center;}.gap-12{gap:12px;}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}

.watermark {
  font-size: 0.85rem;
  color: #a0a0a0; /* Subtle grey color */
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.watermark a {
  color: #a0a0a0;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.watermark a:hover {
  color: #ffffff; /* Brightens up when hovered (adjust based on your footer background) */
  text-decoration: underline;
}