/* ============================================
   ASH MORGAN — EXPERT EXAM TUTOR
   Brand Stylesheet — Polished v2
   ============================================ */

/* --- Google Fonts loaded in HTML head --- */

:root {
  --navy: #0F2347;
  --navy-light: #1a3366;
  --navy-mid: #162d54;
  --gold: #C9A327;
  --gold-light: #DDB94A;
  --gold-pale: rgba(201, 163, 39, 0.1);
  --cream: #F8F5EE;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-mid: #666;
  --text-light: #999;
  --border: rgba(201, 163, 39, 0.3);
  --shadow-sm: 0 2px 12px rgba(15, 35, 71, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 35, 71, 0.1);
  --shadow-lg: 0 20px 70px rgba(15, 35, 71, 0.15);
  --shadow-glow: 0 0 60px rgba(201, 163, 39, 0.15);
  --radius: 4px;
  --max-width: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* Smooth reveal animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 35, 71, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 163, 39, 0.1);
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(15, 35, 71, 0.4);
  background: rgba(15, 35, 71, 0.98);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

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

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: inline-block;
  padding: 11px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 163, 39, 0.3);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-mid) 70%, #0d1e3d 100%);
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 163, 39, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 163, 39, 0.04) 0%, transparent 50%);
}

.hero-math {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-math span {
  position: absolute;
  font-family: 'EB Garamond', serif;
  color: rgba(201, 163, 39, 0.06);
  font-size: clamp(28px, 4vw, 60px);
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-heading em {
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.hero-sub {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 17px 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 163, 39, 0.35);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 163, 39, 0.05);
}

.hero-image {
  position: relative;
}

.hero-image-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 163, 39, 0.2);
  border-radius: 12px;
  overflow: hidden;
  margin-left: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 163, 39, 0.1);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

/* Photo placeholder styling */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(201,163,39,0.08) 0%, rgba(15,35,71,0.15) 100%);
  text-align: center;
  padding: 40px;
}

.photo-placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 163, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
}

.photo-placeholder-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.photo-placeholder-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201, 163, 39, 0.4);
  z-index: 3;
}

.hero-image-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.hero-image-badge .badge-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-frame { margin: 0 auto; max-width: 300px; }
  .hero-image-badge { left: 50%; transform: translateX(-50%); bottom: -16px; }
  .hero { padding: 70px 0 40px; min-height: auto; }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 48px rgba(15, 35, 71, 0.08);
  padding: 52px 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(201,163,39,0.3), transparent);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mid);
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   SECTION BASICS
   ============================================ */

.section {
  padding: 64px 0;
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.section-navy .section-heading {
  color: var(--white);
}

.section-sub {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 600px;
  font-weight: 300;
}

.section-navy .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.section-center {
  text-align: center;
}

.section-center .section-sub {
  margin: 0 auto;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 163, 39, 0.1));
}

/* ============================================
   ENDORSED BY / TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 163, 39, 0.1);
  padding: 56px 0;
}

.trust-label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.35;
  transition: opacity var(--transition);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.trust-logo:hover {
  opacity: 0.8;
}

/* ============================================
   ABOUT / INTRO
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(transparent, rgba(15, 35, 71, 0.9));
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.about-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--navy);
  font-weight: 600;
}

.about-highlight {
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  margin: 28px 0;
}

.about-highlight p {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   SERVICES / PACKAGES
   ============================================ */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.package-card {
  background: var(--white);
  border: 1px solid rgba(201, 163, 39, 0.12);
  padding: 44px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  box-shadow: 0 16px 48px rgba(15, 35, 71, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.package-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.package-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
}

.package-meta {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.package-features {
  border-top: 1px solid rgba(201, 163, 39, 0.15);
  padding-top: 24px;
}

.package-features li {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.package-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.package-cta {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.package-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   WHAT YOU GET (SAMPLE WORK PREVIEW)
   ============================================ */

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.preview-card {
  background: var(--white);
  border: 1px solid rgba(201, 163, 39, 0.1);
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 4px;
}

.preview-card:hover {
  box-shadow: 0 20px 56px rgba(15, 35, 71, 0.12);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.preview-thumb {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.preview-thumb-icon {
  font-size: 48px;
  opacity: 0.3;
}

.preview-thumb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preview-info {
  padding: 24px;
}

.preview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.preview-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  .preview-grid { grid-template-columns: 1fr !important; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   STORE PAGE
   ============================================ */

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(201, 163, 39, 0.1);
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 4px;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(15, 35, 71, 0.1);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.product-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 3px 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-icon {
  font-size: 40px;
  opacity: 0.25;
}

.product-info {
  padding: 24px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.product-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mid);
}

.product-buy {
  display: block;
  text-align: center;
  padding: 12px;
  margin-top: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.product-buy:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================
   SCHOOLS FINDER
   ============================================ */

.map-container {
  margin-top: 48px;
  border: 1px solid rgba(201, 163, 39, 0.2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-search {
  background: var(--white);
  padding: 24px 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(201, 163, 39, 0.15);
  flex-wrap: wrap;
}

.map-search input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1px solid rgba(201, 163, 39, 0.25);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}

.map-search input:focus {
  border-color: var(--gold);
}

.map-search input::placeholder {
  color: #aaa;
}

.map-search select {
  padding: 14px 20px;
  border: 1px solid rgba(201, 163, 39, 0.25);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--navy);
  background: var(--cream);
  cursor: pointer;
  outline: none;
}

.map-search-btn {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.map-search-btn:hover {
  background: var(--gold-light);
}

.map-frame {
  height: 500px;
  background: #e8e4db;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--text-mid);
}

.map-placeholder-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.map-placeholder p {
  font-size: 14px;
  font-weight: 500;
}

.school-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.school-card {
  background: var(--white);
  border: 1px solid rgba(201, 163, 39, 0.12);
  padding: 28px;
  transition: all 0.3s;
}

.school-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.school-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.school-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.school-meta-item {
  font-size: 11px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}

.school-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.school-tag {
  padding: 3px 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 163, 39, 0.2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   CONTACT / INQUIRE
   ============================================ */

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

.contact-form {
  background: var(--white);
  padding: 40px;
  border: 1px solid rgba(201, 163, 39, 0.15);
}

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

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(201, 163, 39, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}

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

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.contact-info {
  padding-top: 8px;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}

.contact-info-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #0a1a36 100%);
  padding: 72px 0 36px;
  border-top: 2px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-contact-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, #0d1e3d 100%);
  padding: 100px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201, 163, 39, 0.05) 0%, transparent 50%);
}

.page-header .section-tag,
.page-header .section-heading,
.page-header .section-sub {
  position: relative;
  z-index: 2;
}

.page-header .section-heading {
  color: var(--white);
}

.page-header .section-sub {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
}

/* ============================================
   TESTIMONIAL / SOCIAL PROOF
   ============================================ */

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(201, 163, 39, 0.15);
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
}

.testimonial-author span {
  font-weight: 400;
  color: var(--text-mid);
}

/* ============================================
   UTILITY
   ============================================ */

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============ SCROLLING REVIEWS ============ */
.reviews-section {
  background: var(--navy);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.reviews-header {
  text-align: center;
  margin-bottom: 28px;
}
.reviews-star {
  color: var(--gold);
  font-size: 14px;
  margin: 0 8px;
}
.reviews-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.reviews-track-wrapper {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.reviews-track-wrapper::-webkit-scrollbar { display: none; }
.reviews-track-wrapper.dragging { cursor: grabbing; }
.reviews-track-wrapper.dragging .reviews-track { animation-play-state: paused; }
.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 120s linear infinite;
  width: max-content;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,163,39,0.12);
  padding: 24px;
  transition: all 0.3s;
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,163,39,0.3);
}
.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-text {
  font-family: 'EB Garamond', 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,163,39,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.review-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.review-loc {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}
.blur-name {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  display: inline-block;
  user-select: none;
  transition: filter 0.3s;
}
@media (max-width: 768px) {
  .review-card { width: 280px; padding: 20px; }
  .review-text { font-size: 13px; }
}

/* ============ SCROLLING SCHOOLS BAR ============ */
.schools-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.schools-scroll-wrapper::-webkit-scrollbar { display: none; }
.schools-scroll-wrapper.dragging { cursor: grabbing; }
.schools-scroll-wrapper.dragging .schools-scroll-track { animation-play-state: paused; }
.schools-scroll-track {
  display: flex;
  gap: 12px;
  animation: scrollSchools 90s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.schools-scroll-track:hover {
  animation-play-state: paused;
}
@keyframes scrollSchools {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.school-pill {
  flex-shrink: 0;
  padding: 10px 20px;
  border: 1px solid rgba(201,163,39,0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  white-space: nowrap;
  transition: all 0.3s;
}
.school-pill:hover {
  border-color: var(--gold);
  background: rgba(201,163,39,0.05);
}
.school-pill b {
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
}
.school-pill.scholarship {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  font-weight: 600;
}
.school-pill.scholarship:hover {
  background: #1a3366;
}
