@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
  --navy:         #0C1F3F;
  --navy-700:     #162D55;
  --navy-600:     #1E3A6E;
  --navy-400:     #2E5491;
  --navy-200:     #6B90C4;
  --navy-100:     #C5D5EB;
  --navy-50:      #EBF1F9;

  --white:        #ffffffcf;
  --gray-50:      #F8F9FB;
  --gray-100:     #EFF1F5;
  --gray-200:     #DDE1EA;
  --gray-400:     #9EA8BC;
  --gray-600:     #5C6A82;
  --gray-800:     #2B3348;
  --text:         #1A2438;

  --accent:       #1E56A0;
  --accent-light: #2E6FCC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-s:  6px;
  --radius-m:  12px;
  --radius-l:  20px;
  --radius-xl: 32px;

  --shadow-s:  0 2px 10px rgba(12,31,63,0.08);
  --shadow-m:  0 8px 30px rgba(12,31,63,0.12);
  --shadow-l:  0 20px 60px rgba(12,31,63,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy-400); border-radius: 3px; }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
section { padding: 96px 0; }

/* ══════════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-600);
  border-color: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled { color: var(--navy); }  
.navbar.scrolled .nav-links a { color: var(--gray-800); }
.navbar.scrolled .nav-logo { color: var(--navy); }
.navbar.scrolled .hamburger span { background: var(--navy); }
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-s);
}
.navbar.hero-dark { background: transparent; }
.navbar.hero-dark .nav-logo { color: var(--white); }
.navbar.hero-dark .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.hero-dark .nav-links a:hover { color: var(--white); }
.navbar.hero-dark .nav-cta { background: var(--white); color: var(--navy); }
.navbar.hero-dark .hamburger span { background: var(--white); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.nav-logo span { color: var(--accent); }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-800);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-s);
  font-weight: 600 !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--navy-600) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 6px 16px 6px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #5B9CF6;
  border-radius: 50%;
  animation: badgepulse 2.5s ease-in-out infinite;
}
@keyframes badgepulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  word-break: keep-all;
  overflow-wrap: break-word;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: #5B9CF6;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual panel */
.hero-visual {
  position: relative;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-l);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-fallback {
  width: 100%;
  height: 100%;
  background: var(--navy-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-img-fallback svg {
  width: 80px;
  height: 80px;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  stroke-width: 1;
}
.hero-img-fallback p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 24px;
}
.hero-stats-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  box-shadow: var(--shadow-l);
  display: flex;
  gap: 24px;
  z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.hero-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-top: 4px;
}
.hero-accent-pill {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-m);
  z-index: 2;
}
.hero-accent-pill .pill-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: badgepulse 2s infinite;
}
.hero-accent-pill p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  cursor: pointer;
}
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollwheel 2s ease-in-out infinite;
}
@keyframes scrollwheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickscroll 30s linear infinite;
}
@keyframes tickscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--navy-200);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-m);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-fallback {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-fallback svg {
  width: 80px;
  height: 80px;
  stroke: var(--navy-200);
  fill: none;
  stroke-width: 1;
}
.about-caption {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-m);
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: var(--shadow-m);
  max-width: 220px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.about-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-m);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.about-stat:hover {
  background: var(--navy-50);
  border-color: var(--navy-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow-s);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.about-stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-top: 6px;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.hl-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hl-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-50);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hl-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hl-row p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--gray-50); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-lead { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
  border-color: var(--navy-100);
}
.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-fallback {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-fallback svg {
  width: 56px;
  height: 56px;
  stroke: rgba(255,255,255,0.25);
  fill: none;
  stroke-width: 1;
}
.service-highlight {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}
.service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.service-icon-box {
  width: 46px;
  height: 46px;
  background: var(--navy-50);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.service-card:hover .service-icon-box {
  background: var(--navy);
}
.service-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}
.service-card:hover .service-icon-box svg { stroke: var(--white); }
.service-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: rotate(-45deg);
}
.service-arrow svg { width: 14px; height: 14px; }
.service-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
  flex: 1;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap { position: relative; order: 2; }
.why-img-frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-m);
}
.why-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-img-fallback {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img-fallback svg {
  width: 80px;
  height: 80px;
  stroke: var(--gray-300);
  fill: none;
  stroke-width: 1;
}
.why-badge-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  box-shadow: var(--shadow-l);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.why-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}
.why-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.why-badge-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
.why-text { order: 1; }
.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-m);
  transition: var(--transition);
}
.why-point:hover {
  background: var(--navy-50);
  border-color: var(--navy-100);
  transform: translateX(4px);
}
.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-point-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-point h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.why-point p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery { background: var(--gray-50); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid .g-item:nth-child(5n+1),
.gallery-grid .g-item:nth-child(5n+4) { grid-column: span 2; }
.g-item {
  overflow: hidden;
  border-radius: var(--radius-m);
  position: relative;
  cursor: pointer;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,31,63,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-overlay span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--navy); padding: 96px 0; }
.testimonials .eyebrow { color: var(--navy-100); }
.testimonials .eyebrow::before { background: var(--navy-100); }
.testimonials .section-title { color: var(--white); }
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-l);
  padding: 32px;
  transition: var(--transition);
}
.tcard:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.tcard-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  width: 14px;
  height: 14px;
  fill: #FBC02D;
}
.tcard-quote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-display);
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.tcard-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.tcard-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Contact left */
.contact-img-frame {
  margin-top: 40px;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-m);
}
.contact-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.contact-img-fallback {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-img-fallback svg {
  width: 60px;
  height: 60px;
  stroke: var(--navy-200);
  fill: none;
  stroke-width: 1;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.cinfo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cinfo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cinfo-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 3px;
}
.cinfo-value {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.cinfo-value:hover { color: var(--accent); }

/* Contact form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 48px 44px;
  box-shadow: var(--shadow-m);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.form-sub {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-s);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--navy-50);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--white); }

.btn-submit-full {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit-full:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,31,63,0.25);
}
.btn-submit-full svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy); padding: 80px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: #5B9CF6; }
.footer-logo img { height: 44px; width: auto; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.6);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition);
}
.footer-col ul li a:hover::before { width: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy span { color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }


/* ── Footer credit ── */
.footer-credit {
  color: rgba(255,255,255,0.18);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: inherit;
}
.footer-credit:hover {
  color: rgba(255,255,255,0.65);
}
/* ══════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-fab svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: none;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition-fast);
  box-shadow: var(--shadow-m);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-600); }
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════════
   TOAST MESSAGES
══════════════════════════════════════ */
.toast-stack {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text);
  max-width: 360px;
  box-shadow: var(--shadow-m);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastin 0.4s ease;
  pointer-events: auto;
}
.toast.success { border-left: 3px solid #22C55E; }
.toast.error   { border-left: 3px solid #EF4444; }
@keyframes toastin {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team { background: var(--gray-50); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-header .section-lead { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
  border-color: var(--navy-100);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-50);
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }

.team-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.team-photo-fallback span {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
}

.team-info {
  padding: 22px 20px 24px;
}
.team-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content  { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-wrap { display: block; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-img-wrap  { display: block; }
  .contact-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--navy); }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item:nth-child(3n+1) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 24px; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 {
  word-break: keep-all;
  overflow-wrap: break-word; font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Team responsive overrides ── */
@media (max-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .team-grid { grid-template-columns: 1fr; } }


/* ── Logo on scrolled navbar: dark bg pill so white text stays visible ── */
.navbar.scrolled .nav-logo img {
  background: var(--navy);
  border-radius: 6px;
  padding: 4px 8px;
}
