/* =============================================
   DMLT LANDING PAGE STYLES
   All classes prefixed with bvmlt- to avoid
   conflicts with existing Veritas theme
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --bvmlt-blue: #1B4F8A;
  --bvmlt-blue-dark: #143A66;
  --bvmlt-blue-deep: #0D2847;
  --bvmlt-gold: #C5A55A;
  --bvmlt-gold-light: #D4BA78;
  --bvmlt-white: #FFFFFF;
  --bvmlt-off-white: #F8F7F4;
  --bvmlt-light-gray: #EEF1F5;
  --bvmlt-text-dark: #1A1A2E;
  --bvmlt-text-body: #4A4A5A;
  --bvmlt-text-light: #6B7280;
}

/* ===== RESET FOR THIS PAGE ===== */
.bvmlt-landing-page,
.bvmlt-landing-page *,
.bvmlt-landing-page *::before,
.bvmlt-landing-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.bvmlt-landing-page {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--bvmlt-text-body);
  background: var(--bvmlt-white);
  line-height: 1.7;
  overflow-x: hidden;
}
.bvmlt-landing-page img { max-width: 100%; display: block; }
.bvmlt-landing-page a { text-decoration: none; color: inherit; }
.bvmlt-landing-page ul { list-style: none; }
.bvmlt-landing-page html { scroll-behavior: smooth; }

/* ===== CONTAINER ===== */
.bvmlt-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION LABELS & TITLES ===== */
.bvmlt-section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bvmlt-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.bvmlt-section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--bvmlt-gold);
}
.bvmlt-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--bvmlt-blue);
  line-height: 1.25;
  margin-bottom: 16px;
}
.bvmlt-section-title span { color: var(--bvmlt-gold); }

/* ===== SCROLL ANIMATIONS ===== */
.bvmlt-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bvmlt-reveal.bvmlt-visible { opacity: 1; transform: translateY(0); }
.bvmlt-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bvmlt-reveal-left.bvmlt-visible { opacity: 1; transform: translateX(0); }
.bvmlt-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bvmlt-reveal-right.bvmlt-visible { opacity: 1; transform: translateX(0); }
.bvmlt-stagger-1 { transition-delay: 0.1s; }
.bvmlt-stagger-2 { transition-delay: 0.2s; }
.bvmlt-stagger-3 { transition-delay: 0.3s; }
.bvmlt-stagger-4 { transition-delay: 0.4s; }
.bvmlt-stagger-5 { transition-delay: 0.5s; }
.bvmlt-stagger-6 { transition-delay: 0.6s; }
.bvmlt-stagger-7 { transition-delay: 0.7s; }

/* ===== NAVBAR ===== */
.bvmlt-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,79,138,0.08);
  transition: box-shadow 0.3s;
}
.bvmlt-navbar.bvmlt-scrolled { box-shadow: 0 4px 30px rgba(27,79,138,0.1); }
.bvmlt-navbar .bvmlt-container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.bvmlt-nav-logo img { height: 48px; }
.bvmlt-nav-links { display: flex; align-items: center; gap: 32px; }
.bvmlt-nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--bvmlt-text-dark); position: relative; transition: color 0.3s; }
.bvmlt-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--bvmlt-gold); transition: width 0.3s; }
.bvmlt-nav-links a:hover { color: var(--bvmlt-blue); }
.bvmlt-nav-links a:hover::after { width: 100%; }
.bvmlt-nav-cta {
  background: var(--bvmlt-blue) !important;
  color: var(--bvmlt-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.3s, transform 0.3s !important;
  box-shadow: 0 4px 16px rgba(27,79,138,0.25) !important;
}
.bvmlt-nav-cta::after { display: none !important; }
.bvmlt-nav-cta:hover { background: var(--bvmlt-blue-dark) !important; transform: translateY(-2px); }
.bvmlt-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.bvmlt-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--bvmlt-text-dark); margin: 6px 0; transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.bvmlt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bvmlt-blue-deep) 0%, var(--bvmlt-blue) 50%, #1E5F9E 100%);
  overflow: hidden;
  padding-top: 78px;
}
.bvmlt-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.15) 0%, transparent 70%);
  animation: bvmltHeroPulse 6s ease-in-out infinite;
}
.bvmlt-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.1) 0%, transparent 70%);
  animation: bvmltHeroPulse 8s ease-in-out infinite reverse;
}
@keyframes bvmltHeroPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.bvmlt-hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bvmlt-particle {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(197,165,90,0.3);
  border-radius: 50%;
  animation: bvmltFloat linear infinite;
}
.bvmlt-particle:nth-child(1) { left: 10%; animation-duration: 12s; }
.bvmlt-particle:nth-child(2) { left: 25%; animation-duration: 16s; animation-delay: 2s; width: 4px; height: 4px; }
.bvmlt-particle:nth-child(3) { left: 45%; animation-duration: 10s; animation-delay: 4s; width: 8px; height: 8px; background: rgba(255,255,255,0.15); }
.bvmlt-particle:nth-child(4) { left: 65%; animation-duration: 14s; animation-delay: 1s; }
.bvmlt-particle:nth-child(5) { left: 80%; animation-duration: 18s; animation-delay: 3s; width: 5px; height: 5px; background: rgba(255,255,255,0.1); }
.bvmlt-particle:nth-child(6) { left: 90%; animation-duration: 11s; animation-delay: 5s; }
@keyframes bvmltFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.bvmlt-hero .bvmlt-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bvmlt-hero-content { color: var(--bvmlt-white); }
.bvmlt-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(197,165,90,0.2); border: 1px solid rgba(197,165,90,0.3); padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--bvmlt-gold-light); margin-bottom: 24px; animation: bvmltFadeInDown 0.8s ease-out 0.2s backwards; }
.bvmlt-dot { width: 8px; height: 8px; background: var(--bvmlt-gold); border-radius: 50%; animation: bvmltBlink 2s ease-in-out infinite; }
@keyframes bvmltBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.bvmlt-hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; animation: bvmltFadeInDown 0.8s ease-out 0.4s backwards; }
.bvmlt-gold { color: var(--bvmlt-gold); }
.bvmlt-hero-desc { font-size: 1.08rem; line-height: 1.8; opacity: 0.85; margin-bottom: 32px; max-width: 520px; animation: bvmltFadeInDown 0.8s ease-out 0.6s backwards; }
.bvmlt-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: bvmltFadeInDown 0.8s ease-out 0.8s backwards; }
.bvmlt-btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--bvmlt-gold); color: var(--bvmlt-white); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 6px 24px rgba(197,165,90,0.35); }
.bvmlt-btn-gold:hover { background: var(--bvmlt-gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(197,165,90,0.45); }
.bvmlt-btn-outline-white { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--bvmlt-white); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; }
.bvmlt-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
@keyframes bvmltFadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.bvmlt-hero-stats { display: flex; gap: 32px; margin-top: 40px; animation: bvmltFadeInDown 0.8s ease-out 1s backwards; }
.bvmlt-hero-stat { text-align: center; }
.bvmlt-hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--bvmlt-gold); line-height: 1; }
.bvmlt-hero-stat-label { font-size: 0.78rem; opacity: 0.7; margin-top: 4px; }
.bvmlt-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; animation: bvmltFadeInRight 1s ease-out 0.5s backwards; }
@keyframes bvmltFadeInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
.bvmlt-hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; padding: 40px; width: 100%; max-width: 460px; }
.bvmlt-hero-card-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--bvmlt-gold), var(--bvmlt-gold-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.bvmlt-hero-card-icon svg { width: 32px; height: 32px; fill: #fff; }
.bvmlt-hero-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 20px; }
.bvmlt-hero-card-info { display: flex; flex-direction: column; gap: 14px; }
.bvmlt-hero-card-row { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.bvmlt-hero-card-row svg { width: 20px; height: 20px; flex-shrink: 0; fill: var(--bvmlt-gold); }
.bvmlt-hero-card-row strong { color: #fff; }

/* ===== MARQUEE ===== */
.bvmlt-marquee-section { background: var(--bvmlt-gold); padding: 14px 0; overflow: hidden; }
.bvmlt-marquee-track { display: flex; width: max-content; animation: bvmltMarquee 30s linear infinite; }
@keyframes bvmltMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.bvmlt-marquee-item { display: flex; align-items: center; gap: 12px; padding: 0 40px; font-weight: 600; font-size: 0.9rem; color: #fff; white-space: nowrap; text-transform: uppercase; letter-spacing: 1.5px; }
.bvmlt-diamond { width: 8px; height: 8px; background: #fff; transform: rotate(45deg); flex-shrink: 0; }

/* ===== ABOUT ===== */
.bvmlt-about { padding: 100px 0; background: var(--bvmlt-white); }
.bvmlt-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.bvmlt-about-image-wrap { position: relative; }
.bvmlt-about-image-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(27,79,138,0.12); }
.bvmlt-about-image-main img { width: 100%; height: 420px; object-fit: cover; }
.bvmlt-about-accent { position: absolute; bottom: -20px; right: -20px; width: 180px; height: 180px; border-radius: 20px; background: var(--bvmlt-gold); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; z-index: 2; box-shadow: 0 10px 40px rgba(197,165,90,0.3); }
.bvmlt-about-accent-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; }
.bvmlt-about-accent-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.bvmlt-about-content p { font-size: 1.02rem; line-height: 1.85; color: var(--bvmlt-text-body); margin-bottom: 24px; }
.bvmlt-about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.bvmlt-about-highlight { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bvmlt-light-gray); border-radius: 12px; font-size: 0.92rem; font-weight: 500; color: var(--bvmlt-text-dark); transition: all 0.3s; }
.bvmlt-about-highlight:hover { background: rgba(27,79,138,0.08); transform: translateX(4px); }
.bvmlt-about-highlight svg { width: 22px; height: 22px; fill: var(--bvmlt-blue); flex-shrink: 0; }

/* ===== CURRICULUM ===== */
.bvmlt-curriculum { padding: 100px 0; background: var(--bvmlt-off-white); position: relative; }
.bvmlt-curriculum::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--bvmlt-blue), var(--bvmlt-gold), var(--bvmlt-blue)); }
.bvmlt-curriculum-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.bvmlt-curriculum-header p { color: var(--bvmlt-text-light); font-size: 1.02rem; margin-top: 8px; }
.bvmlt-curriculum-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bvmlt-curriculum-card { background: #fff; border-radius: 18px; padding: 36px 28px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.22,1,0.36,1); border: 1px solid rgba(27,79,138,0.06); cursor: default; }
.bvmlt-curriculum-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(27,79,138,0.12); border-color: rgba(27,79,138,0.15); }
.bvmlt-curriculum-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--bvmlt-blue), var(--bvmlt-gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.bvmlt-curriculum-card:hover::before { transform: scaleX(1); }
.bvmlt-curriculum-card-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: rgba(27,79,138,0.08); line-height: 1; margin-bottom: 14px; }
.bvmlt-curriculum-card-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--bvmlt-blue), var(--bvmlt-blue-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.bvmlt-curriculum-card-icon svg { width: 26px; height: 26px; fill: #fff; }
.bvmlt-curriculum-card h3 { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 600; color: var(--bvmlt-text-dark); margin-bottom: 10px; }
.bvmlt-curriculum-card p { font-size: 0.9rem; color: var(--bvmlt-text-light); line-height: 1.7; }

/* ===== WHY CHOOSE ===== */
.bvmlt-why { padding: 100px 0; background: #fff; }
.bvmlt-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.bvmlt-why-content { order: 2; }
.bvmlt-why-visual { order: 1; }
.bvmlt-why-reasons { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.bvmlt-why-reason { display: flex; gap: 18px; padding: 22px; border-radius: 16px; border: 1px solid transparent; transition: all 0.4s; }
.bvmlt-why-reason:hover { background: var(--bvmlt-off-white); border-color: rgba(27,79,138,0.1); transform: translateX(6px); }
.bvmlt-why-reason-icon { width: 50px; height: 50px; min-width: 50px; background: linear-gradient(135deg, var(--bvmlt-blue), var(--bvmlt-gold)); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.bvmlt-why-reason-icon svg { width: 24px; height: 24px; fill: #fff; }
.bvmlt-why-reason h4 { font-size: 1.05rem; font-weight: 600; color: var(--bvmlt-text-dark); margin-bottom: 4px; }
.bvmlt-why-reason p { font-size: 0.9rem; color: var(--bvmlt-text-light); line-height: 1.65; }
.bvmlt-why-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bvmlt-why-img { border-radius: 16px; overflow: hidden; height: 200px; }
.bvmlt-why-img:first-child { grid-row: 1 / 3; height: 100%; }
.bvmlt-why-img img { width: 100%; height: 100%; object-fit: cover; }
.bvmlt-why-stat-box { background: var(--bvmlt-blue); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 24px; }
.bvmlt-why-stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--bvmlt-gold); }
.bvmlt-why-stat-label { font-size: 0.82rem; margin-top: 4px; opacity: 0.85; }

/* ===== WHAT YOU LEARN ===== */
.bvmlt-learn { padding: 100px 0; background: linear-gradient(135deg, var(--bvmlt-blue-deep) 0%, var(--bvmlt-blue) 100%); position: relative; overflow: hidden; }
.bvmlt-learn::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(197,165,90,0.1) 0%, transparent 70%); }
.bvmlt-learn .bvmlt-container { position: relative; z-index: 2; }
.bvmlt-learn-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.bvmlt-learn-header p { color: rgba(255,255,255,0.7); font-size: 1.02rem; }
.bvmlt-learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bvmlt-learn-item { display: flex; align-items: flex-start; gap: 18px; padding: 28px; background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; transition: all 0.4s; }
.bvmlt-learn-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); border-color: rgba(197,165,90,0.3); }
.bvmlt-learn-item-num { width: 42px; height: 42px; min-width: 42px; background: var(--bvmlt-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.bvmlt-learn-item h4 { font-size: 1.02rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.bvmlt-learn-item p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== CAREER ===== */
.bvmlt-career { padding: 100px 0; background: var(--bvmlt-off-white); }
.bvmlt-career-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
.bvmlt-career-header p { color: var(--bvmlt-text-light); font-size: 1.02rem; }
.bvmlt-career-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.bvmlt-career-card { background: #fff; border-radius: 18px; padding: 36px 28px; text-align: center; transition: all 0.4s; border: 1px solid rgba(27,79,138,0.06); }
.bvmlt-career-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(27,79,138,0.12); }
.bvmlt-career-card-icon { width: 70px; height: 70px; background: var(--bvmlt-light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: all 0.4s; }
.bvmlt-career-card:hover .bvmlt-career-card-icon { background: var(--bvmlt-blue); }
.bvmlt-career-card-icon svg { width: 32px; height: 32px; fill: var(--bvmlt-blue); transition: fill 0.4s; }
.bvmlt-career-card:hover .bvmlt-career-card-icon svg { fill: #fff; }
.bvmlt-career-card h3 { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 600; color: var(--bvmlt-text-dark); margin-bottom: 8px; }
.bvmlt-career-card p { font-size: 0.88rem; color: var(--bvmlt-text-light); line-height: 1.7; }

/* ===== CTA ===== */
.bvmlt-cta-section { padding: 80px 0; background: #fff; }
.bvmlt-cta-box { background: linear-gradient(135deg, var(--bvmlt-blue) 0%, var(--bvmlt-blue-deep) 100%); border-radius: 28px; padding: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.bvmlt-cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(197,165,90,0.2) 0%, transparent 70%); }
.bvmlt-cta-content { position: relative; z-index: 2; }
.bvmlt-cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; margin-bottom: 12px; }
.bvmlt-cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; }
.bvmlt-cta-buttons { display: flex; gap: 16px; position: relative; z-index: 2; flex-wrap: wrap; }
.bvmlt-btn-white { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--bvmlt-blue); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.bvmlt-btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.bvmlt-btn-outline-gold { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--bvmlt-gold-light); padding: 16px 36px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(197,165,90,0.4); transition: all 0.3s; }
.bvmlt-btn-outline-gold:hover { border-color: var(--bvmlt-gold); background: rgba(197,165,90,0.1); transform: translateY(-3px); }

/* ===== ENQUIRY FORM ===== */
.bvmlt-enquiry-section { padding: 100px 0; background: linear-gradient(135deg, var(--bvmlt-blue-deep) 0%, #102E54 50%, var(--bvmlt-blue) 100%); position: relative; overflow: hidden; }
.bvmlt-enquiry-section::before { content: ''; position: absolute; top: -300px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(197,165,90,0.1) 0%, transparent 70%); pointer-events: none; }
.bvmlt-enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.bvmlt-enquiry-info { color: #fff; }
.bvmlt-enquiry-info > p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }
.bvmlt-enquiry-features { display: flex; flex-direction: column; gap: 20px; }
.bvmlt-enquiry-feature { display: flex; align-items: center; gap: 16px; }
.bvmlt-enquiry-feature-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(197,165,90,0.15); border: 1px solid rgba(197,165,90,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.bvmlt-enquiry-feature-icon svg { width: 22px; height: 22px; fill: var(--bvmlt-gold); }
.bvmlt-enquiry-feature h4 { font-size: 0.98rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.bvmlt-enquiry-feature p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.bvmlt-enquiry-form-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 44px 36px; position: relative; overflow: hidden; }
.bvmlt-enquiry-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--bvmlt-gold), var(--bvmlt-gold-light), var(--bvmlt-gold)); }
.bvmlt-enquiry-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: 8px; text-align: center; }
.bvmlt-enquiry-form-card > p { color: rgba(255,255,255,0.6); font-size: 0.88rem; text-align: center; margin-bottom: 28px; }
.bvmlt-form-group { margin-bottom: 20px; }
.bvmlt-form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.bvmlt-form-group input { width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; background: rgba(255,255,255,0.08); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; transition: all 0.3s; outline: none; }
.bvmlt-form-group input::placeholder { color: rgba(255,255,255,0.35); }
.bvmlt-form-group input:focus { border-color: var(--bvmlt-gold); background: rgba(255,255,255,0.12); box-shadow: 0 0 0 3px rgba(197,165,90,0.15); }
.bvmlt-form-group input.bvmlt-error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.15); }
.bvmlt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bvmlt-btn-submit { width: 100%; padding: 16px; border: none; border-radius: 12px; background: linear-gradient(135deg, var(--bvmlt-gold), var(--bvmlt-gold-light)); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; position: relative; overflow: hidden; }
.bvmlt-btn-submit::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.bvmlt-btn-submit:hover::before { left: 100%; }
.bvmlt-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(197,165,90,0.4); }
.bvmlt-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.bvmlt-btn-submit svg { width: 20px; height: 20px; fill: #fff; }
.bvmlt-spinner { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: bvmltSpin 0.8s linear infinite; }
@keyframes bvmltSpin { to { transform: rotate(360deg); } }
.bvmlt-btn-submit.bvmlt-loading .bvmlt-spinner { display: block; }
.bvmlt-btn-submit.bvmlt-loading .bvmlt-btn-text,
.bvmlt-btn-submit.bvmlt-loading svg { display: none; }
.bvmlt-form-message { margin-top: 16px; padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; font-weight: 500; display: none; animation: bvmltFadeIn 0.4s ease-out; }
@keyframes bvmltFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.bvmlt-form-message.bvmlt-success { display: block; background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3); color: #2ecc71; }
.bvmlt-form-message.bvmlt-error-msg { display: block; background: rgba(231,76,60,0.15); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; }
.bvmlt-form-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.bvmlt-form-secure svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.4); }

/* ===== FOOTER ===== */
.bvmlt-footer { background: var(--bvmlt-blue-deep); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.bvmlt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.bvmlt-footer-brand p { font-size: 0.92rem; line-height: 1.8; margin-top: 18px; max-width: 320px; }
.bvmlt-footer-brand-logo { filter: brightness(0) invert(1); height: 42px; }
.bvmlt-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.bvmlt-footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.bvmlt-footer-social a:hover { background: var(--bvmlt-gold); transform: translateY(-3px); }
.bvmlt-footer-social a svg { width: 18px; height: 18px; fill: #fff; }
.bvmlt-footer-col h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.bvmlt-footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--bvmlt-gold); }
.bvmlt-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.bvmlt-footer-col a { font-size: 0.9rem; transition: color 0.3s, padding-left 0.3s; }
.bvmlt-footer-col a:hover { color: var(--bvmlt-gold); padding-left: 6px; }
.bvmlt-footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 12px; }
.bvmlt-footer-contact-item svg { width: 18px; height: 18px; fill: var(--bvmlt-gold); flex-shrink: 0; margin-top: 3px; }
.bvmlt-footer-contact-item a { color: var(--bvmlt-gold-light); }
.bvmlt-footer-bottom { text-align: center; padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== FAB GROUP (stacked: WhatsApp + Scroll Top) ===== */
.bvmlt-fab-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bvmlt-fab-whatsapp {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: all 0.3s;
  position: relative;
  opacity: 0;
  transform: scale(0) translateY(20px);
  animation: bvmltFabPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
}
.bvmlt-fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.bvmlt-fab-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
/* WhatsApp pulse ring */
.bvmlt-fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: bvmltFabPulse 2s ease-out infinite;
}
@keyframes bvmltFabPopIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes bvmltFabPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.bvmlt-fab-scrolltop {
  width: 44px; height: 44px;
  background: var(--bvmlt-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(27,79,138,0.3);
}
.bvmlt-fab-scrolltop.bvmlt-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.bvmlt-fab-scrolltop:hover { background: var(--bvmlt-gold); transform: translateY(-2px); }
.bvmlt-fab-scrolltop svg { width: 20px; height: 20px; fill: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .bvmlt-hero .bvmlt-container { grid-template-columns: 1fr; text-align: center; }
  .bvmlt-hero-desc { margin: 0 auto 32px; }
  .bvmlt-hero-buttons { justify-content: center; }
  .bvmlt-hero-stats { justify-content: center; }
  .bvmlt-hero-visual { display: none; }
  .bvmlt-about-grid, .bvmlt-why-grid, .bvmlt-enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .bvmlt-why-visual { order: 1; }
  .bvmlt-why-content { order: 2; }
  .bvmlt-learn-grid { grid-template-columns: 1fr; }
  .bvmlt-cta-box { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .bvmlt-cta-buttons { justify-content: center; }
  .bvmlt-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .bvmlt-nav-links { display: none; }
  .bvmlt-mobile-toggle { display: block; }
  .bvmlt-nav-links.bvmlt-active { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .bvmlt-about-highlights { grid-template-columns: 1fr; }
  .bvmlt-curriculum-grid { grid-template-columns: 1fr; }
  .bvmlt-career-grid { grid-template-columns: 1fr; }
  .bvmlt-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .bvmlt-why-collage { grid-template-columns: 1fr; gap: 16px; }
  .bvmlt-why-img:first-child { grid-row: auto; height: 350px; }
  .bvmlt-why-img { height: 220px; }
  .bvmlt-why-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
  .bvmlt-form-row { grid-template-columns: 1fr; }
  .bvmlt-enquiry-form-card { padding: 32px 24px; }
  .bvmlt-fab-group { bottom: 16px; right: 16px; gap: 10px; }
  .bvmlt-fab-whatsapp { width: 50px; height: 50px; }
  .bvmlt-fab-whatsapp svg { width: 26px; height: 26px; }
  .bvmlt-fab-scrolltop { width: 40px; height: 40px; }
  .bvmlt-fab-scrolltop svg { width: 18px; height: 18px; }
}

/* =============================================
   FIELD-LEVEL VALIDATION STYLES
   ============================================= */
.bvmlt-form-group { position: relative; }
.bvmlt-form-group input.bvmlt-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.15) !important;
  animation: bvmltShake 0.4s ease-in-out;
}
.bvmlt-form-group input.bvmlt-valid {
  border-color: #2ecc71 !important;
  box-shadow: 0 0 0 3px rgba(46,204,113,0.12) !important;
}
.bvmlt-field-error {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 6px;
  padding-left: 2px;
  line-height: 1.4;
  animation: bvmltFadeIn 0.3s ease-out;
}
@keyframes bvmltShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* WhatsApp + Scroll-top are now in .bvmlt-fab-group above */

/* ===== BVMLT: YEAR TABS ===== */
.bvmlt-year-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.bvmlt-year-tab { padding: 12px 32px; border: 2px solid var(--bvmlt-blue); border-radius: 50px; background: transparent; color: var(--bvmlt-blue); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.bvmlt-year-tab:hover { background: rgba(27,79,138,0.06); }
.bvmlt-year-tab.bvmlt-active { background: var(--bvmlt-blue); color: #fff; box-shadow: 0 4px 16px rgba(27,79,138,0.25); }
.bvmlt-year-content { display: none; animation: bvmltTabFadeIn 0.5s ease-out; }
.bvmlt-year-content.bvmlt-active { display: block; }
@keyframes bvmltTabFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .bvmlt-year-tab { padding: 10px 20px; font-size: 0.82rem; } }
.bvmlt-career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 992px) { .bvmlt-career-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .bvmlt-career-grid { grid-template-columns: 1fr; } }
