/* ==========================================================================
   Astra Global Education - Core Design System & CSS Styles
   ========================================================================== */

/* Google Fonts Load */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --primary: #0B2149;
  --primary-dark: #07162C;
  --primary-light: #1A3A6C;
  --primary-gradient: linear-gradient(135deg, #0B2149 0%, #07162C 100%);
  --accent: #C59B27;
  --accent-dark: #9F7B1C;
  --accent-light: #F9F6EA;
  --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #C59B27 100%);
  
  --secondary: #00A896;
  --secondary-light: #E6F6F4;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Elevation */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);

  /* Layout */
  --container-width: 1200px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--gray-800);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }

.section {
  padding: 80px 0;
}
.section-alt {
  background-color: var(--gray-50);
  padding: 80px 0;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-image: var(--accent-gradient);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-weight: 600;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-top: -4px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}
.phone-link svg {
  fill: var(--accent);
}

.phone-link:hover {
  color: var(--accent-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: linear-gradient(135deg, rgba(11, 33, 73, 0.94) 0%, rgba(7, 22, 44, 0.96) 100%), url('assets/hero_background.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding-right: 20px;
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(197, 155, 39, 0.15);
  border: 1px solid rgba(197, 155, 39, 0.3);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px; /* reduced to align with flex row margin */
}

.scholarship-hero-tag {
  background-color: var(--accent-light) !important;
  border-color: var(--accent) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 8px rgba(197, 155, 39, 0.3);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(197, 155, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0); }
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-300);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-subtitle strong {
  color: var(--white);
  border-bottom: 2px solid var(--accent);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-100);
}

.trust-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(0, 168, 150, 0.2);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  flex-shrink: 0;
}

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

/* ==========================================================================
   LEAD FORM CARD
   ========================================================================== */
.form-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  color: var(--gray-900);
  border: 2px solid rgba(197, 155, 39, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 16px;
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--danger);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--gray-200);
  padding-bottom: 4px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--gray-800);
  background-color: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  background-color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-600);
  cursor: pointer;
  margin-top: 16px;
  line-height: 1.4;
}

.form-checkbox-label input {
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-submit-btn {
  background-image: var(--accent-gradient);
  color: var(--primary);
  border: none;
  font-weight: 800;
  width: 100%;
  padding: 15px;
  font-size: 15px;
  border-radius: var(--border-radius-sm);
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.form-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.5);
  transform: translateY(-1px);
}

/* ==========================================================================
   VALUE PROPOSITION SECTION
   ========================================================================== */
.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.sub-title {
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
}

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

.value-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 155, 39, 0.3);
}

.value-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--border-radius-sm);
  font-size: 24px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ==========================================================================
   UNIVERSITIES SECTION
   ========================================================================== */
.tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background-color: var(--gray-100);
  color: var(--gray-700);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background-color: var(--gray-200);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

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

/* Modern Split Layout Country Card */
.country-overview-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.country-overview-card:hover {
  border-color: rgba(197, 155, 39, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.country-info-side {
  padding: 40px;
}

.country-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.country-flag-emoji {
  font-size: 32px;
  line-height: 1;
}

.country-badge-row h3 {
  font-size: 22px;
  color: var(--primary);
  margin: 0;
  font-weight: 800;
}

.country-description {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.country-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.country-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
}

.country-highlights-list li strong {
  color: var(--primary);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  color: var(--secondary);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.country-package-side {
  background-color: var(--gray-50);
  border-left: 1px solid var(--gray-200);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-card-inner {
  width: 100%;
  text-align: center;
}

.package-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.package-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.package-duration {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
}

.package-divider {
  height: 1px;
  background-color: var(--gray-300);
  margin: 20px 0;
}

.package-includes {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
  margin-bottom: 24px;
}

.package-includes span {
  font-weight: 700;
  color: var(--gray-700);
}

@media (max-width: 991px) {
  .country-overview-card {
    grid-template-columns: 1fr;
  }
  
  .country-package-side {
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding: 30px;
  }
  
  .country-info-side {
    padding: 30px;
  }
}

/* ==========================================================================
   RECOGNITION SECTION
   ========================================================================== */
.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.recognition-badge {
  background-color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-200);
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.recognition-badge svg {
  fill: var(--accent);
}

/* ==========================================================================
   WHY MBBS ABROAD SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.feature-item-card:nth-child(even) {
  border-left-color: var(--accent);
}

.feature-card-icon {
  width: 32px;
  height: 32px;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item-card p {
  font-size: 13px;
  margin-bottom: 0;
}

/* ==========================================================================
   SCHOLARSHIP SECTION
   ========================================================================== */
.scholarship-banner {
  background-image: var(--primary-gradient);
  border-radius: var(--border-radius-md);
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 2px solid var(--accent);
}

.scholarship-decor {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.15) 0%, transparent 70%);
}

.scholarship-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.scholarship-content {
  max-width: 60%;
}

.scholarship-badge {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.scholarship-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.scholarship-desc {
  font-size: 16px;
  color: var(--gray-300);
  margin-bottom: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--gray-50);
}

.stars-rating {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 10px;
}

.google-review-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 40px;
}

.google-g-logo {
  font-weight: 900;
  color: #4285F4;
  background: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-style: italic;
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.author-meta h5 {
  margin: 0;
  font-size: 15px;
}

.author-meta span {
  font-size: 11px;
  color: var(--accent-dark);
  font-weight: 700;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-thumb-card {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  height: 180px;
  cursor: pointer;
}

.video-thumb-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7,22,44,0.6) 0%, rgba(15,43,89,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  color: var(--white);
}

.video-thumb-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.video-thumb-card h5 {
  color: var(--white);
  margin: 0;
  font-size: 14px;
}

.video-thumb-card span {
  font-size: 11px;
  color: var(--gray-300);
}

/* ==========================================================================
   PROCESS SECTION (6 SIMPLE STEPS)
   ========================================================================== */
.timeline-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  position: relative;
  margin-top: 40px;
}

.timeline-flow::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--gray-200);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .step-number-circle {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--primary);
  transform: scale(1.05);
}

.timeline-step h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 11px;
  margin-bottom: 0;
}

/* ==========================================================================
   URGENCY / COUNTDOWN SECTION
   ========================================================================== */
.countdown-section {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0;
  border-top: 4px solid var(--accent);
}

.countdown-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.countdown-info h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 4px;
}

.countdown-info p {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-boxes {
  display: flex;
  gap: 15px;
}

.timer-unit-box {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-sm);
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timer-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.timer-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent);
  transition: var(--transition);
}

/* Horizontal line */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--gray-50);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-200);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
  background-color: var(--primary-light);
  color: var(--white);
}

.faq-item.active .faq-icon::before {
  background-color: var(--white);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  background-image: linear-gradient(135deg, rgba(11, 33, 73, 0.96) 0%, rgba(7, 22, 44, 0.98) 100%), url('assets/hero_background.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.final-cta-info h2 {
  color: var(--white);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.final-cta-info p {
  color: var(--gray-300);
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 320px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--gray-400);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.office-list, .footer-contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-list li, .footer-contact-details li {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.office-list li strong {
  color: var(--accent);
}

.footer-contact-details a {
  color: var(--gray-400);
}
.footer-contact-details a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.footer-policies {
  display: flex;
  gap: 15px;
}

.footer-policies a {
  color: var(--gray-500);
}
.footer-policies a:hover {
  color: var(--white);
}

/* ==========================================================================
   STICKY ACTIONS & FLOATING BUTTONS
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  z-index: 999;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
}

.floating-whatsapp svg {
  fill: currentColor;
  width: 30px;
  height: 30px;
}

/* Sticky Action Bar for Mobile Screens */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  padding: 10px 15px;
  z-index: 998;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ==========================================================================
   MODALS & POPUPS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 22, 44, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalSlideUp 0.3s ease;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1;
}
.modal-close-btn:hover {
  color: var(--primary);
}

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

/* Success Modal specific styling */
.success-modal-body {
  padding: 40px 30px;
  text-align: center;
}

.success-icon-badge {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

/* Exit Intent Modal Specific Styling */
.exit-intent-body {
  padding: 40px 30px;
  text-align: center;
}

.exit-intent-title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.exit-intent-highlight {
  background-color: var(--accent-light);
  border: 1px dashed var(--accent);
  color: var(--primary);
  padding: 10px 15px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  margin: 15px 0 25px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIRST APPROACH)
   ========================================================================== */

/* Up to Tablet size (Mobile Portrait/Landscape) */
@media (max-width: 991px) {
  .section, .section-alt {
    padding: 60px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .tagline-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .trust-badges-grid {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .university-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .timeline-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .timeline-flow::before {
    display: none;
  }

  .countdown-wrap {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-button-group {
    margin: 0 auto;
  }

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

/* Small Devices (Phone Portrait) */
@media (max-width: 767px) {
  .header-container {
    height: 70px;
  }

  .contact-actions {
    display: none; /* Hide top contact actions to make space for mobile bottom bar */
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .value-grid, .university-grid, .features-grid {
    grid-template-columns: 1fr;
  }

  .scholarship-banner {
    padding: 30px;
    text-align: center;
  }

  .scholarship-flex {
    flex-direction: column;
    gap: 25px;
  }

  .scholarship-content {
    max-width: 100%;
  }

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

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

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

  .timer-boxes {
    gap: 8px;
  }

  .timer-unit-box {
    width: 65px;
    height: 65px;
  }

  .timer-num {
    font-size: 22px;
  }

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

  body {
    padding-bottom: 70px; /* Space for sticky mobile actions */
  }

  .mobile-sticky-bar {
    display: grid;
  }
}
