/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary:      #0B6F7D;
  --primary-dark: #064650;
  --primary-soft: #EAF8FA;
  --accent:       #D81F3C;
  --gold:         #C69A58;
  --ink:          #17333B;
  --muted:        #5E7480;
  --line:         #DDECEF;
  --bg:           #F7FBFC;
  --white:        #FFFFFF;
  --shadow:       0 18px 50px rgba(6,70,80,.10);
  --shadow-md:    0 10px 32px rgba(6,70,80,.08);
  --radius:       22px;
  --radius-sm:    14px;
  --te: var(--primary); --td: var(--primary-dark);
  --cr: var(--primary-soft); --go: var(--gold);
  --nv: var(--primary-dark); --tx: var(--ink); --tl: var(--muted);

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  82px;

  /* Section padding shorthand */
  --sec-pad: var(--sp-xl) clamp(18px, 5vw, 70px);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.sw { max-width: 1180px; margin: 0 auto; }

/* ─── FOCUS ACCESSIBILITY ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-height: 82px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(6,70,80,.05);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 8px 30px rgba(6,70,80,.10); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 58px; width: auto; max-width: 210px;
  object-fit: contain; filter: none !important;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  display: inline-flex; align-items: center; min-height: 42px;
  padding: 9px 15px; border-radius: 999px; text-decoration: none;
  color: var(--muted); font-size: .80rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s, background .2s, transform .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-links .nav-book {
  background: var(--primary) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 8px 20px rgba(11,111,125,.22);
}
.nav-links .nav-book:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11,111,125,.28);
}

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 12px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.hamburger:hover { border-color: var(--primary); background: var(--primary-soft); }
.hamburger span {
  width: 22px; height: 2px; background: var(--primary-dark);
  display: block; border-radius: 5px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SCROLL-REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 82px); position: relative;
  display: flex; align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #F8FEFF 0%, #EAF8FA 55%, #FFFFFF 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -130px; top: -140px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,111,125,.15), rgba(11,111,125,0) 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: -150px; bottom: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,31,60,.07), rgba(216,31,60,0) 70%);
  pointer-events: none;
}
.hgrid {
  position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-in {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 70px);
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}

/* Hero animations */
.hero-animate .h-pill    { animation: fadeUp .55s ease both .10s; }
.hero-animate .hero-h    { animation: fadeUp .55s ease both .25s; }
.hero-animate .hero-desc { animation: fadeUp .55s ease both .40s; }
.hero-animate .hero-btns { animation: fadeUp .55s ease both .52s; }
.hero-animate .hero-tags { animation: fadeUp .55s ease both .62s; }
.hero-animate .hero-r    { animation: fadeUp .55s ease both .35s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── EYEBROW / PILL ────────────────────────────────────────── */
.h-pill, .ey {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--primary); font-size: .76rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px;
}
.h-pill::before, .ey::before {
  content: ''; width: 28px; height: 2px;
  background: var(--accent); border-radius: 4px; flex-shrink: 0;
}

/* ─── HEADINGS ──────────────────────────────────────────────── */
.hero-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.04; font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -.04em; margin-bottom: 24px;
}
.hero-h em     { color: var(--primary); font-style: italic; }
.hero-h strong { color: var(--accent); font-weight: 700; }

.hero-desc {
  max-width: 620px; color: var(--muted);
  font-size: 1.06rem; line-height: 1.9; margin-bottom: 30px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.htag {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 13px;
  color: var(--muted); font-size: .78rem; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}
.htag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.hero-r { display: grid; gap: 18px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-g, .btn-ghost, .fsub {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 50px; padding: 13px 26px;
  border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .22s, transform .18s, box-shadow .22s;
  border: 0; cursor: pointer; line-height: 1;
}
.btn-g, .fsub {
  background: var(--primary); color: #fff;
  box-shadow: 0 12px 28px rgba(11,111,125,.22);
}
.btn-g:hover, .fsub:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11,111,125,.28);
}
.btn-ghost {
  background: #fff; color: var(--primary);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 14px rgba(6,70,80,.06);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

/* ─── HERO VISUAL / OV-VIS / ABOUT-VIS ─────────────────────── */
.hero-logo-box, .ov-vis, .about-vis {
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: var(--radius);
  padding: 40px; display: flex; align-items: center;
  justify-content: center; min-height: 300px;
  position: relative; overflow: hidden;
  transition: box-shadow .3s;
}
.hero-logo-box:hover, .ov-vis:hover { box-shadow: 0 24px 60px rgba(6,70,80,.14); }
.hero-logo-box img, .ov-vis img, .about-vis img {
  width: min(420px, 100%); height: auto; filter: none !important;
}

/* ─── STATS ─────────────────────────────────────────────────── */
.hstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hs, .ts {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(6,70,80,.06);
  transition: transform .2s, box-shadow .2s;
}
.hs:hover, .ts:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hs-n, .ts-n {
  display: block; font-family: 'Playfair Display', serif;
  color: var(--accent); font-size: 2rem;
  font-weight: 700; line-height: 1;
}
.hs-l, .ts-l {
  display: block; margin-top: 8px; color: var(--muted);
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; font-weight: 700;
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px clamp(18px, 5vw, 70px);
}
.trust-in {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.ti {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 16px; padding: 12px 14px;
  display: flex; align-items: center; gap: 9px;
  transition: border-color .2s, transform .2s, background .2s;
}
.ti:hover { border-color: var(--primary); transform: translateY(-2px); background: var(--primary-soft); }
.ti-ic { font-size: 1.1rem; flex-shrink: 0; }
.ti-tx { font-size: .76rem; color: var(--ink); font-weight: 600; line-height: 1.35; }

/* ─── SECTION SPACING & BACKGROUNDS ────────────────────────── */
.overview,
.services,
.why,
.vals,
.infra,
.mission-sec,
.team-sec,
.affiliations,
.contact-sec,
.t-intro {
  padding: var(--sec-pad);
}
.services,
.vals,
.mission-sec,
.contact-sec,
.t-intro { background: var(--bg); }

/* ─── SHARED HEADING / DIVIDER ──────────────────────────────── */
.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.14; color: var(--primary-dark);
  font-weight: 700; margin-bottom: 14px;
  letter-spacing: -.025em;
}
.sh em { color: var(--primary); font-style: italic; }
.gr {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 5px; margin: 0 0 24px;
}

/* ─── OVERVIEW / ABOUT / CONTACT GRIDS ─────────────────────── */
.ov-grid, .about-grid, .contact-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 46px; align-items: center;
}
.ov-tx p, .about-tx p, .t-intro p, .tech-tx p, .ci p {
  color: var(--muted); font-size: 1rem; line-height: 1.9; margin-bottom: 14px;
}
.ov-badge, .about-tag {
  position: absolute; right: 22px; bottom: 22px;
  background: var(--accent); color: #fff; border-radius: 999px;
  padding: 9px 16px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  box-shadow: 0 6px 18px rgba(216,31,60,.28);
}

/* ─── SPEC / CHECK / TECH LISTS ─────────────────────────────── */
.spec-list, .check-list, .tech-list { display: grid; gap: 9px; margin-top: 22px; }
.sl-item, .cl-item, .tl-item, .t-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--ink); font-weight: 600; font-size: .93rem;
  transition: border-color .2s, transform .15s, background .2s;
}
.sl-item:hover, .tl-item:hover {
  border-color: var(--primary); transform: translateX(4px);
  background: var(--primary-soft);
}
.sl-dot, .tl-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; margin-top: 8px; flex: 0 0 auto;
}
.cl-check, .t-ic { color: var(--primary); font-weight: 800; }

/* ─── SERVICE GRID ──────────────────────────────────────────── */
.svc-grid,
.why-grid,
.val-grid,
.infra-grid,
.aff-grid,
.team-grid,
.t-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 34px;
}
.svc-card, .wcard, .witem, .vcard, .icard, .acard, .tcard, .mcard, .cf, .ci {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(6,70,80,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.svc-card { cursor: pointer; }
.svc-card:hover, .wcard:hover, .witem:hover, .vcard:hover,
.icard:hover, .acard:hover, .tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(11,111,125,.24);
}
.svc-top {
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 2rem;
  transition: background .3s;
}
.svc-card:hover .svc-top {
  background: linear-gradient(135deg, var(--primary-dark), #041f26);
}
.svc-body, .wcard, .witem, .vcard, .icard, .acard, .tc-body, .ci, .cf {
  padding: 22px;
}
.svc-body h3, .wcard h4, .witem h4, .vcard h3, .icard h4, .acard h4, .mcard h3, .ci h3, .cf h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 1.2rem; line-height: 1.25; margin-bottom: 9px;
}
.svc-body p, .wcard p, .witem p, .vcard p, .icard p, .acard p, .tc-body p {
  color: var(--muted); font-size: .91rem; line-height: 1.75;
}
.svc-lnk {
  display: inline-flex; margin-top: 14px; color: var(--primary);
  font-size: .78rem; text-transform: uppercase; text-decoration: none;
  font-weight: 800; letter-spacing: .1em;
  transition: letter-spacing .2s, color .2s;
}
.svc-lnk:hover { letter-spacing: .18em; }
.wc-ic, .wi-ic, .vc-ic, .ic-ic, .ac-ic {
  font-size: 1.9rem; display: block; margin-bottom: 12px;
}

/* ─── WHY SECTION ───────────────────────────────────────────── */
.why { background: #fff; }
.why .wcard { padding: 24px; }

/* ─── TEAM SECTION — DARK ───────────────────────────────────── */
.team-sec {
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
  /* Fix: ensure correct padding without conflicts */
  padding: var(--sec-pad);
}
.team-sec .ey   { color: rgba(255,255,255,.72); }
.team-sec .ey::before { background: var(--gold); }
.team-sec .sh   { color: #fff; }
.team-sec .sh em { color: var(--gold); }
.team-sec .gr   { background: linear-gradient(90deg, var(--gold), var(--accent)); margin: 0 auto 22px; }

.team-intro {
  text-align: center; max-width: 760px; margin: 0 auto 44px;
}
.team-intro p { color: rgba(255,255,255,.68); line-height: 1.85; }

.team-duo {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.team-duo .tcard {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
  border-radius: var(--radius); overflow: hidden;
}
.team-duo .tcard:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(0,0,0,.20);
}
.team-duo .tc-top {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 36px 28px 28px; text-align: center;
}
.team-duo .tc-top h3 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.35rem; margin-bottom: 6px;
}
.team-duo .tc-deg  {
  display: block; color: var(--gold);
  font-weight: 700; font-size: .82rem; margin-bottom: 4px;
}
.team-duo .tc-role {
  display: block; color: rgba(255,255,255,.62);
  font-weight: 600; font-size: .80rem; margin-bottom: 14px;
}
.team-duo .tc-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
  justify-content: center; margin-top: 12px;
}
.team-duo .etag {
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.85);
  padding: 5px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
}
.team-duo .tc-body { padding: 26px 28px; }
.team-duo .tc-body p { color: rgba(255,255,255,.68); font-size: .93rem; line-height: 1.8; }
.team-duo .svc-lnk { color: var(--gold); }
.team-duo .svc-lnk:hover { color: #fff; }

/* Avatar */
.avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 3px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2.6rem; overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,.22);
  transition: border-color .25s;
}
.tcard:hover .avatar { border-color: var(--gold); }
.avatar img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center; border-radius: 50%; display: block;
}

/* ─── TECH SECTION ──────────────────────────────────────────── */
.tech {
  padding: var(--sec-pad);
  background: var(--bg); color: var(--ink);
}
.tech-in {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 46px; align-items: start;
}
.tech h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; margin-bottom: 15px; color: var(--primary-dark);
}
.tech h2 em { color: var(--primary); font-style: italic; }
.tech .ey { color: var(--primary); }
.tech-tx p { color: var(--muted); }
.tech-list { display: grid; gap: 9px; margin-top: 22px; }
.tech-list .tl-item { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.tech-list .tl-item:hover { border-color: var(--primary); transform: translateX(4px); background: var(--primary-soft); }
.tech-list .tl-dot { background: var(--accent); }
.tech-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; align-content: start;
}
.tech-stats .ts {
  background: #fff; border: 1px solid var(--line);
  padding: 28px 16px;
  box-shadow: 0 6px 20px rgba(6,70,80,.06);
}
.tech-stats .ts-n { color: var(--accent); }
.tech-stats .ts-l { color: var(--muted); }

/* ─── CTA — DARK ────────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 72px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px; color: #fff;
}
.cta p { color: rgba(255,255,255,.72); margin-bottom: 18px; }
.cta-phone{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 26px;

  border-radius: 999px;
  text-decoration: none;

  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;

  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.8);

  transition: background .22s, transform .18s, box-shadow .22s;
  cursor: pointer;
}

.cta-phone:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
/* ─── PAGE HERO HEADER ──────────────────────────────────────── */
.ph {
  min-height: 300px; display: flex; align-items: flex-end;
  padding: 120px clamp(18px, 5vw, 70px) 52px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
}
.ph::after {
  content: ''; position: absolute; right: -80px; bottom: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.ph-in {
  max-width: 1180px; width: 100%; margin: 0 auto; position: relative; z-index: 1;
}
.ph h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.1; color: #fff;
}
.ph h1 em { color: var(--gold); font-style: italic; }
.bc { color: rgba(255,255,255,.65); font-size: .86rem; margin-bottom: 8px; }
.bc a { text-decoration: none; color: #fff; }
.bc a:hover { color: var(--gold); }

/* ─── ABOUT / T-SECTIONS ────────────────────────────────────── */
.about-body { padding: var(--sec-pad); }
.t-section {
  padding: 70px clamp(18px, 5vw, 70px);
  background: #fff; border-bottom: 1px solid var(--line);
}
.t-section:nth-of-type(even) { background: var(--bg); }
.t-sec-head {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 22px; align-items: flex-start;
}
.t-sec-icon {
  width: 90px; height: 90px; border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff; flex-shrink: 0;
}
.t-sec-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--primary-dark); line-height: 1.15; margin-bottom: 10px;
}
.t-sec-info p { color: var(--muted); max-width: 900px; }
.t-list-grid { grid-template-columns: repeat(3, 1fr); }
.t-cta {
  padding: 72px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  text-align: center; color: var(--primary-dark);
}
.t-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 10px;
}
.t-cta p { color: var(--muted); margin-bottom: 20px; }

/* ─── TEAM (team.php grid fallback) ─────────────────────────── */
.tc-top {
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  padding: 28px; text-align: center; border-bottom: 1px solid var(--line);
}
.tc-top h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--primary-dark); }
.tc-deg   { color: var(--primary); font-weight: 700; font-size: .82rem; }
.tc-role  { display: block; color: var(--primary); font-weight: 700; font-size: .82rem; margin-bottom: 10px; }
.tc-tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.etag {
  background: var(--primary-soft); color: var(--primary);
  padding: 5px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700;
}

/* ─── MISSION / CONTACT ─────────────────────────────────────── */
.mission-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 30px;
}
.mcard { padding: 28px; }
.contact-grid { align-items: start; }
.citem {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.c-ic {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center; flex: 0 0 42px;
}
.c-tx strong { display: block; color: var(--primary-dark); margin-bottom: 4px; }
.c-tx span, .c-tx a { color: var(--muted); text-decoration: none; }
.c-tx a:hover { color: var(--primary); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.hrow { background: var(--bg); border-radius: 12px; padding: 10px; color: var(--muted); font-size: .85rem; }

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 7px;
}
input, select, textarea {
  width: 100%; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font: inherit; color: var(--ink); background: #fff;
  outline: 0; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,111,125,.10);
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .7; }
.map-sec iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ─── PROCESS BAR ───────────────────────────────────────────── */
.process-bar {
  padding: var(--sec-pad);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff; position: relative; overflow: hidden;
}
.process-bar::before {
  content: ''; position: absolute; left: -120px; top: -140px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.process-bar .sw { position: relative; z-index: 1; }
.pb-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 34px;
}
.pb-step {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  transition: background .25s, transform .25s;
}
.pb-step:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.pb-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px; font-size: .95rem;
}
.pb-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 8px;
}
.pb-step p { color: rgba(255,255,255,.70); font-size: .91rem; line-height: 1.75; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #062F37;
  padding: 56px clamp(18px, 5vw, 70px) 26px;
}
.footer-logo { min-width: 0; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.25fr 1.5fr; gap: 30px;
}
.footer-brand img {
  height: 72px; width: auto; max-width: 220px;
  object-fit: contain; filter: none !important;
  background: #fff; border-radius: 14px; padding: 8px; margin-bottom: 14px;
}
.footer-brand p,
.footer-col a,
.footer-col address {
  color: rgba(255,255,255,.65); font-size: .91rem;
  line-height: 1.8; text-decoration: none; font-style: normal;
}
.footer-col h4 {
  color: var(--gold); font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1180px; margin: 28px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; color: rgba(255,255,255,.44); font-size: .80rem;
}

/* ─── FLOATING CALL BUTTON ──────────────────────────────────── */
.float-call {
  position: fixed; right: 22px; bottom: 22px;
  width: 56px; height: 56px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.25rem; z-index: 990;
  box-shadow: 0 12px 28px rgba(216,31,60,.30);
  animation: pulse 2.2s infinite; transition: transform .2s, box-shadow .2s;
  border: 0; cursor: pointer;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 16px 36px rgba(216,31,60,.40); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(216,31,60,.30); }
  50%       { box-shadow: 0 12px 28px rgba(216,31,60,.30), 0 0 0 12px rgba(216,31,60,.10); }
}
.float-call::after {
  content: attr(data-tip);
  position: absolute;
  right: 66px;
  background: var(--ink);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .18s, transform .18s;
}
.float-call:hover::after { opacity: 1; transform: translateX(0); }
 
@media (max-width: 640px) {
  .float-call { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .float-call::after { display: none; }
}
/* ─── RESPONSIVE: 1100px ────────────────────────────────────── */
@media (max-width: 1100px) {
  .trust-in { grid-template-columns: repeat(3, 1fr); }
  .svc-grid,
  .why-grid,
  .val-grid,
  .infra-grid,
  .aff-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .t-list-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .pb-steps      { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RESPONSIVE: 900px ─────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { min-height: 72px; }
  .nav-logo img { height: 50px; max-width: 180px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%;
    left: 12px; right: 12px;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow); border-radius: 18px;
    padding: 12px; flex-direction: column;
    align-items: stretch; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; }

  .hero { min-height: auto; padding: 52px 0; }
  .hero-in,
  .ov-grid,
  .about-grid,
  .contact-grid,
  .tech-in { grid-template-columns: 1fr; gap: 28px; }
  .hero-r { order: -1; }
  .hero-logo-box, .ov-vis, .about-vis { min-height: auto; padding: 28px; }
  .hero-logo-box img, .ov-vis img, .about-vis img { max-width: 320px; margin: 0 auto; }
  .hstats { grid-template-columns: repeat(3, 1fr); }
  .ph { padding-top: 95px; }
  .frow, .mission-grid { grid-template-columns: 1fr; }
  .tech-stats { grid-template-columns: repeat(2, 1fr); }
  .team-duo { grid-template-columns: 1fr; max-width: 480px; }
}

/* ─── RESPONSIVE: 640px ─────────────────────────────────────── */
@media (max-width: 640px) {
  body { font-size: 15px; }

  .site-nav { padding: 10px 14px; min-height: 66px; }
  .nav-logo img { height: 44px; max-width: 155px; }

  /* Ensure consistent side padding on all sections */
  .hero-in,
  .overview,
  .services,
  .why,
  .vals,
  .infra,
  .mission-sec,
  .team-sec,
  .affiliations,
  .contact-sec,
  .t-intro,
  .about-body,
  .t-section,
  .tech,
  .cta,
  .ph,
  footer,
  .process-bar,
  .t-cta { padding-left: 16px; padding-right: 16px; }

  .hero-h { font-size: 2.55rem; }
  .hero-btns .btn-g,
  .hero-btns .btn-ghost { width: 100%; }

  .trust-in,
  .svc-grid,
  .why-grid,
  .val-grid,
  .infra-grid,
  .aff-grid,
  .team-grid,
  .t-list-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hstats,
  .tech-stats,
  .hours-grid { grid-template-columns: repeat(2, 1fr); }

  /* Fix: was collapsing to 1 column on very small screens */
  @supports not (gap: 10px) {
    .hstats > *, .tech-stats > * { margin-bottom: 12px; }
  }

  .t-sec-head { grid-template-columns: 1fr; }
  .t-sec-icon { width: 70px; height: 70px; font-size: 1.9rem; }

  .footer-bottom { flex-direction: column; gap: 6px; }

  .float-call { right: 14px; bottom: 14px; width: 50px; height: 50px; }

  /* Fix: badges lose absolute positioning on small screens */
  .ov-badge, .about-tag {
    position: static; margin-top: 18px;
    display: inline-flex;
  }

  .hero-logo-box, .ov-vis, .about-vis { padding: 20px; }
  .hero-logo-box img, .ov-vis img, .about-vis img { max-width: 260px; margin: 0 auto; }

  .ti { padding: 10px 12px; }
  .ti-tx { font-size: .73rem; }

  .ph { min-height: 240px; padding-top: 85px; }

  .pb-steps { grid-template-columns: 1fr; }
  .pb-step { padding: 20px 16px; }

  .team-duo { grid-template-columns: 1fr; max-width: 100%; }
  .team-duo .tc-top { padding: 28px 20px 22px; }
  .team-duo .tc-body { padding: 20px; }
}

/* ─── RESPONSIVE: 380px (very small) ───────────────────────── */
@media (max-width: 380px) {
  .hstats,
  .tech-stats { grid-template-columns: 1fr; }
  .hero-h { font-size: 2.2rem; }
  .svc-top { height: 78px; font-size: 1.7rem; }
}




/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary:      #0B6F7D;
  --primary-dark: #064650;
  --primary-soft: #EAF8FA;
  --accent:       #D81F3C;
  --gold:         #C69A58;
  --ink:          #17333B;
  --muted:        #5E7480;
  --line:         #DDECEF;
  --bg:           #F7FBFC;
  --white:        #FFFFFF;
  --shadow:       0 18px 50px rgba(6,70,80,.10);
  --shadow-md:    0 10px 32px rgba(6,70,80,.08);
  --radius:       22px;
  --radius-sm:    14px;
  --te: var(--primary); --td: var(--primary-dark);
  --cr: var(--primary-soft); --go: var(--gold);
  --nv: var(--primary-dark); --tx: var(--ink); --tl: var(--muted);

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  82px;

  /* Section padding shorthand */
  --sec-pad: var(--sp-xl) clamp(18px, 5vw, 70px);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.sw { max-width: 1180px; margin: 0 auto; }

/* ─── FOCUS ACCESSIBILITY ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-height: 82px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(6,70,80,.05);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 8px 30px rgba(6,70,80,.10); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 58px; width: auto; max-width: 210px;
  object-fit: contain; filter: none !important;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  display: inline-flex; align-items: center; min-height: 42px;
  padding: 9px 15px; border-radius: 999px; text-decoration: none;
  color: var(--muted); font-size: .80rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s, background .2s, transform .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-links .nav-book {
  background: var(--primary) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 8px 20px rgba(11,111,125,.22);
}
.nav-links .nav-book:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11,111,125,.28);
}

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 12px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.hamburger:hover { border-color: var(--primary); background: var(--primary-soft); }
.hamburger span {
  width: 22px; height: 2px; background: var(--primary-dark);
  display: block; border-radius: 5px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SCROLL-REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 82px); position: relative;
  display: flex; align-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #F8FEFF 0%, #EAF8FA 55%, #FFFFFF 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -130px; top: -140px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,111,125,.15), rgba(11,111,125,0) 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: -150px; bottom: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,31,60,.07), rgba(216,31,60,0) 70%);
  pointer-events: none;
}
.hgrid {
  position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-in {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 70px);
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}

/* Hero animations */
.hero-animate .h-pill    { animation: fadeUp .55s ease both .10s; }
.hero-animate .hero-h    { animation: fadeUp .55s ease both .25s; }
.hero-animate .hero-desc { animation: fadeUp .55s ease both .40s; }
.hero-animate .hero-btns { animation: fadeUp .55s ease both .52s; }
.hero-animate .hero-tags { animation: fadeUp .55s ease both .62s; }
.hero-animate .hero-r    { animation: fadeUp .55s ease both .35s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── EYEBROW / PILL ────────────────────────────────────────── */
.h-pill, .ey {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--primary); font-size: .76rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px;
}
.h-pill::before, .ey::before {
  content: ''; width: 28px; height: 2px;
  background: var(--accent); border-radius: 4px; flex-shrink: 0;
}

/* ─── HEADINGS ──────────────────────────────────────────────── */
.hero-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 1.04; font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -.04em; margin-bottom: 24px;
}
.hero-h em     { color: var(--primary); font-style: italic; }
.hero-h strong { color: var(--accent); font-weight: 700; }

.hero-desc {
  max-width: 620px; color: var(--muted);
  font-size: 1.06rem; line-height: 1.9; margin-bottom: 30px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.htag {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 13px;
  color: var(--muted); font-size: .78rem; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}
.htag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.hero-r { display: grid; gap: 18px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-g, .btn-ghost, .fsub {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 50px; padding: 13px 26px;
  border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .22s, transform .18s, box-shadow .22s;
  border: 0; cursor: pointer; line-height: 1;
}

.btn-g, .fsub {
  background: var(--primary); color: #fff;
  box-shadow: 0 12px 28px rgba(11,111,125,.22);
}
.btn-g:hover, .fsub:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11,111,125,.28);
}
.btn-ghost {
  background: #fff; color: var(--primary);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 14px rgba(6,70,80,.06);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

/* ─── HERO VISUAL / OV-VIS / ABOUT-VIS ─────────────────────── */
.hero-logo-box, .ov-vis, .about-vis {
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: var(--radius);
  padding: 40px; display: flex; align-items: center;
  justify-content: center; min-height: 300px;
  position: relative; overflow: hidden;
  transition: box-shadow .3s;
}
.hero-logo-box:hover, .ov-vis:hover { box-shadow: 0 24px 60px rgba(6,70,80,.14); }
.hero-logo-box img, .ov-vis img, .about-vis img {
  width: min(420px, 100%); height: auto; filter: none !important;
}

/* ─── STATS ─────────────────────────────────────────────────── */
.hstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hs, .ts {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(6,70,80,.06);
  transition: transform .2s, box-shadow .2s;
}
.hs:hover, .ts:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hs-n, .ts-n {
  display: block; font-family: 'Playfair Display', serif;
  color: var(--accent); font-size: 2rem;
  font-weight: 700; line-height: 1;
}
.hs-l, .ts-l {
  display: block; margin-top: 8px; color: var(--muted);
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; font-weight: 700;
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px clamp(18px, 5vw, 70px);
}
.trust-in {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.ti {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 16px; padding: 12px 14px;
  display: flex; align-items: center; gap: 9px;
  transition: border-color .2s, transform .2s, background .2s;
}
.ti:hover { border-color: var(--primary); transform: translateY(-2px); background: var(--primary-soft); }
.ti-ic { font-size: 1.1rem; flex-shrink: 0; }
.ti-tx { font-size: .76rem; color: var(--ink); font-weight: 600; line-height: 1.35; }

/* ─── SECTION SPACING & BACKGROUNDS ────────────────────────── */
.overview,
.services,
.why,
.vals,
.infra,
.mission-sec,
.team-sec,
.affiliations,
.contact-sec,
.t-intro {
  padding: var(--sec-pad);
}
.services,
.vals,
.mission-sec,
.contact-sec,
.t-intro { background: var(--bg); }

/* ─── SHARED HEADING / DIVIDER ──────────────────────────────── */
.sh {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.14; color: var(--primary-dark);
  font-weight: 700; margin-bottom: 14px;
  letter-spacing: -.025em;
}
.sh em { color: var(--primary); font-style: italic; }
.gr {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 5px; margin: 0 0 24px;
}

/* ─── OVERVIEW / ABOUT / CONTACT GRIDS ─────────────────────── */
.ov-grid, .about-grid, .contact-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 46px; align-items: center;
}
.ov-tx p, .about-tx p, .t-intro p, .tech-tx p, .ci p {
  color: var(--muted); font-size: 1rem; line-height: 1.9; margin-bottom: 14px;
}
.ov-badge, .about-tag {
  position: absolute; right: 22px; bottom: 22px;
  background: var(--accent); color: #fff; border-radius: 999px;
  padding: 9px 16px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  box-shadow: 0 6px 18px rgba(216,31,60,.28);
}

/* ─── SPEC / CHECK / TECH LISTS ─────────────────────────────── */
.spec-list, .check-list, .tech-list { display: grid; gap: 9px; margin-top: 22px; }
.sl-item, .cl-item, .tl-item, .t-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--ink); font-weight: 600; font-size: .93rem;
  transition: border-color .2s, transform .15s, background .2s;
}
.sl-item:hover, .tl-item:hover {
  border-color: var(--primary); transform: translateX(4px);
  background: var(--primary-soft);
}
.sl-dot, .tl-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; margin-top: 8px; flex: 0 0 auto;
}
.cl-check, .t-ic { color: var(--primary); font-weight: 800; }

/* ─── SERVICE GRID ──────────────────────────────────────────── */
.svc-grid,
.why-grid,
.val-grid,
.infra-grid,
.aff-grid,
.team-grid,
.t-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 34px;
}
.svc-card, .wcard, .witem, .vcard, .icard, .acard, .tcard, .mcard, .cf, .ci {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(6,70,80,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.svc-card { cursor: pointer; }
.svc-card:hover, .wcard:hover, .witem:hover, .vcard:hover,
.icard:hover, .acard:hover, .tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(11,111,125,.24);
}
.svc-top {
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 2rem;
  transition: background .3s;
}
.svc-card:hover .svc-top {
  background: linear-gradient(135deg, var(--primary-dark), #041f26);
}
.svc-body, .wcard, .witem, .vcard, .icard, .acard, .tc-body, .ci, .cf {
  padding: 22px;
}
.svc-body h3, .wcard h4, .witem h4, .vcard h3, .icard h4, .acard h4, .mcard h3, .ci h3, .cf h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 1.2rem; line-height: 1.25; margin-bottom: 9px;
}
.svc-body p, .wcard p, .witem p, .vcard p, .icard p, .acard p, .tc-body p {
  color: var(--muted); font-size: .91rem; line-height: 1.75;
}
.svc-lnk {
  display: inline-flex; margin-top: 14px; color: var(--primary);
  font-size: .78rem; text-transform: uppercase; text-decoration: none;
  font-weight: 800; letter-spacing: .1em;
  transition: letter-spacing .2s, color .2s;
}
.svc-lnk:hover { letter-spacing: .18em; }
.wc-ic, .wi-ic, .vc-ic, .ic-ic, .ac-ic {
  font-size: 1.9rem; display: block; margin-bottom: 12px;
}

/* ─── WHY SECTION ───────────────────────────────────────────── */
.why { background: #fff; }
.why .wcard { padding: 24px; }

/* ─── TEAM SECTION — DARK ───────────────────────────────────── */
.team-sec {
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
  /* Fix: ensure correct padding without conflicts */
  padding: var(--sec-pad);
}
.team-sec .ey   { color: rgba(255,255,255,.72); }
.team-sec .ey::before { background: var(--gold); }
.team-sec .sh   { color: #fff; }
.team-sec .sh em { color: var(--gold); }
.team-sec .gr   { background: linear-gradient(90deg, var(--gold), var(--accent)); margin: 0 auto 22px; }

.team-intro {
  text-align: center; max-width: 760px; margin: 0 auto 44px;
}
.team-intro p { color: rgba(255,255,255,.68); line-height: 1.85; }

.team-duo {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.team-duo .tcard {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
  border-radius: var(--radius); overflow: hidden;
}
.team-duo .tcard:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(0,0,0,.20);
}
.team-duo .tc-top {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 36px 28px 28px; text-align: center;
}
.team-duo .tc-top h3 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.35rem; margin-bottom: 6px;
}
.team-duo .tc-deg  {
  display: block; color: var(--gold);
  font-weight: 700; font-size: .82rem; margin-bottom: 4px;
}
.team-duo .tc-role {
  display: block; color: rgba(255,255,255,.62);
  font-weight: 600; font-size: .80rem; margin-bottom: 14px;
}
.team-duo .tc-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
  justify-content: center; margin-top: 12px;
}
.team-duo .etag {
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.85);
  padding: 5px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
}
.team-duo .tc-body { padding: 26px 28px; }
.team-duo .tc-body p { color: rgba(255,255,255,.68); font-size: .93rem; line-height: 1.8; }
.team-duo .svc-lnk { color: var(--gold); }
.team-duo .svc-lnk:hover { color: #fff; }

/* Avatar */
.avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 3px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2.6rem; overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,.22);
  transition: border-color .25s;
}
.tcard:hover .avatar { border-color: var(--gold); }
.avatar img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center; border-radius: 50%; display: block;
}

/* ─── TEAM TRIO (3-column, team.php extra specialists) ──────── */
.team-trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 32px auto 0;
}
/* Inherit all dark-glass card styles from team-duo */
.team-trio .tcard {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
  border-radius: var(--radius); overflow: hidden;
}
.team-trio .tcard:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-7px);
  box-shadow: 0 28px 65px rgba(0,0,0,.20);
}
.team-trio .tc-top {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 32px 24px 24px; text-align: center;
}
.team-trio .tc-top h3 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.25rem; margin-bottom: 6px;
}
.team-trio .tc-deg  {
  display: block; color: var(--gold);
  font-weight: 700; font-size: .80rem; margin-bottom: 4px;
}
.team-trio .tc-role {
  display: block; color: rgba(255,255,255,.62);
  font-weight: 600; font-size: .78rem; margin-bottom: 14px;
}
.team-trio .tc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center; margin-top: 10px;
}
.team-trio .etag {
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.85);
  padding: 5px 10px; border-radius: 999px;
  font-size: .70rem; font-weight: 700;
}
.team-trio .tc-body { padding: 22px 24px; }
.team-trio .tc-body p { color: rgba(255,255,255,.68); font-size: .91rem; line-height: 1.8; }
.team-trio .svc-lnk { color: var(--gold); }
.team-trio .svc-lnk:hover { color: #fff; }

/* ─── TECH SECTION ──────────────────────────────────────────── */
.tech {
  padding: var(--sec-pad);
  background: var(--bg); color: var(--ink);
}
.tech-in {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 46px; align-items: start;
}
.tech h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; margin-bottom: 15px; color: var(--primary-dark);
}
.tech h2 em { color: var(--primary); font-style: italic; }
.tech .ey { color: var(--primary); }
.tech-tx p { color: var(--muted); }
.tech-list { display: grid; gap: 9px; margin-top: 22px; }
.tech-list .tl-item { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.tech-list .tl-item:hover { border-color: var(--primary); transform: translateX(4px); background: var(--primary-soft); }
.tech-list .tl-dot { background: var(--accent); }
.tech-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; align-content: start;
}
.tech-stats .ts {
  background: #fff; border: 1px solid var(--line);
  padding: 28px 16px;
  box-shadow: 0 6px 20px rgba(6,70,80,.06);
}
.tech-stats .ts-n { color: var(--accent); }
.tech-stats .ts-l { color: var(--muted); }

/* ─── CTA — DARK ────────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 72px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px; color: #fff;
}
.cta p { color: rgba(255,255,255,.72); margin-bottom: 18px; }
.cta-phone {
  display: inline-flex; margin: 0 0 24px;
  color: #fff; font-size: 1.4rem; font-weight: 800;
  text-decoration: none; letter-spacing: .02em;
  transition: opacity .2s;
}
.cta-phone:hover { opacity: .8; }

/* ─── PAGE HERO HEADER ──────────────────────────────────────── */
.ph {
  min-height: 300px; display: flex; align-items: flex-end;
  padding: 120px clamp(18px, 5vw, 70px) 52px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
}
.ph::after {
  content: ''; position: absolute; right: -80px; bottom: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.ph-in {
  max-width: 1180px; width: 100%; margin: 0 auto; position: relative; z-index: 1;
}
.ph h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.1; color: #fff;
}
.ph h1 em { color: var(--gold); font-style: italic; }
.bc { color: rgba(255,255,255,.65); font-size: .86rem; margin-bottom: 8px; }
.bc a { text-decoration: none; color: #fff; }
.bc a:hover { color: var(--gold); }

/* ─── ABOUT / T-SECTIONS ────────────────────────────────────── */
.about-body { padding: var(--sec-pad); }
.t-section {
  padding: 70px clamp(18px, 5vw, 70px);
  background: #fff; border-bottom: 1px solid var(--line);
}
.t-section:nth-of-type(even) { background: var(--bg); }
.t-sec-head {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 22px; align-items: flex-start;
}
.t-sec-icon {
  width: 90px; height: 90px; border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff; flex-shrink: 0;
}
.t-sec-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--primary-dark); line-height: 1.15; margin-bottom: 10px;
}
.t-sec-info p { color: var(--muted); max-width: 900px; }
.t-list-grid { grid-template-columns: repeat(3, 1fr); }
.t-cta {
  padding: 72px clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  text-align: center; color: var(--primary-dark);
}
.t-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 10px;
}
.t-cta p { color: var(--muted); margin-bottom: 20px; }

/* ─── TEAM (team.php grid fallback) ─────────────────────────── */
.tc-top {
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  padding: 28px; text-align: center; border-bottom: 1px solid var(--line);
}
.tc-top h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--primary-dark); }
.tc-deg   { color: var(--primary); font-weight: 700; font-size: .82rem; }
.tc-role  { display: block; color: var(--primary); font-weight: 700; font-size: .82rem; margin-bottom: 10px; }
.tc-tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.etag {
  background: var(--primary-soft); color: var(--primary);
  padding: 5px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700;
}

/* ─── MISSION / CONTACT ─────────────────────────────────────── */
.mission-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 30px;
}
.mcard { padding: 28px; }
.contact-grid { align-items: start; }
.citem {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.c-ic {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center; flex: 0 0 42px;
}
.c-tx strong { display: block; color: var(--primary-dark); margin-bottom: 4px; }
.c-tx span, .c-tx a { color: var(--muted); text-decoration: none; }
.c-tx a:hover { color: var(--primary); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.hrow { background: var(--bg); border-radius: 12px; padding: 10px; color: var(--muted); font-size: .85rem; }

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 7px;
}
input, select, textarea {
  width: 100%; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font: inherit; color: var(--ink); background: #fff;
  outline: 0; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,111,125,.10);
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .7; }
.map-sec iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ─── PROCESS BAR ───────────────────────────────────────────── */
.process-bar {
  padding: var(--sec-pad);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff; position: relative; overflow: hidden;
}
.process-bar::before {
  content: ''; position: absolute; left: -120px; top: -140px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.process-bar .sw { position: relative; z-index: 1; }
.pb-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 34px;
}
.pb-step {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  transition: background .25s, transform .25s;
}
.pb-step:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.pb-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 16px; font-size: .95rem;
}
.pb-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 8px;
}
.pb-step p { color: rgba(255,255,255,.70); font-size: .91rem; line-height: 1.75; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #062F37;
  padding: 56px clamp(18px, 5vw, 70px) 26px;
}
.footer-logo { min-width: 0; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.25fr 1.5fr; gap: 30px;
}
.footer-brand img {
  height: 72px; width: auto; max-width: 220px;
  object-fit: contain; filter: none !important;
  background: #fff; border-radius: 14px; padding: 8px; margin-bottom: 14px;
}
.footer-brand p,
.footer-col a,
.footer-col address {
  color: rgba(255,255,255,.65); font-size: .91rem;
  line-height: 1.8; text-decoration: none; font-style: normal;
}
.footer-col h4 {
  color: var(--gold); font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1180px; margin: 28px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; color: rgba(255,255,255,.44); font-size: .80rem;
}

/* ─── FLOATING CALL BUTTON ──────────────────────────────────── */
.float-call {
  position: fixed; right: 22px; bottom: 22px;
  width: 56px; height: 56px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.25rem; z-index: 990;
  box-shadow: 0 12px 28px rgba(216,31,60,.30);
  animation: pulse 2.2s infinite; transition: transform .2s;
}
.float-call:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(216,31,60,.30); }
  50%       { box-shadow: 0 12px 28px rgba(216,31,60,.30), 0 0 0 12px rgba(216,31,60,.10); }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO — blog variant ──────────────────────────────── */
.ph--blog { min-height: 340px; }
.ph-sub {
  color: rgba(255,255,255,.60); font-size: .95rem;
  margin-top: 10px; max-width: 560px; line-height: 1.7;
}

/* ─── CATEGORY FILTER BAR ───────────────────────────────────── */
.blog-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(18px,5vw,70px);
  position: sticky; top: 82px; z-index: 90;
  box-shadow: 0 4px 18px rgba(6,70,80,.05);
}
.blog-cats {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  overflow-x: auto; padding: 14px 0;
  scrollbar-width: none;
}
.blog-cats::-webkit-scrollbar { display: none; }
.bcat {
  flex-shrink: 0; white-space: nowrap;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff;
  color: var(--muted); font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
  font-family: inherit;
}
.bcat:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.bcat.active {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(11,111,125,.22);
}

/* ─── FEATURED POST ─────────────────────────────────────────── */
.blog-featured {
  padding: 64px clamp(18px,5vw,70px) 0;
  background: var(--bg);
}
.blog-featured .ey { display: block; margin-bottom: 18px; }
.bfeat-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .3s, transform .3s;
}
.bfeat-card:hover { box-shadow: 0 28px 70px rgba(6,70,80,.14); transform: translateY(-3px); }

.bfeat-img {
  position: relative; min-height: 360px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
}
.bfeat-img-placeholder {
  font-size: 6rem; opacity: .35;
  user-select: none; pointer-events: none;
}
.bfeat-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold); color: var(--primary-dark);
  border-radius: 999px; padding: 6px 14px;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
}

.bfeat-body {
  padding: 40px 38px; display: flex;
  flex-direction: column; justify-content: center; gap: 16px;
}
.bfeat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2; color: var(--primary-dark);
  letter-spacing: -.02em;
}
.bfeat-excerpt { color: var(--muted); font-size: .97rem; line-height: 1.85; }
.bfeat-foot {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-top: 8px;
}

/* ─── POST META ROW ─────────────────────────────────────────── */
.bpost-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.bpost-date {
  color: var(--muted); font-size: .78rem;
  font-weight: 600; letter-spacing: .04em;
}

/* ─── CATEGORY TAGS (inline, coloured) ─────────────────────── */
.bcat-tag {
  display: inline-flex; padding: 4px 12px;
  border-radius: 999px; font-size: .70rem;
  font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
}
.bcat-tag--implants   { background: #EAF8FA; color: #0B6F7D; }
.bcat-tag--orthognathic { background: #F0F4FF; color: #3050A0; }
.bcat-tag--cancer     { background: #FFF0F2; color: #C01030; }
.bcat-tag--trauma     { background: #FFF8EC; color: #8A5A00; }
.bcat-tag--aesthetics { background: #F7F0FA; color: #7030A0; }
.bcat-tag--cleft      { background: #F0FAF4; color: #1A7A40; }

/* ─── AUTHOR CHIPS ──────────────────────────────────────────── */
.bpost-author {
  display: flex; align-items: center; gap: 12px;
}
.bpost-author strong { display: block; color: var(--ink); font-size: .90rem; }
.bpost-author span   { display: block; color: var(--muted); font-size: .78rem; }
.bauthor-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.bpost-author--sm strong { font-size: .82rem; }
.bauthor-av--sm { width: 32px; height: 32px; font-size: 1rem; }

/* ─── BLOG GRID ──────────────────────────────────────────────── */
.blog-grid-sec {
  padding: 48px clamp(18px,5vw,70px) var(--sp-xl);
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── BLOG CARD ──────────────────────────────────────────────── */
.bcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(6,70,80,.06);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(11,111,125,.20);
}
.bcard-img-wrap {
  display: block; position: relative; text-decoration: none;
  min-height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.bcard-img-ph {
  font-size: 3.8rem; opacity: .30;
  user-select: none; pointer-events: none;
}
.bcard-img-wrap .bcat-tag {
  position: absolute; bottom: 14px; left: 14px;
}
.bcard-img-wrap img {
  position: absolute; inset: 0; width: 100%;
  height: 100%; object-fit: cover;
}
.bcard-body {
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.bcard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem; line-height: 1.3; color: var(--primary-dark);
  letter-spacing: -.01em;
}
.bcard-title a {
  text-decoration: none; color: inherit;
  transition: color .2s;
}
.bcard-title a:hover { color: var(--primary); }
.bcard-excerpt {
  color: var(--muted); font-size: .88rem; line-height: 1.75;
  flex: 1;
  /* Clamp to 3 lines */
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.bcard-foot {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--line);
  margin-top: auto;
}

/* ─── PAGINATION ────────────────────────────────────────────── */
.blog-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 52px; flex-wrap: wrap;
}
.bpag-btn {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1.5px solid var(--line); background: #fff;
  color: var(--muted); font-size: .88rem; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.bpag-btn:hover     { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.bpag-btn--active   { background: var(--primary); color: #fff; border-color: var(--primary); }
.bpag-dots          { color: var(--muted); font-size: .9rem; padding: 0 4px; }
.bpag-next {
  height: 42px; padding: 0 20px; border-radius: 12px;
  border: 1.5px solid var(--primary); background: #fff;
  color: var(--primary); font-size: .82rem; font-weight: 800;
  letter-spacing: .06em; cursor: pointer; transition: all .2s;
  font-family: inherit;
}
.bpag-next:hover { background: var(--primary); color: #fff; }

/* ─── NEWSLETTER / CONSULT BAND ─────────────────────────────── */
.blog-cta-band {
  padding: var(--sec-pad);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
}
.blog-cta-band .ey      { color: rgba(255,255,255,.72); }
.blog-cta-band .ey::before { background: var(--gold); }
.blog-cta-band .sh      { color: #fff; }
.blog-cta-band .sh em   { color: var(--gold); }
.blog-cta-band .gr      { background: linear-gradient(90deg,var(--gold),var(--accent)); }
.blog-cta-band p        { color: rgba(255,255,255,.68); line-height: 1.85; margin-bottom: 22px; }

.bcta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.bnl-inner {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 36px;
}
.bnl-inner h3 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.45rem; margin-bottom: 10px;
}
.bnl-inner p { color: rgba(255,255,255,.65); font-size: .93rem; margin-bottom: 20px; }
.bnl-form {
  display: flex; gap: 10px;
}
.bnl-form input {
  flex: 1; background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.20);
  border-radius: 999px; color: #fff;
  padding: 12px 18px; font-size: .90rem;
}
.bnl-form input::placeholder { color: rgba(255,255,255,.45); }
.bnl-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,154,88,.15); }
.bnl-note {
  color: rgba(255,255,255,.38) !important;
  font-size: .74rem !important; margin-top: 10px !important; margin-bottom: 0 !important;
}

/* ─── RESPONSIVE: 1100px ────────────────────────────────────── */
@media (max-width: 1100px) {
  .trust-in { grid-template-columns: repeat(3, 1fr); }
  .svc-grid,
  .why-grid,
  .val-grid,
  .infra-grid,
  .aff-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .t-list-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .pb-steps      { grid-template-columns: repeat(2, 1fr); }
  /* Blog */
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .bfeat-card    { grid-template-columns: 1fr; }
  .bfeat-img     { min-height: 240px; }
}

/* ─── RESPONSIVE: 900px ─────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { min-height: 72px; }
  .nav-logo img { height: 50px; max-width: 180px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%;
    left: 12px; right: 12px;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow); border-radius: 18px;
    padding: 12px; flex-direction: column;
    align-items: stretch; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; }

  .hero { min-height: auto; padding: 52px 0; }
  .hero-in,
  .ov-grid,
  .about-grid,
  .contact-grid,
  .tech-in { grid-template-columns: 1fr; gap: 28px; }
  .hero-r { order: -1; }
  .hero-logo-box, .ov-vis, .about-vis { min-height: auto; padding: 28px; }
  .hero-logo-box img, .ov-vis img, .about-vis img { max-width: 320px; margin: 0 auto; }
  .hstats { grid-template-columns: repeat(3, 1fr); }
  .ph { padding-top: 95px; }
  .frow, .mission-grid { grid-template-columns: 1fr; }
  .tech-stats { grid-template-columns: repeat(2, 1fr); }
  .team-duo  { grid-template-columns: 1fr; max-width: 480px; }
  .team-trio { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  /* Blog */
  .blog-filter-bar  { top: 72px; }
  .blog-grid        { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bcta-grid        { grid-template-columns: 1fr; gap: 32px; }
  .bnl-form         { flex-direction: column; }
  .bnl-form input   { border-radius: var(--radius-sm); }
  .bnl-form .btn-g  { border-radius: var(--radius-sm); }
}

/* ─── RESPONSIVE: 640px ─────────────────────────────────────── */
@media (max-width: 640px) {
  body { font-size: 15px; }

  .site-nav { padding: 10px 14px; min-height: 66px; }
  .nav-logo img { height: 44px; max-width: 155px; }

  /* Ensure consistent side padding on all sections */
  .hero-in,
  .overview,
  .services,
  .why,
  .vals,
  .infra,
  .mission-sec,
  .team-sec,
  .affiliations,
  .contact-sec,
  .t-intro,
  .about-body,
  .t-section,
  .tech,
  .cta,
  .ph,
  footer,
  .process-bar,
  .t-cta,
  .blog-featured,
  .blog-grid-sec,
  .blog-cta-band { padding-left: 16px; padding-right: 16px; }

  .hero-h { font-size: 2.55rem; }
  .hero-btns .btn-g,
  .hero-btns .btn-ghost { width: 100%; }

  .trust-in,
  .svc-grid,
  .why-grid,
  .val-grid,
  .infra-grid,
  .aff-grid,
  .team-grid,
  .t-list-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hstats,
  .tech-stats,
  .hours-grid { grid-template-columns: repeat(2, 1fr); }

  /* Fix: was collapsing to 1 column on very small screens */
  @supports not (gap: 10px) {
    .hstats > *, .tech-stats > * { margin-bottom: 12px; }
  }

  .t-sec-head { grid-template-columns: 1fr; }
  .t-sec-icon { width: 70px; height: 70px; font-size: 1.9rem; }

  .footer-bottom { flex-direction: column; gap: 6px; }

  .float-call { right: 14px; bottom: 14px; width: 50px; height: 50px; }

  /* Fix: badges lose absolute positioning on small screens */
  .ov-badge, .about-tag {
    position: static; margin-top: 18px;
    display: inline-flex;
  }

  .hero-logo-box, .ov-vis, .about-vis { padding: 20px; }
  .hero-logo-box img, .ov-vis img, .about-vis img { max-width: 260px; margin: 0 auto; }

  .ti { padding: 10px 12px; }
  .ti-tx { font-size: .73rem; }

  .ph { min-height: 240px; padding-top: 85px; }

  .pb-steps { grid-template-columns: 1fr; }
  .pb-step { padding: 20px 16px; }

  .team-duo,
  .team-trio { grid-template-columns: 1fr; max-width: 100%; }
  .team-duo .tc-top { padding: 28px 20px 22px; }
  .team-duo .tc-body { padding: 20px; }

  /* Blog mobile */
  .blog-filter-bar { top: 66px; padding-left: 0; padding-right: 0; }
  .blog-cats       { padding: 12px 16px; }
  .blog-grid       { grid-template-columns: 1fr; }
  .bfeat-body      { padding: 26px 20px; }
  .bfeat-title     { font-size: 1.3rem; }
  .bfeat-foot      { flex-direction: column; align-items: flex-start; }
  .bcta-grid       { grid-template-columns: 1fr; gap: 28px; }
  .bnl-inner       { padding: 24px 20px; }
  .bnl-form        { flex-direction: column; }
  .ph--blog        { min-height: 270px; }
}

/* ─── RESPONSIVE: 380px (very small) ───────────────────────── */
@media (max-width: 380px) {
  .hstats,
  .tech-stats { grid-template-columns: 1fr; }
  .hero-h { font-size: 2.2rem; }
  .svc-top { height: 78px; font-size: 1.7rem; }
}



/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION  —  DARK (after Tech which is light)
═══════════════════════════════════════════════════════════════ */

.gallery-sec {
  padding: var(--sec-pad);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
}

.gallery-sec .ey         { color: rgba(255,255,255,.72); }
.gallery-sec .ey::before { background: var(--gold); }
.gallery-sec .sh         { color: #fff; }
.gallery-sec .sh em      { color: var(--gold); }
.gallery-sec .gr         { background: linear-gradient(90deg, var(--gold), var(--accent)); }

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-head .ey { margin-bottom: 10px; }
.gallery-head .sh { margin-bottom: 10px; }
.gallery-head .gr { margin-bottom: 0; }

.gallery-sub {
  max-width: 480px;
  color: rgba(255,255,255,.62);
  font-size: .93rem;
  line-height: 1.8;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* ─── Filter Tabs — dark variant ──────────────────────────── */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.gtab {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}

.gtab:hover {
  border-color: rgba(255,255,255,.38);
  color: #fff;
  background: rgba(255,255,255,.13);
}

.gtab.active {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(198,154,88,.28);
}

/* ─── Masonry Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gtile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
}

.gtile--lg   { grid-column: span 2; grid-row: span 2; }
.gtile--wide { grid-column: span 2; }

.gtile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gtile-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gtile:hover .gtile-inner img { transform: scale(1.06); }

.gtile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,70,80,.88) 0%, rgba(6,70,80,.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity .3s;
}

.gtile:hover .gtile-overlay { opacity: 1; }

.gtile-cat {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.gtile-overlay p {
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.gallery-more { text-align: center; margin-top: 36px; }
.gallery-sec .btn-ghost {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.gallery-sec .btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.40);
}


/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION  —  LIGHT (after Gallery which is dark)
═══════════════════════════════════════════════════════════════ */

.testimonials-sec {
  padding: var(--sec-pad);
  background: var(--bg);
}

.testi-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.testi-head .gr { margin: 0 auto 24px; }

.testi-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

/* ─── Rating Summary Bar ───────────────────────────────────── */
.testi-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 44px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 22px rgba(6,70,80,.05);
}

.tsum-score { text-align: center; flex-shrink: 0; }

.tsum-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.tsum-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.tsum-label {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}

.tsum-divider { width: 1px; height: 68px; background: var(--line); flex-shrink: 0; }

.tsum-stats { display: flex; gap: 36px; flex-wrap: wrap; }

.tsum-stat { text-align: center; }

.tsum-sn {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.tsum-sl {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}

/* ─── Testimonial Cards Grid ───────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tcard-t {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 6px 22px rgba(6,70,80,.05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}

.tcard-t:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(11,111,125,.20);
}

.tcard-t--feat {
  border-color: rgba(11,111,125,.22);
  box-shadow: var(--shadow-md);
}

.tcard-t-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tcard-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.tcard-tag {
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tcard-quote {
  font-style: italic;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.82;
  margin: 0;
  flex: 1;
  border-left: 3px solid var(--line);
  padding-left: 16px;
  transition: border-color .25s;
}

.tcard-t:hover .tcard-quote { border-color: var(--primary); }

.tcard-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.tcard-author strong {
  display: block;
  font-size: .93rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.tcard-author span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}

.tcard-verified {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: .68rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .06em;
}

.tcard-t--feat .tcard-verified { top: auto; bottom: 20px; right: 20px; }

.testi-foot { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION  —  DARK (after Testimonials which is light)
═══════════════════════════════════════════════════════════════ */

.faq-sec {
  padding: var(--sec-pad);
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  color: #fff;
}

.faq-sec .ey         { color: rgba(255,255,255,.72); }
.faq-sec .ey::before { background: var(--gold); }
.faq-sec .sh         { color: #fff; }
.faq-sec .sh em      { color: var(--gold); }
.faq-sec .gr         { background: linear-gradient(90deg, var(--gold), var(--accent)); }

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

/* ─── FAQ Sidebar ──────────────────────────────────────────── */
.faq-sidebar {
  position: sticky;
  top: 108px;
}

.faq-sidebar .ey { margin-bottom: 10px; }
.faq-sidebar .sh { margin-bottom: 12px; }
.faq-sidebar .gr { margin-bottom: 20px; }

.faq-sidebar p {
  color: rgba(255,255,255,.62);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ─── FAQ Accordion List ───────────────────────────────────── */
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: border-color .25s, background .25s;
}

.faq-item:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
}

.faq-item--open {
  border-color: var(--gold);
  background: rgba(255,255,255,.10);
  box-shadow: 0 6px 22px rgba(0,0,0,.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
}

.faq-q:hover { color: var(--gold); }
.faq-item--open .faq-q { color: var(--gold); }

/* Plus/minus icon */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.28);
  flex-shrink: 0;
  position: relative;
  transition: background .2s, border-color .2s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.80);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-item--open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item--open .faq-icon::before,
.faq-item--open .faq-icon::after { background: var(--primary-dark); }
.faq-item--open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

/* ─── FAQ Answer Panel ─────────────────────────────────────── */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}

.faq-item--open .faq-a { max-height: 600px; }

.faq-a p {
  padding: 0 22px 22px;
  color: rgba(255,255,255,.65);
  font-size: .93rem;
  line-height: 1.85;
  margin: 0;
}

.faq-a p a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.faq-a p a:hover { text-decoration: underline; color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* 1100px */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* 960px */
@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-sidebar { position: static; text-align: center; max-width: 560px; margin: 0 auto; }
  .faq-sidebar .gr { margin: 0 auto 20px; }
}

/* 768px */
@media (max-width: 768px) {
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-sub  { max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }

  .testi-summary { flex-direction: column; align-items: center; gap: 22px; padding: 24px 20px; text-align: center; }
  .tsum-divider  { width: 60px; height: 1px; }
  .tsum-stats    { justify-content: center; gap: 24px; }
}

/* 640px */
@media (max-width: 640px) {
  .gallery-sec,
  .testimonials-sec,
  .faq-sec { padding-left: 16px; padding-right: 16px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 155px;
    gap: 10px;
  }
  .gtile--lg   { grid-column: span 2; grid-row: span 1; }
  .gtile--wide { grid-column: span 2; }
  .gtile-overlay { opacity: 1; }

  .testi-grid    { grid-template-columns: 1fr; }
  .tcard-t       { padding: 22px 18px; }
  .tcard-verified { position: static; margin-top: 4px; }
  .tcard-t--feat .tcard-verified { position: static; }
  .tcard-t-top   { flex-wrap: wrap; }

  .faq-sidebar   { text-align: left; }
  .faq-sidebar .gr { margin: 0 0 20px; }
  .faq-q         { padding: 16px; font-size: .92rem; }
  .faq-a p       { padding: 0 16px 18px; }
}




/* ═══════════════════════════════════════════════════════════════
   MAP SECTION  —  sits between CTA and footer
   Background: white (CTA is dark, footer is dark — white breaks
   the two dark sections and gives the map clean contrast)
═══════════════════════════════════════════════════════════════ */

.map-sec {
  background: #fff;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 420px;
}

/* ─── Info Panel ───────────────────────────────────────────── */
.map-panel {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--line);
}

.map-panel .ey  { margin-bottom: 10px; }
.map-panel .sh  { margin-bottom: 12px; }
.map-panel .gr  { margin-bottom: 28px; }

.map-citem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.map-citem:last-of-type { border-bottom: 0; }

.map-cic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.map-ctx {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.map-ctx strong {
  display: block;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.map-ctx span,
.map-ctx a {
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.65;
  text-decoration: none;
}

.map-ctx a:hover { color: var(--primary); }

.map-closed {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: .84rem !important;
}

.map-dir-btn {
  margin-top: 28px;
  align-self: flex-start;
}

/* ─── Embedded Map ─────────────────────────────────────────── */
.map-embed {
  position: relative;
  min-height: 420px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .map-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .map-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 40px 32px;
  }

  .map-embed {
    min-height: 340px;
    position: relative;
  }

  .map-embed iframe {
    position: relative;
    height: 340px;
  }
}

@media (max-width: 640px) {
  .map-panel { padding: 32px 16px; }

  .map-embed { min-height: 280px; }
  .map-embed iframe { height: 280px; }

  .map-dir-btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
   Stack order (bottom to top): Call → WhatsApp → Back-to-Top
═══════════════════════════════════════════════════════════════ */

/* ─── Shared base — matches existing .float-call ──────────── */
.float-wa,
.float-top {
  position: fixed;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  z-index: 990;
  transition: transform .2s, box-shadow .2s, opacity .25s;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ─── WhatsApp button — sits above call button ─────────────── */
.float-wa {
  bottom: 90px;           /* 22px bottom + 56px call + 12px gap */
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.32);
  animation: pulse-wa 2.4s infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 36px rgba(37,211,102,.40);
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 12px 28px rgba(37,211,102,.32); }
  50%      { box-shadow: 0 12px 28px rgba(37,211,102,.32), 0 0 0 12px rgba(37,211,102,.10); }
}

/* WhatsApp SVG icon */
.float-wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  flex-shrink: 0;
}

/* ─── Back-to-Top button — sits above WhatsApp ─────────────── */
.float-top {
  bottom: 158px;          /* 90px wa-bottom + 56px wa + 12px gap */
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6,70,80,.22);
  font-size: 1.1rem;

  /* hidden by default, shown after scroll */
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.float-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-top:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 16px 36px rgba(6,70,80,.30);
  background: var(--primary);
}

/* Arrow icon via CSS — cleaner than emoji */
.float-top::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-left: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg) translate(2px, 2px);
}

/* ─── Tooltip labels (optional — shows on hover) ───────────── */
.float-wa::after,
.float-top::after {
  content: attr(data-tip);
  position: absolute;
  right: 66px;
  background: var(--ink);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .18s, transform .18s;
}

.float-wa:hover::after,
.float-top.visible:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Mobile adjustments ───────────────────────────────────── */
@media (max-width: 640px) {
  .float-wa,
  .float-top {
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .float-wa  { bottom: 80px;  }   /* 14px + 50px call + 16px gap */
  .float-top { bottom: 146px; }   /* 80px + 50px wa + 16px gap  */

  /* Hide tooltips on mobile — not useful on touch */
  .float-wa::after,
  .float-top::after { display: none; }
}




/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE — gallery.php
   Add this to your main stylesheet
═══════════════════════════════════════════════════════════════ */

/* ─── Page Hero subtitle ────────────────────────────────────── */
.ph-sub {
  color: rgba(255,255,255,.60);
  font-size: .95rem;
  margin-top: 10px;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Section wrapper ───────────────────────────────────────── */
.gallery-full-sec {
  padding: var(--sec-pad);
  background: var(--bg);
}

/* ═══════════════════════════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════════════════════════ */
.gf-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gf-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  white-space: nowrap;
}

.gf-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.gf-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(11,111,125,.22);
}

.gft-icon { font-size: .95rem; }

.gft-count {
  background: rgba(255,255,255,.22);
  color: inherit;
  font-size: .68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}

.gf-tab:not(.active) .gft-count {
  background: var(--line);
  color: var(--muted);
}

/* Count label */
.gf-count-label {
  color: var(--muted);
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════════
   MASONRY GRID
═══════════════════════════════════════════════════════════════ */
.gf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

/* Span variants */
.gf-tile--lg   { grid-column: span 2; grid-row: span 2; }
.gf-tile--wide { grid-column: span 2; }

/* Hidden state (filtered out) */
.gf-tile--hidden {
  display: none;
}

/* ─── Individual tile ───────────────────────────────────────── */
.gf-tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gf-tile-in {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), #082F37);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .3s;
}

.gf-tile:hover .gf-tile-in {
  box-shadow: 0 16px 48px rgba(6,70,80,.18);
}

/* Actual image */
.gf-tile-in img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gf-tile:hover .gf-tile-in img { transform: scale(1.06); }

/* Emoji placeholder — shown when img missing */
.gf-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: .22;
  color: #fff;
  pointer-events: none;
  z-index: 0;
}

/* Overlay (reveals on hover) */
.gf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,70,80,.90) 0%,
    rgba(6,70,80,.20) 55%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px 16px;
  opacity: 0;
  transition: opacity .28s;
  z-index: 2;
}

.gf-tile:hover .gf-overlay { opacity: 1; }

.gf-cat-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.gf-overlay p {
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.gf-zoom {
  align-self: flex-end;
  color: rgba(255,255,255,.55);
  font-size: 1.1rem;
  margin-top: 6px;
  transition: color .2s;
}

.gf-tile:hover .gf-zoom { color: #fff; }

/* ─── Empty state ───────────────────────────────────────────── */
.gf-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

.gf-empty span { font-size: 3rem; opacity: .4; }
.gf-empty p    { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,30,36,.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}

.lb-overlay.lb-open {
  opacity: 1;
  pointer-events: auto;
}

/* Stage */
.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
}

/* Image wrap */
.lb-img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}

#lbImg {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

/* Placeholder inside lightbox */
.lb-placeholder {
  font-size: 6rem;
  opacity: .2;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Caption */
.lb-caption {
  text-align: center;
  max-width: 620px;
}

.lb-cap-badge {
  display: inline-flex;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.lb-caption h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.lb-caption p {
  color: rgba(255,255,255,.60);
  font-size: .90rem;
  line-height: 1.75;
  margin: 0;
}

.lb-counter {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.35);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav buttons */
.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  font-family: inherit;
  line-height: 1;
}

.lb-close {
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.4rem;
}

.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 2rem;
}

.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-prev:hover  { background: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.08); }
.lb-next:hover  { background: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.08); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* 1100px — 3 columns */
@media (max-width: 1100px) {
  .gf-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
  }
}

/* 768px — 2 columns */
@media (max-width: 768px) {
  .gf-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.6rem; }
}

/* 640px — 2 columns, smaller rows, always-visible overlay */
@media (max-width: 640px) {
  .gallery-full-sec { padding-left: 16px; padding-right: 16px; }

  .gf-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 155px;
    gap: 8px;
  }

  /* On mobile, large tiles collapse to normal height */
  .gf-tile--lg { grid-column: span 2; grid-row: span 1; }

  /* Always show overlay on touch */
  .gf-overlay { opacity: 1; background: linear-gradient(to top, rgba(6,70,80,.75) 0%, transparent 60%); }
  .gf-zoom    { display: none; }

  .gf-tabs { gap: 7px; }
  .gf-tab  { padding: 8px 13px; font-size: .74rem; }
  .gft-icon { display: none; }

  .lb-stage  { gap: 14px; }
  #lbImg     { max-height: 52vh; }
  .lb-caption h3 { font-size: 1.05rem; }
  .lb-caption p  { font-size: .84rem; }
  .lb-prev, .lb-next { width: 36px; height: 36px; font-size: 1.4rem; }
  .lb-close  { width: 38px; height: 38px; top: 12px; right: 12px; }
}



.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: opacity 0.2s, transform 0.2s;
}

.fsoc svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.fsoc--fb  { background: #1877f2; }
.fsoc--ig  { background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.fsoc:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}




.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #b88945;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid #b88945;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.active {
  width: 55px;
  height: 55px;
  border-color: #111;
}

@media (max-width: 991px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}