/* =========================================
   AMA RENOVATIONS — style.css
   ========================================= */

/* Century Gothic — system font stack + nearest web fallbacks */
/* Century Gothic Bold → titles, H1, H2, CTAs */
/* Century Gothic Regular → body, subtitles, descriptions */

/* CSS VARIABLES */
:root {
  /* ── Brand Colors ── */
  --teal: #1A8CA0;
  --teal-mid: #28A0A0;
  --teal-deep: #003C50;
  --night: #002828;
  --silver-light: #C8C8C8;
  --silver-mid: #8C8C8C;
  --dark-gray: #505050;
  --off-white: #F0F0F0;
  --white: #ffffff;
  --black: #0a0a0a;

  /* ── Typography ──
     Century Gothic: available on Windows/Mac as system font.
     Fallback chain: Trebuchet MS (closest geometric sans),
     then Century Gothic explicit, then generic sans.
  */
  --font-display: 'Century Gothic', CenturyGothic, 'Trebuchet MS', Futura, 'Apple Gothic', sans-serif;
  --font-body:    'Century Gothic', CenturyGothic, 'Trebuchet MS', Futura, 'Apple Gothic', sans-serif;

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 12px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

::selection { background: var(--teal); color: white; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* TYPOGRAPHY */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--teal-mid); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; /* Century Gothic Bold */
  color: var(--teal-deep);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--silver-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.centered { text-align: center; margin-bottom: 3.5rem; }
.section-header.centered .section-sub { margin: 0 auto; }

/* SECTION SPACING */
.section { padding: 100px 0; overflow-x: clip; }
/* Offset for sticky header on anchor scroll */
section[id] { scroll-margin-top: 80px; }
.bg-dark { background: var(--night); }
.bg-offwhite { background: var(--off-white); }

/* CONTAINER */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,140,160,0.35);
}
.btn-primary:hover {
  background: #0f6e80;
  box-shadow: 0 8px 30px rgba(26,140,160,0.5);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,140,160,0.4);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* =========================================
   TOPBAR
   ========================================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--night);
  height: 42px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}
.topbar.hidden { transform: translateY(-100%); }

.topbar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.topbar-item:hover { color: var(--teal-mid); }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; stroke: var(--teal-mid); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* CTA pill in topbar */
.topbar-cta {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  margin-right: 3rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.topbar-cta:hover { background: var(--teal-mid); transform: translateY(-1px); }

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  margin: 0 0.25rem;
}
.topbar-social {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s ease, color 0.2s ease;
}
.topbar-social:hover { background: var(--teal); color: white; }
.topbar-social svg { width: 13px; height: 13px; }

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 42px; /* below topbar */
  left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: top 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.header.scrolled {
  background: rgba(0, 28, 35, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  top: 0; /* collapse topbar on scroll */
}
/* ── MOBILE: no topbar, so header must always sit at top:0 ── */
@media (max-width: 768px) {
  .header,
  .header.scrolled {
    top: 0 !important;
    transition-property: background, box-shadow !important;
  }
}
.header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px; /* explicit height for perfect vertical centering */
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; transition: var(--transition); }
.logo-dark { display: none; }

.nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 0.1rem; align-items: center; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--teal);
  transition: all 0.3s ease;
}
.nav-link:hover { color: white; }
.nav-link:hover::after,
.nav-link.active::after { left: 1.1rem; right: 1.1rem; }
.nav-link.active { color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: rgba(0,28,35,0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: calc(100vh - 70px); /* 70px = altura del header */
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.open { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--teal); padding-left: 0.5rem; }
.mobile-cta { margin-top: 1.5rem; }

/* Mobile nav contact info */
.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s ease;
}
.mobile-contact-item:hover { color: var(--teal-mid); }
.mobile-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: var(--teal-mid);
}

/* Mobile nav social icons */
.mobile-nav-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-social {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mobile-social:hover { background: var(--teal); border-color: var(--teal); color: white; }
.mobile-social svg { width: 17px; height: 17px; flex-shrink: 0; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* small viewport height — stable, ignores URL bar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow-x: clip; /* prevent horizontal overflow from breaking fixed header */
  overflow-y: visible; /* allow stats bar to overflow into next section */
  padding-bottom: 4rem;
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden; /* clip images inside hero */
  border-radius: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,28,35,0.80) 0%,
    rgba(0,40,40,0.65) 50%,
    rgba(0,60,80,0.55) 100%
  );
}

/* Hero container — mirrors .header-inner for perfect logo alignment */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Content */
.hero-content {
  text-align: left;
  max-width: 680px;
  margin-top: -60px; /* vertical nudge within the flexbox center */
}

/* Hero arrow nav — right side, stacked vertically */
.hero-arrow {
  position: absolute;
  right: 2rem;
  z-index: 4;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
}
.hero-arrow:hover { background: var(--teal); border-color: var(--teal); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow-prev { top: calc(50% - 30px); }
.hero-arrow-next { top: calc(50% + 26px); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,140,160,0.25);
  border: 1px solid rgba(26,140,160,0.5);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(8px);
}

/* Service tag that changes with each slide */
.hero-service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-service-tag.visible { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300; /* THIN — elegant, light weight */
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }

.hero-accent {
  color: var(--teal);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-btns.visible { opacity: 1; transform: translateY(0); }

/* Hero Stats — overlapping hero/next section (half & half) */
.hero-stats {
  position: absolute;
  bottom: 1rem; /* pulls it halfway out of hero */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--teal-deep);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  white-space: nowrap;
  /* Smooth fade-out transition */
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Hidden state — fades out and slides down slightly */
.hero-stats.stats-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 2.5rem;
}
.hero-stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal);
  margin-left: 3px;
  vertical-align: super;
  line-height: 1;
  display: inline;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Slider dots */
.hero-slider-dots {
  position: absolute;
  bottom: 12rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: var(--transition);
}
.dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about.section {
  padding-top: 7rem; /* extra room for stats bar overlap */
  overflow: hidden; /* contain absolute children that extend beyond bounds */
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-images {
  position: relative;
  padding-bottom: 3rem;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.about-img-accent img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-accent:hover img { transform: scale(1.05); }

.about-img-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--teal-deep);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 1.4;
}

.about-content { }
.about-lead {
  font-size: 1.15rem;
  color: var(--teal-deep);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-body {
  color: var(--silver-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: var(--transition-fast);
}
.value-item:hover { background: #e8f4f6; }
.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26,140,160,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.value-icon svg { width: 18px; height: 18px; }
.value-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 0.15rem;
}
.value-item p {
  font-size: 0.78rem;
  color: var(--silver-mid);
  line-height: 1.5;
}

/* Mission Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--night) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(26,140,160,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.mv-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.mv-icon {
  width: 46px; height: 46px;
  background: rgba(26,140,160,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.mv-icon svg { width: 22px; height: 22px; }
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}
.mv-card p { color: rgba(255,255,255,0.75); line-height: 1.75; font-size: 0.95rem; }

/* =========================================
   WHY US — ACCORDION LAYOUT
   ========================================= */
.why-us { background: var(--off-white); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.why-left .section-title { margin-bottom: 2rem; }

.why-cert-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,140,160,0.08);
}
.why-cert-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--off-white);
}
.why-cert-logo strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.15rem;
}
.why-cert-logo span {
  font-size: 0.75rem;
  color: var(--silver-mid);
}
.why-cert-box > p {
  font-size: 0.88rem;
  color: var(--silver-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.why-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.why-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.06em;
}
.why-progress-pct {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
}
.why-progress-bar {
  height: 6px;
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
}
.why-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Accordion items */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-accordion-item {
  border-bottom: 1px solid rgba(26,140,160,0.12);
  cursor: pointer;
  transition: var(--transition-fast);
}
.why-accordion-item:first-child { border-top: 1px solid rgba(26,140,160,0.12); }

.why-acc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.5rem;
  transition: var(--transition-fast);
}
.why-accordion-item:hover .why-acc-header,
.why-accordion-item:focus .why-acc-header { background: rgba(26,140,160,0.04); border-radius: var(--radius); }
.why-accordion-item:focus { outline: none; }

/* Accordion check icon — pure CSS, no SVG clipping issues */
.why-acc-check {
  width: 26px; height: 26px;
  flex-shrink: 0;
}

/* The check circle */
.check-icon {
  display: block;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: transparent;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
/* Checkmark via CSS pseudo-element */
.check-icon::after {
  content: '';
  position: absolute;
  left: 7px; top: 4px;
  width: 7px; height: 11px;
  border: 2px solid var(--teal);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  transition: border-color 0.25s ease;
}

/* Open state: solid teal fill, white checkmark */
.why-accordion-item.open .check-icon {
  background: var(--teal);
  border-color: var(--teal);
}
.why-accordion-item.open .check-icon::after {
  border-color: white;
}

/* Hover state: solid teal fill, white checkmark */
.why-accordion-item:hover .check-icon {
  background: var(--teal);
  border-color: var(--teal);
}
.why-accordion-item:hover .check-icon::after {
  border-color: white;
}

.why-acc-header span {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.01em;
}
.why-accordion-item.open .why-acc-header span { color: var(--teal); }

.why-acc-chevron {
  width: 18px; height: 18px;
  color: var(--silver-mid);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.why-accordion-item.open .why-acc-chevron { transform: rotate(180deg); color: var(--teal); }

.why-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 0.5rem 0 2.75rem;
}
.why-accordion-item.open .why-acc-body { max-height: 120px; }
.why-acc-body p {
  font-size: 0.875rem;
  color: var(--silver-mid);
  line-height: 1.75;
  padding-bottom: 1rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,28,35,0.3));
}

.service-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--silver-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.service-link:hover svg { transform: translateX(4px); }

/* Dark service card */
.service-card-dark {
  background: linear-gradient(145deg, var(--teal-deep), var(--night));
  border: 1px solid rgba(26,140,160,0.3);
}
.service-body-dark {
  padding: 2rem;
  justify-content: center;
}
.service-num.light { color: var(--teal-mid); }
.service-body-dark h3.light { color: white; }
.service-body-dark p.light { color: rgba(255,255,255,0.65); }
.service-link.light { color: var(--teal-mid); }
.service-link.light:hover { color: white; }

/* =========================================
   WORK PROCESS
   ========================================= */
.bg-process { background: #EAF4F6; } /* distinct from bg-offwhite #F0F0F0 */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  padding-top: 2rem;
}

.process-line {
  position: absolute;
  top: 90px;
  left: calc(12.5% + 40px);
  right: calc(12.5% + 40px);
  height: 2px;
  background: none;
  border-top: 2px dashed rgba(26,140,160,0.3);
  z-index: 0;
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Circle — white by default, teal on hover */
.process-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(26,140,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, transform 0.35s ease;
}
.process-step:hover .process-circle {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 16px 45px rgba(26,140,160,0.35);
  transform: translateY(-5px);
}
/* Icon stroke switches to white on hover */
.process-step:hover .process-circle .process-icon svg {
  stroke: white;
}

/* Step number badge */
.process-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.process-icon { display: flex; align-items: center; justify-content: center; }
.process-icon svg {
  width: 48px; height: 48px;
  stroke: var(--teal-deep);
  transition: stroke 0.35s ease;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--silver-mid);
  line-height: 1.7;
}

/* Budget Slider */
.budget-group { margin-bottom: 0.5rem; }
.budget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.budget-header label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.budget-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-deep);
}
.budget-slider-wrap { position: relative; padding: 0.25rem 0; }
.budget-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--off-white);
  outline: none;
  cursor: pointer;
  position: relative;
}
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-deep);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.budget-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.budget-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-deep);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  cursor: pointer;
}
.budget-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: var(--silver-mid);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1260px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gallery-item[data-size="tall"] { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-item[data-size="tall"] img { min-height: 520px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,28,35,0.85));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================
   GALLERY LIGHTBOX MODAL
   ========================================= */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.gallery-modal[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 15, 0.95);
  cursor: pointer;
}

.gallery-modal-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
}
.gallery-modal-content img {
  max-height: 82vh;
  max-width: 88vw;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: block;
  transition: opacity 0.25s ease;
}
.gallery-modal-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}
.gallery-modal-counter {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* Close button */
.gallery-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.gallery-modal-close:hover { background: var(--teal); border-color: var(--teal); }
.gallery-modal-close svg { width: 18px; height: 18px; }

/* Arrows */
.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.gallery-modal-arrow:hover { background: var(--teal); border-color: var(--teal); }
.gallery-modal-arrow svg { width: 22px; height: 22px; }
.gallery-modal-prev { left: 1.5rem; }
.gallery-modal-next { right: 1.5rem; }

/* =========================================
   TESTIMONIALS — INFINITE MARQUEE
   ========================================= */
.testi-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.testi-header-left .section-label { color: var(--teal-mid); }
.testi-header-left .section-title { margin-bottom: 0; }
.testi-header-right p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}
.google-stars { color: #FFC107; letter-spacing: 2px; }

/* Marquee container */
.testi-marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Extra vertical padding so zoom doesn't get clipped */
  padding: 1.5rem 0;
  margin: -1.5rem 0;
  /* fade edges — only horizontal */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testi-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.testi-marquee-wrap:hover .testi-marquee { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual cards */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 300px;
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  cursor: default;
  position: relative;
}
.testimonial-card:hover {
  transform: scale(1.04) translateY(-4px);
  background: rgba(26,140,160,0.1);
  border-color: rgba(26,140,160,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  z-index: 2;
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-stars { color: #FFC107; font-size: 0.85rem; letter-spacing: 2px; }

.tcard-name {
  display: block;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.tcard-service {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.tcard-location {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid var(--teal);
  padding-left: 0.75rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-sub {
  color: var(--silver-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(26,140,160,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.15rem;
}
.contact-detail span {
  font-size: 0.9rem;
  color: var(--silver-mid);
}
.contact-detail span a {
  color: var(--silver-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail span a:hover { color: var(--teal); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--off-white);
}

/* Form */
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,140,160,0.1);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.25rem;
}
.contact-form-card > p {
  color: var(--silver-mid);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--off-white);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,140,160,0.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-error { font-size: 0.75rem; color: #e53e3e; min-height: 1rem; }

.recaptcha-note {
  font-size: 0.72rem;
  color: var(--silver-mid);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.recaptcha-note a { color: var(--teal); text-decoration: underline; }

.form-success {
  background: rgba(26,140,160,0.08);
  border: 1.5px solid rgba(26,140,160,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--teal-deep);
}
/* Critical: [hidden] must override display:flex */
.form-success[hidden] { display: none !important; }
.form-error-msg { background: rgba(220,53,69,0.07); border: 1px solid rgba(220,53,69,0.25); border-radius: var(--radius); color: #c0392b; font-size: 0.88rem; padding: 0.85rem 1rem; margin-bottom: 1rem; line-height: 1.6; }
.form-error-msg[hidden] { display: none !important; }
.form-success svg { width: 28px; height: 28px; color: var(--teal); flex-shrink: 0; }
.form-success p { font-weight: 500; font-size: 0.95rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--night);
  color: rgba(255,255,255,0.7);
  padding-top: 5rem;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo { height: 140px; width: auto; margin-bottom: 1.25rem; filter: brightness(0.9); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}
.social-link:hover { background: var(--teal); color: white; }
.social-link svg { width: 16px; height: 16px; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--teal); }
.footer-cta { margin-top: 1.5rem; }
/* Footer CTA btn: override hover to be darker teal (same as header) */
.footer-cta.btn-primary:hover {
  background: #0f6e80;
  box-shadow: 0 8px 30px rgba(26,140,160,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--teal); }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 20px rgba(26,140,160,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--teal-mid);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* =========================================
   RESPONSIVE
   ========================================= */


@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }


}

@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testi-header { grid-template-columns: 1fr; gap: 1rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .hamburger { margin-left: auto; flex-shrink: 0; margin-right: 30px;}
 

}

@media (max-width: 950px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { padding-bottom: 6rem; }
  .mission-vision { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  /* hero-container stays full-width — hero-content fills it naturally */
  .hero-content { max-width: 100%; margin-top: 0; }
  .hamburger { margin-left: auto; flex-shrink: 0; margin-right: 40px; }
  /* Hide topbar email on tablet */
  .topbar-item:last-child { display: none; }
  /* Shrink logo on tablet/mobile so hamburger is always visible */
  .logo-img { height: 30px; }
  .header-inner { padding: 0 1.25rem; gap: 0; height: 70px; }
}

@media (max-width: 768px) {
  /* Hide topbar entirely on mobile */
  .topbar { display: none; }
  .header, .header.scrolled { top: 0 !important; transition-property: background, box-shadow !important; }
  .section { padding: 70px 0; }
  .about.section { padding-top: 5rem; }
  .about-img-accent { right: -1rem; }

  /* Stats bar — horizontal compact strip */
  .hero-stats {
    flex-direction: row;
    gap: 0;
    width: calc(100% - 2rem);
    bottom: 1rem;
    left: 0.6rem;
    transform: none;
    border-radius: 10px;
  }
  .hero-stats.stats-hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }
  .hero-stat { flex: 1; padding: 0 0.5rem; gap: 0.1rem; }
  .hero-stat-divider { width: 1px; height: 36px; }
  .stat-num { font-size: 1.4rem; }
  .stat-plus { font-size: 0.9rem; }
  .stat-label { font-size: 0.58rem; letter-spacing: 0.06em; }

  /* hero-container and content stay aligned with padding inherited */
  .hero-content { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item[data-size="tall"] { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hamburger { margin-left: auto; flex-shrink: 0; margin-right: 30px; }
  .testimonial-card { width: 270px; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-slider-dots { bottom: 10rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-content { margin-top: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }
  .hero-slider-dots { bottom: 3rem; }
  .hero-arrow { display: none; }
  .hero-stats { display: none; }
  .hamburger { margin-left: auto; flex-shrink: 0; margin-right: 10px; }
  .hero-service-tag { margin-top: 20px; }
}

  /* ── FAQ PAGE SPECIFIC STYLES ── */
    .faq-hero {
      background: var(--teal-deep);
      padding: 7rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .faq-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(26,140,160,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .faq-hero .section-label { color: rgba(255,255,255,0.6); }
    .faq-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin: 0.75rem 0 1rem;
    }
    .faq-hero p {
      color: rgba(255,255,255,0.65);
      font-size: 1.05rem;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ── FAQ BODY ── */
    .faq-section {
      background: var(--off-white);
      padding: 5rem 0 6rem;
    }
    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 860px;
      margin: 3rem auto 0;
      padding: 0 2rem;
    }

    /* ── ACCORDION ITEMS ── */
    .faq-item {
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .faq-item:hover {
      box-shadow: 0 8px 32px rgba(26,140,160,0.10);
      transform: translateY(-2px);
    }
    .faq-item.open {
      border-color: rgba(26,140,160,0.25);
      box-shadow: 0 8px 32px rgba(26,140,160,0.12);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.4rem 1.6rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s ease;
    }
    .faq-question:hover { background: rgba(26,140,160,0.04); }
    .faq-num {
      font-size: 0.7rem;
      font-weight: 700;
      font-family: var(--font-display);
      color: var(--teal);
      background: rgba(26,140,160,0.1);
      border-radius: 6px;
      padding: 0.25rem 0.5rem;
      letter-spacing: 0.05em;
      flex-shrink: 0;
      min-width: 32px;
      text-align: center;
    }
    .faq-item.open .faq-num {
      background: var(--teal);
      color: white;
    }
    .faq-question-text {
      flex: 1;
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--teal-deep);
      letter-spacing: 0.01em;
      line-height: 1.4;
    }
    .faq-item.open .faq-question-text { color: var(--teal); }
    .faq-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s ease, transform 0.3s ease;
    }
    .faq-item.open .faq-icon {
      background: var(--teal);
      transform: rotate(45deg);
    }
    .faq-icon svg {
      width: 12px; height: 12px;
      stroke: var(--silver-mid);
      transition: stroke 0.2s ease;
    }
    .faq-item.open .faq-icon svg { stroke: white; }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .faq-answer-inner {
      padding: 0 1.6rem 1.5rem 1.6rem;
      padding-left: calc(1.6rem + 32px + 1rem);
      font-size: 0.9rem;
      color: var(--silver-mid);
      line-height: 1.75;
    }

    .faq-answer-inner a{
          color: var(--teal);
    }

    /* ── CTA BOTTOM ── */
    .faq-cta-section {
      background: var(--teal-deep);
      padding: 4.5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .faq-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 40% 60%, rgba(26,140,160,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .faq-cta-section .section-label { color: rgba(255,255,255,0.5); }
    .faq-cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: white;
      margin: 0.75rem 0 1rem;
    }
    .faq-cta-section p {
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      margin: 0 auto 2rem;
      max-width: 480px;
      line-height: 1.7;
    }
    .faq-cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-outline-white {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.35);
      color: white;
      padding: 0.85rem 2rem;
      border-radius: var(--radius);
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.6);
    }

    /* ── BREADCRUMB ── */
    .faq-breadcrumb {
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 0.75rem 0;
      margin-top: 112px;
    }
    .faq-breadcrumb-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--silver-mid);
    }
    .faq-breadcrumb-inner a {
      color: var(--teal);
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .faq-breadcrumb-inner a:hover { opacity: 0.75; }
    .faq-breadcrumb-inner svg { width: 12px; height: 12px; stroke: var(--silver-light); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .faq-breadcrumb { margin-top: 70px; }
      .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }
      .faq-hero { padding: 3rem 1rem 3rem; }
      .faq-answer-inner { padding-left: 1.6rem; }
    }



    .privacy-hero {
      background: var(--teal-deep);
      padding: 7rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .privacy-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(26,140,160,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .privacy-hero .section-label { color: rgba(255,255,255,0.6); }
    .privacy-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin: 0.75rem 0 1rem;
    }
    .privacy-hero p {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      margin: 0 auto;
    }

    /* Breadcrumb */
    .privacy-breadcrumb {
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 0.75rem 0;
      margin-top: 112px;
    }
    .privacy-breadcrumb-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--silver-mid);
    }
    .privacy-breadcrumb-inner a { color: var(--teal); text-decoration: none; transition: opacity 0.2s; }
    .privacy-breadcrumb-inner a:hover { opacity: 0.75; }
    .privacy-breadcrumb-inner svg { width: 12px; height: 12px; stroke: var(--silver-light); }

    /* Content */
    .privacy-section {
      background: var(--off-white);
      padding: 5rem 0 6rem;
    }
    .privacy-content {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .privacy-card {
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(0,0,0,0.06);
      padding: 2.5rem 3rem;
      margin-bottom: 1.25rem;
    }
    .privacy-card:last-child { margin-bottom: 0; }

    .privacy-card h2 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--teal-deep);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .privacy-card h2 .section-num {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--teal);
      background: rgba(26,140,160,0.1);
      border-radius: 6px;
      padding: 0.25rem 0.5rem;
      letter-spacing: 0.05em;
      flex-shrink: 0;
    }
    .privacy-card p {
      font-size: 0.92rem;
      color: var(--silver-mid);
      line-height: 1.8;
      margin-bottom: 0.85rem;
    }
    .privacy-card p:last-child { margin-bottom: 0; }
    .privacy-card ul {
      margin: 0.5rem 0 0.85rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .privacy-card ul li {
      font-size: 0.92rem;
      color: var(--silver-mid);
      line-height: 1.7;
      padding-left: 0.25rem;
    }
    .privacy-card ul li::marker { color: var(--teal); }
    .privacy-card a {
      color: var(--teal);
      text-decoration: none;
      border-bottom: 1px solid rgba(26,140,160,0.3);
      transition: border-color 0.2s ease;
    }
    .privacy-card a:hover { border-color: var(--teal); }

    .privacy-effective {
      background: rgba(26,140,160,0.06);
      border-left: 3px solid var(--teal);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 1rem 1.25rem;
      margin-bottom: 2rem;
      font-size: 0.85rem;
      color: var(--silver-mid);
    }
    .privacy-effective strong { color: var(--teal-deep); }

    /* CTA */
    .privacy-cta-section {
      background: var(--teal-deep);
      padding: 4.5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .privacy-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 40% 60%, rgba(26,140,160,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .privacy-cta-section .section-label { color: rgba(255,255,255,0.5); }
    .privacy-cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: white;
      margin: 0.75rem 0 1rem;
    }
    .privacy-cta-section p {
      color: rgba(255,255,255,0.6);
      font-size: 0.95rem;
      margin: 0 auto 2rem;
      max-width: 460px;
      line-height: 1.7;
    }
    .btn-outline-white {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.35);
      color: white;
      padding: 0.85rem 2rem;
      border-radius: var(--radius);
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
      display: inline-block;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
    .privacy-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    @media (max-width: 768px) {
      .privacy-breadcrumb { margin-top: 70px; }
      .privacy-card { padding: 1.75rem 1.5rem; }
      .privacy-hero { padding: 3rem 1rem 3rem; }
    }


    .terms-hero {
      background: var(--teal-deep);
      padding: 7rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .terms-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(26,140,160,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .terms-hero .section-label { color: rgba(255,255,255,0.6); }
    .terms-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin: 0.75rem 0 1rem;
    }
    .terms-hero p {
      color: rgba(255,255,255,0.6);
      font-size: 0.92rem;
      margin: 0 auto;
    }

    /* Breadcrumb */
    .terms-breadcrumb {
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 0.75rem 0;
      margin-top: 112px;
    }
    .terms-breadcrumb-inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--silver-mid);
    }
    .terms-breadcrumb-inner a { color: var(--teal); text-decoration: none; transition: opacity 0.2s; }
    .terms-breadcrumb-inner a:hover { opacity: 0.75; }
    .terms-breadcrumb-inner svg { width: 12px; height: 12px; stroke: var(--silver-light); }

    /* Content */
    .terms-section {
      background: var(--off-white);
      padding: 5rem 0 6rem;
    }
    .terms-content {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .terms-effective {
      background: rgba(26,140,160,0.06);
      border-left: 3px solid var(--teal);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 1rem 1.25rem;
      margin-bottom: 2rem;
      font-size: 0.85rem;
      color: var(--silver-mid);
      line-height: 1.7;
    }
    .terms-effective strong { color: var(--teal-deep); }

    .terms-card {
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(0,0,0,0.06);
      padding: 2.5rem 3rem;
      margin-bottom: 1.25rem;
    }
    .terms-card:last-child { margin-bottom: 0; }
    .terms-card h2 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--teal-deep);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .terms-card h2 .section-num {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--teal);
      background: rgba(26,140,160,0.1);
      border-radius: 6px;
      padding: 0.25rem 0.5rem;
      letter-spacing: 0.05em;
      flex-shrink: 0;
    }
    .terms-card p {
      font-size: 0.92rem;
      color: var(--silver-mid);
      line-height: 1.8;
      margin-bottom: 0.85rem;
    }
    .terms-card p:last-child { margin-bottom: 0; }
    .terms-card ul {
      margin: 0.5rem 0 0.85rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .terms-card ul li {
      font-size: 0.92rem;
      color: var(--silver-mid);
      line-height: 1.7;
      padding-left: 0.25rem;
    }
    .terms-card ul li::marker { color: var(--teal); }
    .terms-card a {
      color: var(--teal);
      text-decoration: none;
      border-bottom: 1px solid rgba(26,140,160,0.3);
      transition: border-color 0.2s ease;
    }
    .terms-card a:hover { border-color: var(--teal); }
    .terms-card strong { color: var(--teal-deep); font-weight: 700; }

    /* Notice box inside card */
    .terms-notice {
      background: rgba(26,140,160,0.05);
      border: 1px solid rgba(26,140,160,0.15);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      margin-top: 1rem;
      font-size: 0.88rem;
      color: var(--silver-mid);
      line-height: 1.7;
    }
    .terms-notice strong { color: var(--teal); }

    /* CTA */
    .terms-cta-section {
      background: var(--teal-deep);
      padding: 4.5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .terms-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 40% 60%, rgba(26,140,160,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .terms-cta-section .section-label { color: rgba(255,255,255,0.5); }
    .terms-cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: white;
      margin: 0.75rem 0 1rem;
    }
    .terms-cta-section p {
      color: rgba(255,255,255,0.6);
      font-size: 0.95rem;
      margin: 0 auto 2rem;
      max-width: 460px;
      line-height: 1.7;
    }
    .terms-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-outline-white {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.35);
      color: white;
      padding: 0.85rem 2rem;
      border-radius: var(--radius);
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
      display: inline-block;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

    @media (max-width: 768px) {
      .terms-breadcrumb { margin-top: 70px; }
      .terms-card { padding: 1.75rem 1.5rem; }
      .terms-hero { padding: 3rem 1rem 3rem; }
    }
    
    
    
 