/*
* Theme/Site: Elevate School of Mastery
* Author: Mary Olive Atim
* Version: 2.0
* License: © 2026 All Rights Reserved
*Built: March 2026
*/

:root {
  /* Brand Palette - Matching Reference Image */
  --navy-deep: #2d3344;
  --navy: #252a36;
  --navy-mid: #2d3344;
  --navy-light: #3d4456;
  --gold-vivid: #d4a84b;
  --gold: #c99a3c;
  --gold-light: #e8c468;
  --gold-pale: #a88a4a;
  --slate-blue: #5a5f7a;

  /* Neutral Palette */
  --white: #ffffff;
  --off-white: #2d3344;
  --text-dark: #ffffff;
  --text-mid: #c99a3c;
  --text-dim: rgba(201, 154, 60, 0.7);

  /* Gradients - Muted/Tonal */
  --grad-navy: linear-gradient(135deg, #252a36 0%, #1a1d26 100%);
  --grad-gold: linear-gradient(135deg, #c99a3c 0%, #e8c468 100%);
  --grad-soft: linear-gradient(180deg, rgba(45, 51, 68, 0) 0%, rgba(45, 51, 68, 1) 100());

  /* Depth & Form */
  --shadow-sm: 0 2px 4px rgba(26, 29, 38, 0.2);
  --shadow-md: 0 12px 32px rgba(26, 29, 38, 0.3);
  --shadow-lg: 0 24px 64px rgba(26, 29, 38, 0.4);
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Editorial Spacing */
  --space-unit: clamp(1rem, 1.5vw, 2rem);
  --section-pad: clamp(4rem, 10vw, 10rem);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy-mid);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.heading-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.subheading-font {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 29, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-unit);
  height: 80px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

nav.scrolled {
  height: 70px;
  background: rgba(26, 29, 38, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-mid) !important;
  padding: 10px 24px !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* ============ MOBILE MENU ============ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    display: none;
    border-top: 1px solid rgba(212, 168, 75, 0.1);
  }

  .nav-links.open {
    display: flex;
  }
}

/* ============ PAGES ============ */
.page {
  display: none;
  min-height: 100vh;
  padding-top: 72px;
}

.page.active {
  display: block;
}

/* ============ HOME PAGE ============ */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background: var(--navy-mid);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(208, 125, 5, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(208, 125, 5, 0.05) 0%, transparent 50%);
}

/* Custom background letter for editorial feel */
.hero::before {
  content: 'E';
  position: absolute;
  left: 5%;
  top: 15%;
  font-family: 'Playfair Display', serif;
  font-size: 60vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
}

.hero-content, .about-hero-inner .hero-content, .page-banner-inner .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px var(--space-unit);
  width: 100%;
}

.hero-text {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-bottom: 32px;
  text-transform: none;
  color: var(--white);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 60px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 24px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208, 125, 5, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeInUp 0.8s 0.2s ease both;
  position: relative;
}

.hero-img-container {
  position: relative;
  width: 420px;
}

.hero-img-container img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(2, 8, 20, 0.5));
  border-radius: 4px; /* Added slight radius for the full background look */
}

.hero-img-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  background: #c99a3c;
  filter: blur(30px);
  border-radius: 50%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(208, 125, 5, 0.15);
  margin-top: 60px;
}

.stat {
  padding: 40px 48px;
  border-right: 1px solid rgba(208, 125, 5, 0.15);
  animation: fadeInUp 0.8s calc(var(--i) * 0.15s + 0.4s) ease both;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============ SECTION STYLES ============ */
.section {
  padding: var(--section-pad) var(--space-unit);
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

.divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 40px 0 60px;
  opacity: 0.6;
}

/* ============ TOPICS / ACADEMIES SECTION ============ */
.topics-section {
  background: var(--navy);
  padding: 100px 0;
}

.topic-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topic-row:first-child {
  padding-top: 0;
}

.topic-sidebar {
  text-align: right;
}

.topic-id {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.topic-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

.topic-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--white);
}

.topic-details p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.topic-details p strong {
  color: var(--gold);
}

.topic-feature {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--gold);
}

.topic-feature h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.topic-feature p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* AI Academy Scope */
.ai-scope {
  margin-top: 24px;
  padding: 28px;
  background: rgba(201, 154, 60, 0.08);
  border: 1px solid rgba(201, 154, 60, 0.2);
  border-radius: 4px;
}

.ai-scope h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}

.ai-scope ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-scope li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-scope li:last-child {
  border-bottom: none;
}

.ai-scope li strong {
  color: var(--white);
  font-weight: 500;
}

/* ============ PROMISE SECTION ============ */
.promise-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 120px 0;
  text-align: center;
}

.promise-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 40px;
}

.promise-cta {
  margin-top: 40px;
}

/* ============ SERVICES GRID ============ */
.home-services {
  background: var(--navy);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.service-card {
  padding: 60px 48px;
  background: var(--navy-light);
  border: 1px solid rgba(45, 51, 68, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--navy-mid);
  transform: translateY(-8px);
}

.service-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--white);
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 120px 0;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(208, 125, 5, 0.1) 0%, transparent 50%);
}

.about-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
  position: relative;
  z-index: 1;
}

.about-intro {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}

.about-mission {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
}

.mission-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 40px;
}

.mission-details {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

/* ============ VALUES SECTION ============ */
.about-values {
  background: var(--navy-mid);
  padding: 120px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.value-card {
  padding: 48px 36px;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.value-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--white);
}

.value-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ TEAM SECTION ============ */
.team-section {
  background: var(--navy);
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.team-card {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 10;
}

.team-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy-light);
}

.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-card:hover .team-card-img-wrap img {
  transform: scale(1.05);
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
}

.team-placeholder-inner {
  text-align: center;
}

.team-placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.team-placeholder-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-top: 20px;
  color: var(--white);
}

.team-card-role {
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ============ TEAM MODAL ============ */
.team-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.team-modal-backdrop.open {
  display: flex;
}

.team-modal {
  background: var(--navy);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(212, 168, 75, 0.2);
}

.team-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.team-modal-close:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ============ WHAT WE DO PAGE ============ */
.page-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 120px 0;
  position: relative;
}

.page-banner::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.page-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
  position: relative;
  z-index: 1;
}

/* ============ OFFERINGS ============ */
.offerings-section {
  background: var(--navy);
  padding: 120px 0;
}

.offerings-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
}

.offering-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offering-row:first-child {
  padding-top: 0;
}

.offering-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.offering-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

.offering-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--white);
}

.offering-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ============ HOW SECTION ============ */
.how-section {
  background: var(--navy-mid);
  padding: 120px 0;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.how-card {
  padding: 40px;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.how-card:last-child {
  grid-column: 1 / -1;
}

.how-card:hover {
  border-color: var(--gold);
}

.how-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.how-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--white);
}

.how-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ SERVE SECTION ============ */
.serve-section {
  background: var(--navy);
  padding: 120px 0;
}

.serve-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.serve-card {
  padding: 40px 32px;
  background: var(--navy-light);
  text-align: center;
  transition: all 0.4s ease;
}

.serve-card:hover {
  transform: translateY(-8px);
  background: var(--navy-mid);
}

.serve-icon {
  font-size: 40px;
  margin-bottom: 24px;
}

.serve-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--white);
}

.serve-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ TRAINING PAGE ============ */
.home-services .section {
  padding: 0 48px;
}

/* ============ CONTACT PAGE ============ */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 120px 0;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(208, 125, 5, 0.1) 0%, transparent 50%);
}

.contact-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-hero-inner .hero-text {
  grid-column: 1 / 2;
}

.contact-hero-inner .hero-visual {
  grid-column: 1 / 2;
  margin-top: 40px;
  justify-content: flex-start;
}

.contact-hero-inner .contact-form-wrap {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.contact-item {
  margin-top: 32px;
}

.contact-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item-value {
  font-size: 18px;
  color: var(--white);
}

.contact-form-wrap {
  background: var(--navy-light);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--white);
}

.form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: var(--navy-mid);
  padding: 120px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.faq-icon {
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 24px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-unit);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 30px var(--space-unit) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-container {
    max-width: 360px;
    margin: 0 auto;
  }

  .team-grid,
  .values-grid,
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(208, 125, 5, 0.15);
    text-align: center;
  }

  .topic-row,
  .offering-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .topic-sidebar {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .services-grid,
  .team-grid,
  .values-grid,
  .how-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }
}