/* ==========================================================================
   DOCK MEDIA SCHOOL - PREMIUM STYLESHEET
   ========================================================================== */

/* --- CSS Reset & Base Variables --- */
:root {
  --font-sans: 'DM Sans', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  --color-bg-primary: #0A101E;
  --color-bg-secondary: #0F182E;
  --color-bg-card: #162032; /* Richer card color */
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);

  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.65);
  --color-text-muted: rgba(255, 255, 255, 0.45);

  --color-accent-gold: #F29128;
  --color-accent-orange: #EB3C4D;
  --color-accent-green: #25D366;
  
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  background-color: var(--color-bg-primary);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #1B2432;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #263348;
}

/* --- Container & Grids --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 640px) {
  .grid-cols-2-sm { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .grid-cols-2-md { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-3-md { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

/* --- Common Layout Utility --- */
section {
  position: relative;
  padding: 6rem 0;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

/* --- Background Lights & Blur --- */
.glow-light-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 145, 40, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-light-left {
  position: absolute;
  top: 10%;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 60, 77, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-light-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 145, 40, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.85rem;
  display: block;
}

.section-tag.orange {
  color: var(--color-accent-orange);
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.85rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Custom Utilities --- */
.bg-gradient-dock {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
}

.glass-panel {
  background: rgba(15, 24, 46, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
}

.glass-modal {
  background: rgba(15, 24, 46, 0.94);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-card {
  position: relative;
  transition: var(--transition-smooth);
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  z-index: 1;
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(242, 145, 40, 0.16) 0%, rgba(235, 60, 77, 0.12) 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.glow-card:hover::after {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(235, 60, 77, 0.2);
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(235, 60, 77, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Components --- */

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background-color: var(--color-bg-primary);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  animation: spin 3.5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 16, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 48px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
  transition: var(--transition-fast);
}

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

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 1.5rem;
  height: 1.25rem;
  z-index: 101;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 9999px;
  transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { width: 100%; }
.menu-toggle span:nth-child(2) { width: 70%; }
.menu-toggle span:nth-child(3) { width: 85%; }

.mobile-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 100%;
}
.mobile-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 100%;
}

/* Mobile Menu Screen */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-primary);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
}

.mobile-nav-links a:hover {
  color: #FFFFFF;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #000000;
  padding: 8rem 0 4rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay-linear {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, var(--color-bg-secondary));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero h2 { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .hero h2 { font-size: 3rem; }
}

.hero-typing-line {
  display: block;
  clip-path: inset(0 100% 0 0);
  animation: heroReveal 1.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-typing-line-delay {
  animation-delay: 0.9s;
  animation-duration: 1.0s;
}

@keyframes heroReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

.hero-p-primary {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeIn 0.8s ease-out 2.2s forwards;
}

.hero-p-secondary {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeIn 0.8s ease-out 2.5s forwards;
}

@media (min-width: 768px) {
  .hero-p-primary { font-size: 1.25rem; }
  .hero-p-secondary { font-size: 0.95rem; }
}

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

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeIn 0.8s ease-out 2.8s forwards;
}

@media (min-width: 640px) {
  .hero-btns {
    flex-direction: row;
    align-items: center;
  }
}

/* --- Why DMS Section --- */
.why-dms {
  background-color: var(--color-bg-secondary);
}

.gap-callout {
  padding: 2rem;
  border-radius: 14px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.gap-callout::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background: rgba(242, 145, 40, 0.08);
  border-radius: 50%;
  filter: blur(24px);
}

.contrast-card {
  padding: 1.25rem;
  border-radius: 10px;
  background-color: rgba(15, 24, 46, 0.6);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contrast-card {
    grid-template-columns: 1fr 1fr;
  }
}

.contrast-card:hover {
  border-color: rgba(255, 255, 255, 0.10);
  background-color: var(--color-bg-secondary);
}

.contrast-col {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .contrast-col + .contrast-col {
    padding-left: 1rem;
    border-left: 1px solid var(--color-border);
  }
}

.contrast-col svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contrast-traditional svg { color: var(--color-accent-orange); }
.contrast-dock svg { color: var(--color-accent-green); }

.contrast-traditional p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.contrast-dock p {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* --- Learning Model --- */
.learning-model {
  background-color: var(--color-bg-primary);
}

.steps-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .steps-bar {
    flex-direction: row;
    gap: 3rem;
  }
  
  .steps-bar::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 0;
  }
}

.step-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .step-btn {
    width: auto;
  }
}

.step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  background-color: var(--color-bg-secondary);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.step-btn:hover .step-num {
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.step-btn.active .step-num {
  background-color: #FFFFFF;
  color: #000000;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
}

.step-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.step-btn:hover .step-label {
  color: rgba(255, 255, 255, 0.75);
}

.step-btn.active .step-label {
  color: #FFFFFF;
}

/* Step Card display */
.step-card {
  background-color: var(--color-bg-secondary);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .step-card {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.step-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  transition: background-color 0.5s ease;
}

@media (min-width: 768px) {
  .step-card-accent {
    width: 6px;
    height: 100%;
  }
}

.step-card-main {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .step-card-main {
    grid-column: span 7;
    padding: 3rem;
  }
}

.step-card-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.step-card-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .step-card-title {
    font-size: 2.25rem;
  }
}

.step-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.step-card-sidebar {
  padding: 2.5rem;
  background-color: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .step-card-sidebar {
    grid-column: span 5;
    padding: 3rem;
    border-top: 0;
    border-left: 1px solid var(--color-border);
  }
}

.sidebar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent-orange);
  flex-shrink: 0;
}

.sidebar-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.model-footer {
  margin-top: 4rem;
  text-align: center;
}

.model-footer-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: rgba(15, 24, 46, 0.4);
  border: 1px solid var(--color-border);
}

.model-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.model-footer-dot.orange { background-color: var(--color-accent-orange); }
.model-footer-dot.gold { background-color: var(--color-accent-gold); }

.model-footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.model-footer-text.bold {
  color: #FFFFFF;
  font-weight: 600;
}

/* --- Outcomes Section --- */
.outcomes {
  background-color: var(--color-bg-secondary);
}

.outcomes-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .outcomes-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.outcome-card {
  padding: 2rem;
  border-radius: 14px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.outcome-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(12px);
  transition: transform 0.5s ease;
}

.outcome-card:hover .outcome-card-glow {
  transform: scale(1.5);
}

.outcome-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.outcome-card:hover .outcome-icon {
  background-color: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

.outcome-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.outcome-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.outcome-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  transition: color 0.3s ease;
}

.outcome-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Programs Section --- */
.programs {
  background-color: var(--color-bg-primary);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.program-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 14px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  position: relative;
}

.program-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.program-card.popular {
  border-color: var(--color-accent-gold);
  box-shadow: 0 10px 30px rgba(242, 145, 40, 0.08);
}

@media (min-width: 1024px) {
  .program-card.popular {
    transform: scale(1.03);
  }
  .program-card.popular:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.4rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.program-header {
  margin-bottom: 1.5rem;
}

.program-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.program-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
}

.program-target {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

.program-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.program-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}

.program-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.program-feature {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.program-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.program-feature span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.program-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.program-card.popular .program-btn {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  color: #FFFFFF;
}

.program-card.popular .program-btn:hover {
  box-shadow: 0 10px 20px rgba(235, 60, 77, 0.18);
  transform: scale(1.02);
}

.program-card:not(.popular) .program-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
}

.program-card:not(.popular) .program-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Flagship Diploma Section --- */
.flagship-diploma {
  background-color: var(--color-bg-secondary);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 1.5rem;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 2rem;
  }
}

.timeline-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .timeline-item {
    gap: 2rem;
  }
}

.timeline-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--color-accent-gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .timeline-number {
    width: 4rem;
    height: 4rem;
    font-size: 1rem;
  }
}

.timeline-item:hover .timeline-number {
  border-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.timeline-content {
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .timeline-content {
    padding-top: 1rem;
  }
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
  color: var(--color-accent-gold);
}

.timeline-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 42rem;
}

@media (min-width: 768px) {
  .timeline-content p {
    font-size: 1rem;
  }
}

.highlight-row {
  margin-top: 5rem;
}

.highlight-img-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 320px;
}

@media (min-width: 768px) {
  .highlight-img-card {
    min-height: 380px;
  }
}

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

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

.highlight-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.highlight-text-card {
  padding: 2rem;
  border-radius: 14px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .highlight-text-card {
    padding: 3rem;
  }
}

.highlight-text-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  opacity: 0.03;
  filter: blur(24px);
}

.highlight-quote {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .highlight-quote {
    font-size: 2rem;
  }
}

/* --- Ecosystem Advantage Section --- */
.advantage {
  background-color: var(--color-bg-primary);
}

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

@media (min-width: 768px) {
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.advantage-card {
  padding: 2rem;
  border-radius: 14px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.advantage-card:hover {
  background-color: rgba(15, 24, 46, 0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.advantage-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.advantage-card:hover .advantage-card-glow {
  opacity: 1;
}

.advantage-card-glow.type-a {
  background: linear-gradient(135deg, rgba(242, 145, 40, 0.08) 0%, rgba(235, 60, 77, 0.08) 100%);
}

.advantage-card-glow.type-b {
  background: linear-gradient(135deg, rgba(235, 60, 77, 0.08) 0%, rgba(242, 145, 40, 0.08) 100%);
}

.advantage-card-glow.type-c {
  background: linear-gradient(135deg, rgba(235, 60, 77, 0.08) 0%, rgba(235, 60, 77, 0.08) 100%);
}

.advantage-card:hover {
  border-color: rgba(235, 60, 77, 0.15);
}

.advantage-card.type-b:hover {
  border-color: rgba(242, 145, 40, 0.15);
}

.advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.advantage-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.advantage-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.advantage-banner {
  margin-top: 3rem;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 21 / 9;
}

.advantage-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.advantage-banner:hover img {
  transform: scale(1.03);
}

.advantage-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 30, 0.6), transparent);
}

.advantage-footer {
  margin-top: 5rem;
  text-align: center;
}

.advantage-footer h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .advantage-footer h3 {
    font-size: 1.85rem;
  }
}

/* --- Global Pathway Section --- */
.india-dubai {
  background-color: var(--color-bg-secondary);
}

.pathway-step {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.pathway-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pathway-step-num.gold { color: var(--color-accent-gold); }
.pathway-step-num.orange { color: var(--color-accent-orange); }

.pathway-step h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.pathway-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.pathway-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .pathway-media {
    min-height: 520px;
  }
}

.pathway-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Scholarship Section --- */
.scholarship {
  background-color: var(--color-bg-primary);
  text-align: center;
}

.scholarship-p-large {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin: 0 auto 1.5rem auto;
}

@media (min-width: 768px) {
  .scholarship-p-large {
    font-size: 1.125rem;
  }
}

.scholarship-p-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.scholarship-img-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  max-width: 42rem;
  margin: 0 auto 2.5rem auto;
  aspect-ratio: 4 / 5;
}

@media (min-width: 640px) {
  .scholarship-img-card {
    aspect-ratio: 16 / 11;
  }
}

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

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

.scholarship-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 30, 0.5), transparent);
}

/* --- Success Stories Section --- */
.stories {
  background-color: var(--color-bg-secondary);
}

.stories-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stories-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .carousel-nav {
    margin-top: 0;
  }
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.carousel-container {
  position: relative;
  background-color: var(--color-bg-secondary);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 2rem;
  min-height: 380px;
}

@media (min-width: 768px) {
  .carousel-container {
    padding: 3rem;
  }
}

.story-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.story-slide.active {
  display: grid;
  animation: slideFadeIn 0.5s ease forwards;
}

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

@media (min-width: 768px) {
  .story-slide {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
  }
}

.story-main {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .story-main {
    grid-column: span 8;
  }
}

.story-course {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

.story-quote {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .story-quote {
    font-size: 1.35rem;
  }
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.avatar-a { background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%); }
.avatar-b { background: linear-gradient(135deg, var(--color-accent-orange) 0%, var(--color-accent-gold) 100%); }

.story-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #FFFFFF;
  line-height: 1.1;
}

.story-author-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 0.25rem;
}

.story-sidebar {
  padding: 1.5rem;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .story-sidebar {
    grid-column: span 4;
    padding: 2rem;
    min-height: 240px;
  }
}

.story-sidebar-tag {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.25rem;
}

.story-sidebar-item {
  margin-bottom: 1.5rem;
}

.story-sidebar-item:last-child {
  margin-bottom: 0;
}

.story-sidebar-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.story-sidebar-label.gold {
  color: var(--color-accent-gold);
}

.story-sidebar-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.story-sidebar-value.italic {
  font-family: var(--font-sans);
  font-weight: 500;
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Final CTA Section --- */
.final-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta-overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 16, 30, 0.82);
  z-index: 1;
}

.final-cta-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(235, 60, 77, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.final-cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 3;
}

.final-cta-content {
  position: relative;
  z-index: 4;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.final-cta h2 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .final-cta h2 { font-size: 3rem; }
}

@media (min-width: 768px) {
  .final-cta h2 { font-size: 4rem; }
}

.final-cta-p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .final-cta-p { font-size: 1.5rem; }
}

.final-cta-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .final-cta-steps {
    gap: 1.5rem;
    font-size: 1rem;
  }
}

.final-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.final-cta-dot.gold { background-color: var(--color-accent-gold); }
.final-cta-dot.orange { background-color: var(--color-accent-orange); }

.final-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .final-cta-btns {
    flex-direction: row;
    width: auto;
  }
}

.final-cta-btns .btn {
  padding: 1.15rem 2.25rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 6rem 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 3rem 0;
  }
}

.footer-logo {
  height: 64px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-logo {
    height: 80px;
  }
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-item.gold svg { color: var(--color-accent-gold); }
.footer-contact-item.orange svg { color: var(--color-accent-orange); }

.footer-contact-item a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badge {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-accent-green);
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

@media (min-width: 1024px) {
  .whatsapp-btn {
    display: flex;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn:active {
  transform: scale(0.95);
}

.whatsapp-btn-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.3);
  animation: ping-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes ping-ring {
  75%, 100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  z-index: 2;
}

/* --- Mobile Sticky CTA --- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  padding: 1rem;
  background: rgba(10, 16, 30, 0.90);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 0.75rem;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.mobile-cta.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta-btn {
  flex-grow: 1;
  padding: 0.85rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  box-shadow: 0 -4px 15px rgba(235, 60, 77, 0.15);
  transition: var(--transition-fast);
}

.mobile-cta-btn:active {
  transform: scale(0.98);
}

.mobile-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border-radius: 12px;
  background-color: var(--color-accent-green);
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.mobile-cta-whatsapp:active {
  transform: scale(0.98);
}

.mobile-cta-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* --- Consultation Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 199;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  display: block;
  opacity: 1;
}

.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 1rem;
}

.modal-wrapper.active {
  display: grid;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: rgba(15, 24, 46, 0.90);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2rem;
  color: #FFFFFF;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-wrapper.active .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #FFFFFF;
}

.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 2px rgba(242, 145, 40, 0.25);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-control {
  background-color: var(--color-bg-secondary);
}

.form-error {
  font-size: 0.75rem;
  color: var(--color-accent-orange);
  margin-top: 0.25rem;
  display: none;
}

.form-error.active {
  display: block;
}

.modal-form-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-orange) 100%);
  box-shadow: 0 4px 15px rgba(235, 60, 77, 0.2);
  transition: var(--transition-smooth);
}

.modal-form-btn:hover {
  box-shadow: 0 4px 20px rgba(235, 60, 77, 0.3);
}

.modal-form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.modal-or {
  display: flex;
  align-items: center;
  margin: 0.75rem 0;
}

.modal-or-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
}

.modal-or-text {
  margin: 0 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-whatsapp-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.modal-whatsapp-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.modal-whatsapp-btn svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent-green);
}

.modal-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  text-align: center;
}

.modal-success-screen.active {
  display: flex;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(37, 211, 102, 0.15);
  color: var(--color-accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 2rem;
  height: 2rem;
}

/* Spinner */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* --- Scroll Animations --- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
