/* ===== Cambridge Page Premium Styles ===== */

/* Luxury Color Palette - Light & Airy */
:root {
  --luxury-gold: #c9a227;
  --luxury-gold-light: #e4c76b;
  --luxury-gold-dark: #9a7b1c;
  --luxury-navy: #1a2d47;
  --luxury-navy-light: #2a4060;
  --luxury-cream: #fcfbf9;
  --luxury-champagne: #faf8f4;
  --luxury-charcoal: #3a3a3a;
  --luxury-pearl: #f5f2ec;
  --luxury-white: #ffffff;
  --luxury-soft-gray: #f8f7f5;
}

/* Premium Fonts */
.cambridge-page {
  font-family: 'Montserrat', sans-serif;
  background: var(--luxury-cream);
}

.cambridge-page h1,
.cambridge-page h2,
.cambridge-page h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--luxury-charcoal);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--luxury-pearl);
}

.lang-btn.active {
  background: var(--luxury-gold);
  color: white;
}

.lang-divider {
  color: var(--luxury-gold);
  font-weight: 300;
}

/* Header Modifications */
.cambridge-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

.cambridge-header .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ===== HERO SECTION - PREMIUM DESIGN ===== */
.cambridge-hero {
  position: relative;
  min-height: 100vh;
  background: url('assets/uk-historic.jpg') center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cambridge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 28, 46, 0.65) 0%,
    rgba(15, 28, 46, 0.5) 40%,
    rgba(201, 162, 39, 0.1) 100%
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(15, 28, 46, 0.2) 0%,
    rgba(15, 28, 46, 0.65) 70%
  );
  z-index: 1;
}

/* Animated Background Elements */
.hero-bg-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  animation: floatShape 20s ease-in-out infinite;
}

.floating-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.floating-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

.floating-shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 10%;
  border-color: rgba(255, 255, 255, 0.1);
  animation-delay: -10s;
}

.floating-line {
  position: absolute;
  width: 1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.3), transparent);
  animation: floatLine 8s ease-in-out infinite;
}

.floating-line.line-1 {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
}

.floating-line.line-2 {
  right: 20%;
  top: 60%;
  animation-delay: -4s;
}

@keyframes floatShape {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.05); }
  50% { transform: rotate(0deg) scale(1.1); }
  75% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes floatLine {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-30px); }
}

/* Hero Content */
.hero-content-cambridge {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
}

/* Trust Bar */
.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1rem;
}

.trust-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
}

.trust-icon-svg svg {
  width: 18px;
  height: 18px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

/* Title Wrapper */
.hero-title-wrapper {
  margin-bottom: 1.5rem;
}

.hero-pretitle {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin: 0;
}

.title-line {
  display: block;
}

.title-highlight {
  display: inline-block;
  position: relative;
  color: var(--luxury-gold);
  font-style: italic;
}

.highlight-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 12px;
  color: var(--luxury-gold);
  opacity: 0.5;
}

.highlight-underline path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 1.5s ease forwards 1s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}


.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-glow:hover .btn-arrow {
  transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1;
}

.hero-stat .stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--luxury-gold);
}

.hero-stat .stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Modern Scroll Indicator */
.scroll-indicator-modern {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--luxury-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.scroll-indicator-modern span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Side Text Decorations */
.hero-side-text {
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  writing-mode: vertical-rl;
  z-index: 2;
}

.hero-side-text.left {
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.hero-side-text.right {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
    padding: 1.25rem 2rem;
  }

  .hero-stat .stat-number {
    font-size: 2rem;
  }

  .hero-side-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-trust-bar {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-pretitle {
    font-size: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .floating-shape {
    display: none;
  }

  .cambridge-hero {
    background-attachment: scroll;
  }
}

/* Luxury Buttons */
.btn-luxury {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-outline-light:hover {
  background: white;
  color: var(--luxury-navy);
  border-color: white;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--luxury-gold);
  font-size: 2rem;
  z-index: 2;
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-20px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

.animate-slide-up.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-slide-up.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Floating animation for elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.6);
  }
}

/* Hero parallax scroll effect */
.cambridge-hero {
  background-attachment: fixed;
}

/* Floating decorative elements */
.hero-float-element {
  position: absolute;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.hero-float-element:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  border: 2px solid var(--luxury-gold);
  border-radius: 50%;
  animation-delay: 0s;
}

.hero-float-element:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 150px;
  height: 150px;
  border: 1px solid white;
  animation-delay: 2s;
}

.hero-float-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: var(--luxury-gold);
  opacity: 0.05;
  animation-delay: 4s;
}

/* Enhanced hero title with elegant gradient */
.hero-title {
  background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.95) 40%, var(--luxury-gold-light) 60%, white 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerTitle 6s ease-in-out infinite;
}

@keyframes shimmerTitle {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Gold shimmer effect on hover */
.btn-luxury {
  position: relative;
  overflow: hidden;
}

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

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

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Labels */
.section-label {
  display: inline-block;
  color: var(--luxury-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--luxury-navy);
  margin-top: 0.5rem;
}

/* About VIVA VOX Section */
.about-viva {
  padding: 8rem 0;
  background: white;
}

.about-viva-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-viva-text h2 {
  font-size: 2.5rem;
  color: var(--luxury-navy);
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-viva-text .lead {
  font-size: 1.2rem;
  color: var(--luxury-charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-viva-text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-features-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--luxury-cream);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  color: var(--luxury-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: var(--luxury-navy);
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.about-viva-image {
  position: relative;
}

.image-frame {
  position: relative;
}

.image-frame img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--luxury-gold);
  border-radius: 8px;
  z-index: -1;
}

/* Why Cambridge Section */
.why-cambridge {
  padding: 8rem 0;
  background: var(--luxury-champagne);
}

.cambridge-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.cambridge-feature {
  padding: 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.cambridge-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--luxury-gold);
}

.cambridge-feature {
  border-left: 4px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.cambridge-feature h3 {
  font-size: 1.4rem;
  color: var(--luxury-navy);
  margin-bottom: 0.75rem;
}

.cambridge-feature p {
  color: #666;
  line-height: 1.7;
}

/* Programmes Section */
.programmes {
  padding: 8rem 0;
  background: white;
}

.programme-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.programme-card:nth-child(even) {
  direction: rtl;
}

.programme-card:nth-child(even) > * {
  direction: ltr;
}

.programme-image {
  position: relative;
  min-height: 500px;
}

.programme-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programme-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--luxury-gold);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.programme-content {
  padding: 3rem;
}

.programme-header h3 {
  font-size: 2.2rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.programme-tagline {
  font-size: 1.1rem;
  color: var(--luxury-gold-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.programme-description p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Programme Details Grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: var(--luxury-cream);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.detail-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--luxury-pearl);
}

.detail-item:nth-child(3n) {
  border-right: none;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--luxury-navy);
}

/* Programme Includes */
.programme-includes h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 1rem;
}

.includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.includes-list li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
}

.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
  font-weight: 700;
}

/* Programme Highlight Box */
.programme-highlight {
  margin: 2rem 0;
}

.highlight-box {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-navy-light) 100%);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--luxury-gold);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.highlight-label {
  display: inline-block;
  background: var(--luxury-gold);
  color: var(--luxury-navy);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight-box h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.highlight-box p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Accommodation Options */
.accommodation-options {
  margin: 2rem 0;
}

.accommodation-options h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 1rem;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.option-card {
  padding: 1.5rem;
  background: var(--luxury-cream);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

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

.option-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--luxury-navy);
  margin-bottom: 1rem;
}

.option-card ul {
  list-style: none;
}

.option-card li {
  font-size: 0.9rem;
  color: #555;
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.option-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--luxury-gold);
}

/* Testimonial Box */
.testimonial-box {
  background: var(--luxury-champagne);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--luxury-gold);
  margin: 2rem 0;
}

.testimonial-box blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.testimonial-box cite {
  font-size: 0.9rem;
  color: #888;
}

/* Programme Footer */
.programme-footer {
  margin-top: 2rem;
  text-align: center;
}

/* Schedule Section */
.schedule-section {
  padding: 8rem 0;
  background: var(--luxury-cream);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.schedule-tab {
  padding: 1rem 2.5rem;
  background: white;
  border: 2px solid var(--luxury-pearl);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--luxury-charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-tab:hover {
  border-color: var(--luxury-gold);
}

.schedule-tab.active {
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  color: white;
}

.schedule-content.hidden {
  display: none;
}

.luxury-schedule {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.luxury-schedule th {
  background: var(--luxury-navy);
  color: white;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.luxury-schedule td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--luxury-pearl);
  font-size: 0.95rem;
  color: #555;
}

.luxury-schedule td:first-child {
  font-weight: 600;
  color: var(--luxury-navy);
}

.luxury-schedule tr:hover {
  background: var(--luxury-cream);
}

.luxury-schedule .highlight-row {
  background: var(--luxury-champagne);
}

.luxury-schedule .highlight-row td {
  color: var(--luxury-navy);
  font-weight: 500;
}

/* Gallery Section */
.gallery-section {
  padding: 8rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background: var(--luxury-navy);
}

.testimonials-section .section-label {
  color: var(--luxury-gold-light);
}

.testimonials-section h2 {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--luxury-gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--luxury-gold-light);
  font-size: 0.85rem;
}

/* Brochure Section */
.brochure-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--luxury-white) 0%, var(--luxury-champagne) 100%);
}

.brochures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.brochure-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.brochure-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--luxury-navy);
  margin-bottom: 0.75rem;
}

.brochure-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.brochure-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brochure-text h2 {
  font-size: 2.5rem;
  color: var(--luxury-navy);
  margin-bottom: 1rem;
  text-align: left;
}

.brochure-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.brochure-mockup {
  perspective: 1000px;
  flex-shrink: 0;
}

.mockup-cover {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-navy-light) 100%);
  padding: 2rem 2.5rem;
  border-radius: 8px;
  text-align: center;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: rotateY(-5deg);
  transition: transform 0.5s ease;
  min-width: 140px;
}

.mockup-cover:hover {
  transform: rotateY(0);
}

.mockup-cover.lsi {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.mockup-cover span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
}

.mockup-cover span:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.mockup-cover span:last-child {
  color: var(--luxury-gold-light);
  font-size: 1rem;
}

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

@media (max-width: 600px) {
  .brochure-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Section */
.cambridge-contact {
  padding: 8rem 0;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--luxury-navy);
  margin-bottom: 1rem;
  text-align: left;
}

.contact-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--luxury-soft-gray);
  border-radius: 8px;
  border: 1px solid var(--luxury-pearl);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
}

.contact-item strong {
  display: block;
  color: var(--luxury-navy);
  margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item span {
  color: #666;
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--luxury-gold);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--luxury-soft-gray);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--luxury-pearl);
}

.cambridge-form .form-group {
  margin-bottom: 1.5rem;
}

.cambridge-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.cambridge-form input,
.cambridge-form select,
.cambridge-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--luxury-pearl);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

/* Footer */
.cambridge-footer {
  background: var(--luxury-navy);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 0.1em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

.cambridge-footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.cambridge-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .about-viva-content,
  .programme-card,
  .brochure-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .programme-card:nth-child(even) {
    direction: ltr;
  }

  .programme-image {
    min-height: 350px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .lang-switcher {
    top: auto;
    bottom: 20px;
    right: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .detail-item:nth-child(3n) {
    border-right: 1px solid var(--luxury-pearl);
  }

  .detail-item:nth-child(2n) {
    border-right: none;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .schedule-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .luxury-schedule {
    font-size: 0.85rem;
  }

  .luxury-schedule th,
  .luxury-schedule td {
    padding: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cambridge-hero {
    background-attachment: scroll;
  }
}

/* ===== Additional Premium Enhancements ===== */

/* Luxury divider */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
  max-width: 150px;
}

.luxury-divider span {
  padding: 0 1.5rem;
  color: var(--luxury-gold);
  font-size: 1.5rem;
}

/* Programme cards enhanced hover */
.programme-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.programme-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(15, 28, 46, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.programme-card:hover .programme-image::after {
  opacity: 1;
}

/* Testimonial cards enhanced */
.testimonial-card {
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light), var(--luxury-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Stats counter style */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  background: var(--luxury-navy);
  margin: 4rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--luxury-gold);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--luxury-gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

/* Enhanced form styling */
.cambridge-form input:focus,
.cambridge-form select:focus,
.cambridge-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Image frame glow on hover */
.image-frame:hover img {
  box-shadow: 0 30px 80px rgba(201, 162, 39, 0.2);
}

.image-frame:hover .image-accent {
  border-color: var(--luxury-gold-light);
  transform: translate(5px, 5px);
}

.image-accent {
  transition: all 0.4s ease;
}

/* Section backgrounds with subtle patterns */
.why-cambridge {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(15, 28, 46, 0.05) 0%, transparent 50%);
  background-color: var(--luxury-champagne);
}

/* Gallery hover overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 28, 46, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Brochure section decorative */
.brochure-section {
  position: relative;
  overflow: hidden;
}

.brochure-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Pulse animation for CTA buttons */
.btn-luxury.pulse {
  animation: pulse-glow 2s infinite;
}

/* Text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.text-reveal {
  animation: textReveal 1s ease forwards;
}

.text-reveal.delay-1 { animation-delay: 0.1s; opacity: 0; }
.text-reveal.delay-2 { animation-delay: 0.2s; opacity: 0; }
.text-reveal.delay-3 { animation-delay: 0.3s; opacity: 0; }
.text-reveal.delay-4 { animation-delay: 0.4s; opacity: 0; }
.text-reveal.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* ===== School Selector Tabs ===== */
.school-selector {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.school-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  background: white;
  border: 2px solid var(--luxury-pearl);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.school-tab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--luxury-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.school-tab:hover {
  border-color: var(--luxury-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.school-tab:hover::before {
  transform: scaleX(1);
}

.school-tab.active {
  border-color: var(--luxury-gold);
  background: linear-gradient(135deg, var(--luxury-cream) 0%, white 100%);
  box-shadow: 0 10px 40px rgba(201, 162, 39, 0.15);
}

.school-tab.active::before {
  transform: scaleX(1);
}

.school-tab-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 0.3rem;
}

.school-tab-tagline {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

.school-tab.active .school-tab-tagline {
  color: var(--luxury-gold-dark);
}

/* School Content Sections */
.school-content {
  display: none;
}

.school-content.active {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

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

/* School Intro Card */
.school-intro {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--luxury-cream) 0%, white 100%);
  border-radius: 16px;
  margin-bottom: 3rem;
  border: 1px solid var(--luxury-pearl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.school-logo-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--luxury-navy);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(15, 28, 46, 0.3);
}

.school-logo-badge.lsi {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.school-intro-text h3 {
  font-size: 1.8rem;
  color: var(--luxury-navy);
  margin-bottom: 0.75rem;
}

.school-intro-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.school-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.school-badges .badge {
  background: white;
  color: var(--luxury-navy);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--luxury-pearl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* LSI Stats */
.lsi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lsi-stats .stat-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--luxury-pearl);
  transition: all 0.3s ease;
}

.lsi-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--luxury-gold);
}

.lsi-stats .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--luxury-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lsi-stats .stat-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* LSI Cambridge Info */
.lsi-cambridge-info {
  background: var(--luxury-champagne);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 3rem;
}

.lsi-cambridge-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--luxury-navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

.lsi-cambridge-info .info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lsi-cambridge-info .info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lsi-cambridge-info .info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lsi-cambridge-info .info-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.lsi-cambridge-info .info-item strong {
  display: block;
  color: var(--luxury-navy);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.lsi-cambridge-info .info-item p {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

/* Three Column Options Grid */
.options-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.option-card.highlight {
  border: 2px solid var(--luxury-gold);
  position: relative;
}

.option-card.highlight::before {
  content: '★';
  position: absolute;
  top: -12px;
  right: 15px;
  background: var(--luxury-gold);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Download Box */
.download-box {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-navy-light) 100%);
  text-align: center;
}

.download-box .highlight-label {
  background: white;
  color: var(--luxury-navy);
}

.download-box h4 {
  color: white;
  margin-bottom: 0.75rem;
}

.download-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--luxury-gold);
  padding: 0.8rem 2rem;
  border: 2px solid var(--luxury-gold);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--luxury-gold);
  color: white;
}

/* Programme Options */
.programme-options {
  margin: 2rem 0;
}

.programme-options h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--luxury-navy);
  margin-bottom: 1rem;
}

/* Responsive for School Selector */
@media (max-width: 768px) {
  .school-selector {
    flex-direction: column;
    align-items: stretch;
  }

  .school-tab {
    min-width: auto;
  }

  .school-intro {
    flex-direction: column;
    text-align: center;
  }

  .school-intro-text h3 {
    text-align: center;
  }

  .school-badges {
    justify-content: center;
  }

  .lsi-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .lsi-cambridge-info .info-grid {
    grid-template-columns: 1fr;
  }

  .options-grid.three-col {
    grid-template-columns: 1fr;
  }
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-navy-light) 100%);
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
}

.social-proof-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light), var(--luxury-gold));
}

.proof-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.proof-text {
  color: white;
  font-size: 0.95rem;
}

.proof-highlight {
  font-weight: 600;
  color: var(--luxury-gold);
  margin-right: 0.5rem;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proof-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.logo-badges {
  display: flex;
  gap: 0.75rem;
}

.accreditation-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .proof-content {
    flex-direction: column;
    text-align: center;
  }

  .proof-logos {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== COURSE FINDER QUIZ ===== */
.course-finder-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--luxury-soft-gray) 0%, var(--luxury-white) 100%);
  position: relative;
}

.course-finder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--luxury-gold), transparent);
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.quiz-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light), var(--luxury-gold));
}


.quiz-progress {
  margin-bottom: 2rem;
}

.progress-bar {
  height: 6px;
  background: var(--luxury-pearl);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 0.85rem;
  color: #888;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.quiz-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--luxury-navy);
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--luxury-soft-gray);
  border: 2px solid var(--luxury-pearl);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--luxury-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quiz-option.selected {
  border-color: var(--luxury-gold);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
}

.option-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.option-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--luxury-gold);
  transition: color 0.3s ease;
}

.quiz-option:hover .option-icon-svg,
.quiz-option.selected .option-icon-svg {
  color: var(--luxury-gold-dark);
}

.option-text strong {
  display: block;
  color: var(--luxury-navy);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.option-text small {
  color: #888;
  font-size: 0.85rem;
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--luxury-pearl);
}

.quiz-back:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quiz-skip {
  background: none;
  border: none;
  color: #888;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.quiz-skip:hover {
  color: var(--luxury-gold);
}

/* Quiz Results */
.quiz-results {
  text-align: center;
}

.quiz-results.hidden {
  display: none;
}

.results-header {
  margin-bottom: 2rem;
}

.results-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.results-header p {
  color: #666;
}

.restart-quiz {
  background: none;
  border: 2px solid var(--luxury-pearl);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  color: #888;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.restart-quiz:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
}

.results-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== COURSES SECTION ===== */
.courses-section {
  padding: 6rem 0;
  background: white;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--luxury-white);
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--luxury-pearl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--luxury-navy);
  white-space: nowrap;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--luxury-pearl);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
}

.filter-btn.active {
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  color: white;
}

/* View Toggle */
.view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--luxury-pearl);
  border-radius: 8px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
}

.view-btn.active {
  background: var(--luxury-navy);
  border-color: var(--luxury-navy);
  color: white;
}

/* Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* Course Card */
.course-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.course-card.hidden {
  display: none;
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-badges .badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.school-badge {
  background: var(--luxury-navy);
  color: white;
}

.badge.school-badge.lsi {
  background: #2e7d32;
}

.badge.featured-badge {
  background: var(--luxury-gold);
  color: white;
}

.badge.popular-badge {
  background: #ff6b35;
  color: white;
}

.badge.group-badge {
  background: #5c6bc0;
  color: white;
}

.badge.business-badge {
  background: #455a64;
  color: white;
}

.badge.exam-badge {
  background: #7b1fa2;
  color: white;
}

.compare-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.compare-btn:hover {
  background: var(--luxury-gold);
  color: white;
}

.compare-btn.active {
  background: var(--luxury-gold);
  color: white;
}

.card-content {
  padding: 1.5rem;
}

.card-header {
  margin-bottom: 0.75rem;
}

.card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--luxury-navy);
  margin-bottom: 0.25rem;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #888;
  font-size: 0.85rem;
}

.card-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: var(--luxury-soft-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--luxury-pearl);
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-icon {
  font-size: 1rem;
}

.spec-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
}

.location-icon-svg {
  display: flex;
  align-items: center;
  color: var(--luxury-gold);
}

.spec-value {
  font-size: 0.9rem;
  color: var(--luxury-navy);
  font-weight: 500;
}

.spec-value small {
  font-weight: 400;
  color: #888;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--luxury-pearl);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.8rem;
  color: #888;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--luxury-gold);
}

.price-period {
  font-size: 0.8rem;
  color: #888;
}

.btn-luxury-sm {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-luxury-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results.hidden {
  display: none;
}

.no-results-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.no-results-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--luxury-gold);
}

.no-results h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.no-results p {
  color: #888;
  margin-bottom: 1.5rem;
}

/* ===== RESULTS SECTION ===== */
.results-section {
  padding: 6rem 0;
  background: var(--luxury-navy);
  position: relative;
}

.results-section .section-label {
  color: var(--luxury-gold-light);
}

.results-section .section-header h2 {
  color: white;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.result-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.result-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.result-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.result-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

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

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--luxury-white) 0%, var(--luxury-champagne) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--luxury-white);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--luxury-pearl);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--luxury-gold);
}

.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 6rem 0;
  background: var(--luxury-soft-gray);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.process-step {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--luxury-navy);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.step-line {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
  z-index: 1;
}

.process-step:last-child .step-line {
  display: none;
}

@media (max-width: 1024px) {
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .step-line {
    display: none;
  }
}

/* ===== SCHOOLS SECTION ===== */
.schools-section {
  padding: 6rem 0;
  background: white;
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.schools-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.school-card {
  padding: 2.5rem;
  background: var(--luxury-white);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--luxury-pearl);
}

.school-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.school-card.coming-soon {
  border: 2px dashed var(--luxury-pearl);
  background: transparent;
}

.school-logo-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--luxury-navy);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.school-logo-large.lsi {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.school-logo-large.placeholder {
  background: var(--luxury-pearl);
  color: #888;
  font-size: 2.5rem;
}

.school-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--luxury-navy);
  margin-bottom: 0.75rem;
}

.school-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.school-card .school-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.school-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--luxury-pearl);
  flex-wrap: wrap;
}

.school-stats .stat {
  text-align: center;
}

.school-stats .stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--luxury-gold);
}

.school-stats .stat span {
  font-size: 0.8rem;
  color: #888;
}

/* ===== COMPARE SECTION ===== */
.compare-section {
  padding: 4rem 0;
  background: var(--luxury-cream);
}

.compare-section.hidden {
  display: none;
}

.compare-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--luxury-pearl);
}

.compare-table th {
  background: var(--luxury-navy);
  color: white;
  font-weight: 600;
}

.compare-table th:first-child {
  background: var(--luxury-charcoal);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--luxury-navy);
  background: var(--luxury-cream);
}

.compare-actions {
  text-align: center;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cta-buttons .btn-luxury {
  background: white;
  color: var(--luxury-gold-dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-luxury:hover {
  background: var(--luxury-navy);
  color: white;
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 2rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schools-grid,
  .schools-grid.two-col {
    grid-template-columns: 1fr;
  }
}

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

  .filter-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .card-specs {
    grid-template-columns: 1fr;
  }
}
