/* ============================================
   SHANTI ENTERPRISES — Clean Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --navy-900: #060a12;
  --navy-800: #0b111e;
  --navy-700: #10192a;
  --navy-600: #17243c;
  --navy-500: #1e293b;
  --blue-400: #0ea5e9;
  --gold: #0ea5e9;
  --gold-light: #38bdf8;
  --gold-glow: rgba(14, 165, 233, 0.2);
  --green: #10b981;
  --red: #ef4444;
  --white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #94a3b8;
  --glass: rgba(15, 23, 42, 0.45);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-hover: rgba(15, 23, 42, 0.65);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  background: var(--navy-900);
  color: var(--gray-300);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Section Heading ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.section-header h2 span {
  color: var(--gold);
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(6, 16, 31, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  transition: transform 0.3s var(--ease);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-900) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px var(--gold-glow);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px var(--gold-glow); color: var(--navy-900) !important; }

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}

/* Subtle background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: drift 10s ease-in-out infinite;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  background: var(--gold);
}
.hero-shape:nth-child(1) { width: 280px; height: 280px; top: 8%; right: 8%; animation: drift 14s ease-in-out infinite; }
.hero-shape:nth-child(2) { width: 120px; height: 120px; top: 55%; left: 5%; animation: drift 9s ease-in-out infinite 2s; background: var(--blue-400); opacity: 0.05; }
.hero-shape:nth-child(3) { width: 60px; height: 60px; top: 25%; left: 35%; animation: drift 7s ease-in-out infinite 1s; }
.hero-shape:nth-child(4) { width: 180px; height: 180px; bottom: 12%; right: 25%; animation: drift 11s ease-in-out infinite 3s; background: var(--blue-400); opacity: 0.03; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeIn 0.8s var(--ease) 0.2s both;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s var(--ease) 0.8s both;
}

.hero-pill {
  padding: 7px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-300);
  font-weight: 500;
  transition: all 0.3s;
}
.hero-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  animation: fadeUp 0.8s var(--ease) 1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  box-shadow: 0 4px 18px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 0.8s var(--ease) 1.2s both;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 110px 0;
  background: var(--navy-800);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.profile-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.profile-card::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 4px 4px;
}

.profile-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.15);
  display: block;
}

.profile-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.profile-card .title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(212, 168, 83, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.stat-box .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-box .lbl {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: left;
  line-height: 1.3;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--gray-500);
  padding: 6px 0;
}

.contact-line svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.about-text h3 span { color: var(--gold); }

.about-text p {
  margin-bottom: 14px;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.feature-box:hover {
  background: var(--glass-hover);
  transform: translateY(-2px);
}

.feature-box .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-box .ico svg { width: 17px; height: 17px; stroke: var(--gold); }

.feature-box h4 { font-size: 0.88rem; font-weight: 600; }
.feature-box p { font-size: 0.78rem; color: var(--gray-500); margin: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 110px 0;
  background: var(--navy-900);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 11px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn:hover { color: var(--white); border-color: rgba(212,168,83,0.25); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  font-weight: 600;
  border-color: transparent;
  box-shadow: 0 3px 14px var(--gold-glow);
}

.tab-panel { display: none; animation: tabFade 0.4s var(--ease); }
.tab-panel.active { display: block; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  background: var(--glass-hover);
  border-color: rgba(212, 168, 83, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.card .icon {
  width: 50px; height: 50px;
  margin: 0 auto 16px;
  border-radius: 13px;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.card:hover .icon { background: rgba(212, 168, 83, 0.15); }
.card .icon svg { width: 23px; height: 23px; stroke: var(--gold); }

.card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   IMPACT STATS
   ============================================ */
.impact {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 50%, var(--navy-700) 100%);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 28px 16px;
}

.stat .number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat .label {
  font-size: 0.92rem;
  color: var(--gray-300);
  font-weight: 500;
}

.stat .line {
  width: 36px; height: 2px;
  background: var(--gold);
  margin: 10px auto 0;
  opacity: 0.4;
  border-radius: 1px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 110px 0;
  background: var(--navy-800);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
}
.why-card:hover {
  background: var(--glass-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.why-card:hover .ico { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.why-card .ico svg { width: 22px; height: 22px; stroke: var(--gold); transition: stroke 0.3s; }
.why-card:hover .ico svg { stroke: var(--navy-900); }

.why-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.why-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

/* ============================================
   MISSION / VISION / VALUES
   ============================================ */
.mvv {
  padding: 110px 0;
  background: var(--navy-900);
}

.mvv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.mvv-card {
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  transition: all 0.3s;
}
.mvv-card:hover { transform: translateY(-3px); }

.mvv-card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.mvv-card p { font-size: 0.95rem; line-height: 1.8; }

.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-box {
  text-align: center;
  padding: 28px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.value-box:hover { background: var(--glass-hover); transform: translateY(-3px); }

.value-box .v-icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-box .v-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.value-box h4 { font-size: 0.92rem; margin-bottom: 6px; }
.value-box p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.55; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 110px 0;
  background: var(--navy-800);
  overflow: hidden;
}

.slider {
  max-width: 740px;
  margin: 0 auto;
}

.slide {
  padding: 44px 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  display: none;
  animation: slideFade 0.5s var(--ease);
}
.slide.active { display: block; }

.slide .quote {
  font-size: 2.8rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 18px;
}

.slide .text {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.slide .author {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.slide .role {
  font-size: 0.84rem;
  color: var(--gray-500);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-300);
  font-size: 1.3rem;
  transition: all 0.3s;
}
.arrow:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }

.dots { display: flex; gap: 7px; }

.dot-btn {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.dot-btn.active {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ============================================
   UPDATES
   ============================================ */
.updates {
  padding: 110px 0;
  background: var(--navy-900);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.update-item:hover { background: var(--glass-hover); transform: translateX(4px); }

.update-item .ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.update-item .ico svg { width: 20px; height: 20px; stroke: var(--gold); }

.update-item h4 { font-size: 0.92rem; margin-bottom: 3px; }
.update-item p { font-size: 0.82rem; color: var(--gray-500); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 110px 0;
  background: var(--navy-800);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}

.contact-info h3 { font-size: 1.6rem; margin-bottom: 10px; }
.contact-info h3 span { color: var(--gold); }
.contact-info > p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }

.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: all 0.3s;
}
.contact-box:hover { background: var(--glass-hover); }

.contact-box .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-box .ico svg { width: 18px; height: 18px; stroke: var(--gold); }

.contact-box h4 { font-size: 0.88rem; margin-bottom: 3px; }
.contact-box p { font-size: 0.85rem; color: var(--gray-500); }

/* ── Form ── */
.form-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card > p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(6, 16, 31, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all 0.3s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-500); }

.field textarea { resize: vertical; min-height: 72px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7f96' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { background: var(--navy-800); color: var(--white); }

.check-group { display: flex; flex-wrap: wrap; gap: 8px; }

.check-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(6, 16, 31, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--gray-300);
  transition: all 0.3s;
}
.check-label:hover { border-color: rgba(212,168,83,0.25); }
.check-label input { width: auto; accent-color: var(--gold); }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(6, 16, 31, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: all 0.3s;
}
.radio-label:hover { border-color: rgba(212,168,83,0.25); }
.radio-label input { width: auto; accent-color: var(--gold); }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px var(--gold-glow);
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }

.form-success {
  display: none;
  text-align: center;
  padding: 36px;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success svg { width: 56px; height: 56px; stroke: var(--green); margin: 0 auto 14px; display: block; }
.form-success h4 { font-size: 1.15rem; margin-bottom: 6px; }
.form-success p { color: var(--gray-500); }

.form-error { font-size: 0.76rem; color: var(--red); margin-top: 4px; display: none; }
.field.error input,
.field.error select,
.field.error textarea { border-color: var(--red); }
.field.error .form-error { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 56px 0 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.7; }
.footer-tagline { font-size: 0.82rem; font-style: italic; color: var(--gold); opacity: 0.7; }

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 4px 0;
  transition: all 0.3s;
}
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-500); }

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px var(--gold-glow);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  z-index: 999;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, -20px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.6); }
}

@keyframes tabFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  /* About — stack vertically, center profile card */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .profile-card {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Stats 2-column */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Values 3-column */
  .values-row { grid-template-columns: repeat(3, 1fr); }

  /* Mission/Vision stack */
  .mvv-row { grid-template-columns: 1fr; }

  /* Contact stack */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer 2-column */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* ── Mobile Nav Drawer ── */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 16, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .menu-toggle { display: flex; }

  /* ── Mobile Overlay (darken background when menu open) ── */
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  /* ── Hero ── */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content { padding-top: 100px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.3rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-pills { gap: 8px; }
  .hero-pill { padding: 6px 12px; font-size: 0.75rem; }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }

  /* ── Section spacing ── */
  .about, .services, .why-us, .mvv, .testimonials, .updates, .contact {
    padding: 72px 0;
  }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* ── About ── */
  .about-text h3 { font-size: 1.3rem; }

  /* ── Services ── */
  .tabs { gap: 6px; justify-content: center; }
  .tab-btn {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .card { padding: 24px 18px; }

  /* ── Stats ── */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 22px 12px; }
  .stat .number { font-size: clamp(1.8rem, 5vw, 2.4rem); }

  /* ── Why Us ── */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 22px; }

  /* ── Values ── */
  .values-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value-box { padding: 22px 14px; }

  /* ── Testimonials ── */
  .slide { padding: 32px 24px; }
  .slide .text { font-size: 0.92rem; }
  .slide .quote { font-size: 2.2rem; }

  /* ── Updates ── */
  .updates-grid { grid-template-columns: 1fr; }

  /* ── Contact & Form ── */
  .contact-info h3 { font-size: 1.3rem; }
  .form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .check-group { gap: 6px; }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-col { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* ── Back to top ── */
  .back-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
}

/* ============================================
   RESPONSIVE — Small Mobile (≤600px)
   ============================================ */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  .hero-content { padding-top: 90px; }
  .hero h1 { font-size: clamp(1.4rem, 7vw, 1.9rem); line-height: 1.25; }

  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .tab-btn {
    text-align: center;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .mvv-card { padding: 26px 20px; }
  .mvv-card h3 { font-size: 1.05rem; }

  .why-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .profile-card { padding: 28px 20px; }
  .avatar { width: 80px; height: 80px; font-size: 1.6rem; }
  .profile-card h3 { font-size: 1.05rem; }

  .contact-line {
    font-size: 0.78rem;
    word-break: break-all;
  }
}

/* ============================================
   RESPONSIVE — Extra Small (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-badge { display: none; }
  .hero-scroll { display: none; }

  .hero h1 { font-size: 1.4rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-pills { display: none; }
  .hero-btns .btn { padding: 12px 24px; font-size: 0.88rem; }

  .section-header h2 { font-size: 1.35rem; }
  .section-header p { font-size: 0.88rem; }

  .about, .services, .why-us, .mvv, .testimonials, .updates, .contact {
    padding: 56px 0;
  }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; }

  .slide { padding: 24px 16px; }
  .slide .text { font-size: 0.88rem; line-height: 1.7; }
  .slide .author { font-size: 0.92rem; }

  .form-card { padding: 22px 16px; }
  .check-group { flex-direction: column; }
  .check-label { width: 100%; }
  .radio-group { flex-direction: column; }
  .radio-label { width: 100%; }

  .btn-submit { padding: 13px; font-size: 0.9rem; }

  .footer { padding: 40px 0 0; }
  .footer-grid { gap: 20px; }
  .footer-bottom { padding: 16px 0; }
  .footer-bottom p { font-size: 0.75rem; }
}

/* ============================================
   RESPONSIVE — Touch & Accessibility
   ============================================ */
@media (hover: none) {
  /* Remove hover transforms on touch devices */
  .card:hover,
  .why-card:hover,
  .value-box:hover,
  .feature-box:hover,
  .update-item:hover,
  .contact-box:hover,
  .mvv-card:hover {
    transform: none;
  }
}

/* Ensure text doesn't overflow on any screen */
.contact-line,
.contact-box p,
.footer-col a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Print styles */
@media print {
  .navbar, .hero-shapes, .hero-scroll, .back-top, .menu-toggle { display: none; }
  body { background: white; color: #333; }
  .hero { min-height: auto; padding: 40px 0; background: white; }
  section { padding: 30px 0; break-inside: avoid; }
}
