:root {
  --primary: #13265a;
  --primary-light: #1e3d7a;
  --primary-dark: #0c1a3d;
  --accent: #d4a017;
  --accent-light: #f0c030;
  --accent-dark: #b8860b;
  --green-gradient: linear-gradient(135deg, #d4a017, #f0c030, #d4a017);
  --primary-gradient: linear-gradient(135deg, #13265a, #1e3d7a);
  --hero-gradient: linear-gradient(135deg, #0c1a3d 0%, #13265a 40%, #1e3d7a 100%);
  --bg: #f8f9fc;
  --bg-alt: #ffffff;
  --bg-dark: #091228;
  --text: #2d3748;
  --text-light: #718096;
  --text-white: #f7fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-accent: 0 4px 20px rgba(212,160,23,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Base Overrides --- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection {
  background: rgba(212,160,23,0.2);
  color: var(--primary-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1, .h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3, .h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

/* --- Section Helpers --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--green-gradient);
}

.section-title { color: var(--primary-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 650px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .section-subtitle { margin: 0 auto; }
.section-padding { padding: 70px 0; }

.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-alt { background: #fff; }

/* ============================================
   HEADER - Top Info Bar + White Navbar
   ============================================ */

/* --- Top Info Bar --- */
.header-top {
  background: var(--primary-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
}
.header-top-item i {
  color: var(--accent-light);
  font-size: 0.75rem;
}
.header-top-item a {
  color: rgba(255,255,255,0.85);
}
.header-top-item a:hover {
  color: #fff;
}
.header-top-social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.header-top-social a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* --- Main Navbar --- */
.navbar-academy {
  background: #fff;
  padding: 0;
  z-index: 1050;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.navbar-academy.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* Brand */
.navbar-academy .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 0;
  margin-right: 8px;
  min-width: 0;
}
.navbar-academy .navbar-brand img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}


/* Nav links */
.navbar-academy .navbar-nav {
  align-items: center;
  gap: 0;
}
.navbar-academy .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

/* Compact nav for 992-1199px screens */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-academy .navbar-brand img { height: 38px; }
  .navbar-academy .navbar-brand { gap: 8px; margin-right: 10px; }
  .navbar-academy .nav-link { font-size: 0.82rem; padding: 8px 10px !important; }
  .btn-nav-cta { padding: 8px 16px !important; font-size: 0.82rem; margin-left: 6px; }
  .nav-phone a { font-size: 0.82rem; padding: 8px 8px !important; }
}
.navbar-academy .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(19,38,90,0.04);
}
.navbar-academy .nav-link.active {
  color: var(--primary) !important;
  background: rgba(19,38,90,0.06);
  font-weight: 600;
  position: relative;
}
@media (min-width: 992px) {
  .navbar-academy .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px;
    background: var(--green-gradient);
    border-radius: 2px;
  }
}

/* CTA */
.btn-nav-cta {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  border-radius: var(--radius-xl) !important;
  padding: 10px 20px !important;
  font-weight: 600;
  font-size: 0.85rem;
  border: none !important;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,23,0.25);
}

/* Phone in nav */
.nav-phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px !important;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-phone a:hover {
  background: rgba(19,38,90,0.04);
}
.nav-phone a i {
  color: var(--accent);
  font-size: 0.82rem;
}

/* Toggler */
.navbar-academy .navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  box-shadow: none !important;
}
.navbar-academy .navbar-toggler:focus { box-shadow: none !important; }
.navbar-academy .navbar-toggler-icon {
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2313265a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile collapse menu */
@media (max-width: 991.98px) {
  .navbar-academy .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .navbar-academy .navbar-nav {
    gap: 0;
    padding: 0 4px;
  }
  .navbar-academy .nav-link {
    padding: 12px 20px !important;
    border-radius: 0 !important;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .navbar-academy .nav-link.active {
    border-left: 3px solid var(--accent);
    background: rgba(19,38,90,0.04);
  }
  .navbar-academy .nav-phone {
    display: block !important;
  }
  .navbar-academy .nav-phone a {
    padding: 12px 20px !important;
    border-radius: 0 !important;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
  }
  .btn-nav-cta {
    margin: 14px 20px !important;
    text-align: center;
    justify-content: center;
    display: flex !important;
    border-radius: var(--radius-xl) !important;
  }
}


/* ============================================
   CUSTOM BUTTONS
   ============================================ */
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}

.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-outline-light-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  overflow: hidden;
  padding-top: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19,38,90,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-text { color: var(--text-white); position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-title .highlight {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent-light);
  font-style: italic;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(247,250,252,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-visual { position: relative; z-index: 2; }
.hero-feature-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.hero-feature-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(8px);
}
.hero-feature-card .card-icon {
  width: 48px; height: 48px;
  background: rgba(212,160,23,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #fff;
}
.hero-feature-card h4 { color: #fff; font-family: var(--font-body); margin-bottom: 6px; }
.hero-feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0; }

.stat-item {
  text-align: center;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}
.scroll-indicator .mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ============================================
   WHY CARDS
   ============================================ */
.why-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.15);
  border-color: var(--accent);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card .icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(19,38,90,0.08), rgba(212,160,23,0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.why-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }

/* Dark variant */
.why-card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.why-card-dark h4 { color: #fff; }
.why-card-dark p { color: rgba(255,255,255,0.6); }
.why-card-dark:hover { border-color: rgba(255,255,255,0.2); }

/* ============================================
   COURSE CARDS
   ============================================ */
.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(19,38,90,0.18);
}
.course-card-header {
  padding: 32px 28px 24px;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}
.course-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(212,160,23,0.1);
  border-radius: 50%;
}
.course-card-header .course-icon { font-size: 2.2rem; margin-bottom: 12px; color: #fff; }
.course-card-header h3 { color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.course-card-header .course-mode {
  font-size: 0.8rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-card-body ul {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-card-body ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.course-card-body ul li:last-child { border: none; }
.course-card-body ul li::before {
  content: '\2714';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.course-card-footer {
  padding: 20px 28px;
  background: #f8f9fc;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.course-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ============================================
   MODULE CARDS
   ============================================ */
.module-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.module-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.module-card-top {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.module-number {
  width: 56px; height: 56px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.module-card-top h3 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 0; }
.module-card-top p { font-size: 0.85rem; color: var(--text-light); margin: 4px 0 0; }

.module-card-content { padding: 28px; }
.module-card-content h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.module-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.module-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 4px 0;
}
.module-features li::before {
  content: '\25B8';
  color: var(--accent);
  font-weight: 700;
}

.perfect-for {
  background: linear-gradient(135deg, rgba(19,38,90,0.04), rgba(212,160,23,0.04));
  border-radius: var(--radius-sm);
  padding: 16px;
}
.perfect-for h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.perfect-for ul { list-style: none; padding: 0; margin: 0; }
.perfect-for li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 3px 0 3px 16px;
  position: relative;
}
.perfect-for li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.module-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--primary-gradient);
  color: #fff;
}
.module-pricing .mp-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.module-pricing .mp-duration { font-size: 0.85rem; opacity: 0.8; }

/* ============================================
   APPROACH FLOW
   ============================================ */
.approach-step { text-align: center; padding: 24px; }
.approach-step .step-icon {
  width: 72px; height: 72px;
  background: rgba(212,160,23,0.12);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.approach-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.approach-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 30px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ============================================
   WHO CAN JOIN
   ============================================ */
.who-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
}
.who-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.who-card .who-icon { font-size: 2.4rem; margin-bottom: 16px; }
.who-card h4 { color: #fff; font-family: var(--font-body); margin-bottom: 8px; }
.who-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0; }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px; right: -32px;
  background: var(--accent);
  color: #fff;
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 2;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(19,38,90,0.16);
}
.pricing-header {
  padding: 36px 28px;
  background: var(--primary-gradient);
  text-align: center;
}
.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}
.pricing-header h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.pricing-header .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 4px;
}
.pricing-header .price-info { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.pricing-body { padding: 28px; flex: 1; }
.pricing-body ul { list-style: none; padding: 0; margin: 0; }
.pricing-body ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.pricing-body ul li:last-child { border: none; }
.pricing-body ul li::before {
  content: '\2714';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-footer {
  padding: 0 28px 28px;
  text-align: center;
}
.pricing-footer .btn { width: 100%; }

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
  background: var(--hero-gradient);
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 30% 40%, #fff 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, #fff 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-header h1 { color: #fff; margin-bottom: 12px; position: relative; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; position: relative; margin-bottom: 0; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.breadcrumb-custom a { color: var(--accent-light); }
.breadcrumb-custom a:hover { color: var(--accent); }

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
  background: linear-gradient(135deg, #0c1a3d 0%, #13265a 100%);
}
.avatar-frame {
  width: 260px;
  height: 300px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.05));
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.founder-initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
}
.founder-name-badge { text-align: center; }
.founder-name-badge h3 { color: #fff; font-size: 1.1rem; margin-bottom: 2px; }
.founder-name-badge p {
  font-size: 0.78rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.founder-quote { position: relative; }
.founder-quote .quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(212,160,23,0.2);
  line-height: 1;
  margin-bottom: -30px;
}
.founder-quote blockquote {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.founder-quote blockquote p { margin-bottom: 16px; }

.founder-values { list-style: none; padding: 0; margin: 28px 0; }
.founder-values li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  padding: 4px 0;
}
.founder-values li::before { content: '\2726'; color: var(--accent); }

.founder-closing {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent-light);
  font-size: 1.05rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   MISSION / VISION
   ============================================ */
.mv-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.mv-card.mission { background: var(--primary-gradient); color: #fff; }
.mv-card.vision { background: #fff; border: 2px solid var(--border); }
.mv-card .mv-icon { font-size: 2.5rem; margin-bottom: 20px; }
.mv-card h3 { margin-bottom: 14px; }
.mv-card.vision h3 { color: var(--primary-dark); }
.mv-card p { font-size: 1rem; line-height: 1.8; margin-bottom: 0; }
.mv-card.vision p { color: var(--text-light); }
.mv-card.mission p { color: rgba(255,255,255,0.85); }

/* ============================================
   CONTACT
   ============================================ */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.contact-info-card .ci-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(19,38,90,0.08), rgba(212,160,23,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.contact-info-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrapper h3 { color: var(--primary-dark); margin-bottom: 8px; }
.contact-form-wrapper > p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

/* Bootstrap form overrides */
.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer .footer-brand {
  margin-bottom: 18px;
}
.footer .footer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-bottom {
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-light); }
.footer .text-success { color: var(--accent) !important; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE TWEAKS (Bootstrap handles most)
   ============================================ */

/* --- Tablet & below (<=991px) --- */
@media (max-width: 991.98px) {
  .hero { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 40px; }
  .cta-banner { padding: 40px 24px; }
  .founder-quote .quote-mark { font-size: 4rem; }
  .contact-form-wrapper { padding: 28px; }
  .page-header { padding: 60px 0 50px; }
  .approach-arrow { transform: rotate(90deg); }
  .navbar-academy .navbar-brand { padding: 10px 0; }
  .navbar-academy .navbar-brand img { height: 42px; }
}

/* --- Small tablet / large phone (<=767px) --- */
@media (max-width: 767.98px) {
  .navbar-academy .navbar-brand img { height: 38px; }
  .navbar-academy .navbar-brand { gap: 10px; }
  .hero-title { font-size: 2rem; }
  .page-header h1 { font-size: 1.8rem; }
  .section-padding { padding: 50px 0; }
}

/* --- Phone (<=575px) --- */
@media (max-width: 575.98px) {
  .section-padding { padding: 40px 0; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .hero-title { font-size: 1.6rem; }
  .hero-desc { font-size: 0.9rem; }
  .avatar-frame { width: 200px; height: 240px; }
  .founder-initials { font-size: 2.5rem; }
  .stat-item { padding: 14px 10px; }
  .navbar-academy .navbar-brand img { height: 42px; }
  .navbar-academy .navbar-brand { gap: 8px; }
  .page-header { padding: 50px 0 40px; }
  .page-header h1 { font-size: 1.5rem; }
  .page-header p { font-size: 0.85rem; }
  .cta-banner { padding: 30px 16px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .contact-form-wrapper { padding: 20px; }
}

/* --- Very small phone (<=400px) --- */
@media (max-width: 400px) {
  .navbar-academy .navbar-brand img { height: 36px; }
  .navbar-academy .navbar-brand { gap: 6px; }
  .hero-title { font-size: 1.35rem; }
  .hero-badge { font-size: 0.6rem; padding: 5px 10px; letter-spacing: 1px; }
  .btn-accent, .btn-outline-light-custom { padding: 10px 20px; font-size: 0.85rem; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  border: none;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIAL / TRUST STRIP
   ============================================ */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-item i {
  font-size: 1.2rem;
  color: var(--accent);
}

/* ============================================
   ENHANCED SECTION DIVIDERS
   ============================================ */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--green-gradient);
  border-radius: 3px;
  margin: 0 auto 16px;
}
.section-header .section-divider {
  margin: 0 auto 16px;
}

/* ============================================
   ICON BOX ENHANCEMENTS
   ============================================ */
.icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(19,38,90,0.08), rgba(212,160,23,0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* ============================================
   IMPROVED CONTACT INFO CARDS
   ============================================ */
.contact-info-card {
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   GRADIENT ACCENT BAR (TOP OF PAGE-HEADER)
   ============================================ */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--primary-light), var(--primary));
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer-col ul li a {
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
.footer-social a i { transition: var(--transition); }
.footer-social a:hover i { transform: scale(1.15); }

/* ============================================
   LOADING / PAGE TRANSITION
   ============================================ */
.page-loaded .fade-in,
.page-loaded .fade-in-left,
.page-loaded .fade-in-right {
  transition-delay: 0.1s;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light), var(--accent));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================
   CTA BANNER SHIMMER EFFECT
   ============================================ */
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translate(-20%, -20%) scale(1); }
  50% { transform: translate(20%, 20%) scale(1.1); }
}

/* ============================================
   STAT COUNTER ENHANCEMENTS
   ============================================ */
.stat-item {
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   MODULE CARD GLOW
   ============================================ */
.module-card:hover {
  box-shadow: 0 12px 40px rgba(19,38,90,0.14);
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE FLOATING BUTTONS
   ============================================ */
@media (max-width: 575.98px) {
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; }
  .back-to-top { width: 38px; height: 38px; font-size: 1rem; bottom: 72px; right: 20px; }
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.text-gradient {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   PRICING CARD RIBBON ENHANCEMENT
   ============================================ */
.pricing-card.featured {
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

/* ============================================
   HERO BUTTONS GLOW
   ============================================ */
.hero .btn-accent {
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.hero .btn-accent:hover {
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
}

/* ============================================
   APPROACH STEP POLISH
   ============================================ */
.approach-step .step-icon {
  transition: var(--transition);
}
.approach-step:hover .step-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
  border-color: var(--accent-light);
}

/* ============================================
   WHO CARD GLOW
   ============================================ */
.who-card .who-icon {
  transition: var(--transition);
}
.who-card:hover .who-icon {
  transform: scale(1.15);
}

/* ============================================
   COURSE CARD HEADER ICON GLOW
   ============================================ */
.course-card-header .course-icon {
  transition: var(--transition);
}
.course-card:hover .course-icon {
  transform: scale(1.15) rotate(5deg);
}

/* ============================================
   FORM INPUT POLISH
   ============================================ */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  font-size: 0.92rem;
}
.form-control:hover, .form-select:hover {
  border-color: rgba(212,160,23,0.3);
}

/* ============================================
   HERO BADGE GLOW
   ============================================ */
.hero-badge i { color: #ffd700; }

/* ============================================
   CI-ICON STYLE FIX (for Bootstrap Icons)
   ============================================ */
.contact-info-card .ci-icon i {
  font-size: 1.3rem;
  color: var(--accent);
}

/* ============================================
   WHO-ICON STYLE FIX (for Bootstrap Icons)
   ============================================ */
.who-card .who-icon i {
  font-size: 2.2rem;
  color: var(--accent-light);
}

/* ============================================
   ICON-CIRCLE IN DARK CARDS
   ============================================ */
.why-card-dark .icon-circle {
  background: rgba(255,255,255,0.08);
  color: var(--accent-light);
}
.why-card-dark:hover .icon-circle {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
}

/* ============================================
   TYPING ANIMATION (HERO TAGLINE)
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text .hero-badge { animation: fadeInUp 0.8s ease-out both; animation-delay: 0.2s; }
.hero-text .hero-title { animation: fadeInUp 0.8s ease-out both; animation-delay: 0.4s; }
.hero-text .hero-tagline { animation: fadeInUp 0.8s ease-out both; animation-delay: 0.6s; }
.hero-text .hero-desc { animation: fadeInUp 0.8s ease-out both; animation-delay: 0.8s; }
.hero-text .hero-buttons { animation: fadeInUp 0.8s ease-out both; animation-delay: 1s; }
.hero-visual .hero-feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out both; animation-delay: 0.6s; }
.hero-visual .hero-feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out both; animation-delay: 0.8s; }
.hero-visual .hero-feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out both; animation-delay: 1s; }

/* ============================================
   CARD NUMBER BADGE (PRICING)
   ============================================ */
.pricing-card .pricing-header {
  position: relative;
}

/* ============================================
   MAP HOVER EFFECT
   ============================================ */
.map-container {
  transition: var(--transition);
}
.map-container:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER GRADIENT BORDER
   ============================================ */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--primary-light), var(--primary));
}

/* ============================================
   MV CARD HOVER EFFECT
   ============================================ */
.mv-card {
  transition: var(--transition);
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.mv-card .mv-icon i {
  transition: var(--transition);
}
.mv-card:hover .mv-icon i {
  transform: scale(1.1);
}

/* ============================================
   LINK UNDERLINE ANIMATION
   ============================================ */
.footer-col ul li a {
  position: relative;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-light);
  transition: width 0.3s ease;
}
.footer-col ul li a:hover::after {
  width: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(212,160,23,0.12);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(19,38,90,0.1);
  border-color: var(--accent);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.testimonial-author p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.testimonial-stars {
  color: #ffc107;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text);
}
.policy-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.policy-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.policy-content ul li {
  margin-bottom: 8px;
}
.policy-content p {
  margin-bottom: 14px;
}
.policy-content .table {
  font-size: 0.9rem;
}
.policy-content .table thead {
  background: var(--primary-gradient);
  color: #fff;
}
.policy-content .table th,
.policy-content .table td {
  vertical-align: middle;
  padding: 10px 14px;
}
.policy-updated {
  display: inline-block;
  background: var(--bg-alt);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.policy-updated i {
  margin-right: 6px;
  color: var(--accent);
}
.policy-contact {
  background: var(--bg-alt);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  margin: 20px 0;
}
.policy-contact p {
  margin-bottom: 6px;
  font-size: 0.93rem;
}
.policy-contact i {
  color: var(--accent);
  margin-right: 8px;
  width: 18px;
  text-align: center;
}
.policy-highlight {
  background: linear-gradient(135deg, rgba(19,38,90,0.03), rgba(212,160,23,0.03));
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 20px 0;
}
.policy-highlight h5 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 6px;
}
.policy-highlight h5 i {
  color: var(--accent);
  margin-right: 8px;
}
