/* ============================================
   SRIVARA ACADEMY - 2026 PREMIUM DESIGN
   ============================================ */

:root {
  /* Srivara Academy Brand Colors */
  --primary: #002244;
  --primary-dark: #001a33;
  --primary-light: #f0f5ff;
  --accent: #D32F2F;
  --accent-dark: #8B0018;
  --accent-light: #ffebee;
  --success: #10B981;
  --success-light: #ECFDF5;
  --bg-light: #F8FAFC;
  --bg-dark: #001a33;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-50: rgba(255, 255, 255, 0.5);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 34, 68, 0.15);
}

* {
  --bs-font-sans-serif: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }
.fw-500 { font-weight: 500; }

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */

.announcement-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #001a33 100%);
  color: #fff;
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--white-10);
  animation: slideDown 0.5s ease-out;
}

.announcement-banner span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar-glass {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
  letter-spacing: -0.5px;
}

.navbar-logo {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.nav-link {
  color: var(--text-dark) !important;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23002244' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 12px;
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: var(--primary-light);
    border-radius: 4px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f5ff 50%, #fff5f5 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section .z-1 {
  position: relative;
  z-index: 1;
}

.badge-primary-light {
  background: var(--primary-light) !important;
  color: var(--primary);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
}

.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Manrope";
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
}

.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 34, 68, 0.2);
}

.hero-illustration-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 34, 68, 0.95) 60%, rgba(0, 34, 68, 0.98) 100%);
  padding: 32px;
  color: #fff;
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-overlay-card .hero-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.hero-overlay-card h5 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Manrope";
}

.hero-overlay-card p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section {
  padding: 80px 0;
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: "Manrope";
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-white .section-label {
  color: var(--accent);
}

.text-white-50 {
  color: var(--white-50);
}

/* ============================================
   PROGRAM CARDS
   ============================================ */

.program-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Manrope";
}

.bg-primary-light {
  background: linear-gradient(135deg, var(--primary) 0%, #003366 100%);
}

.bg-accent-light {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.bg-success-light {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.program-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.program-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  flex-grow: 1;
}

.level-badge {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.program-card-accent {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(139, 0, 24, 0.05) 100%);
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.program-card-accent .program-icon {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

/* ============================================
   LEARNING CARDS
   ============================================ */

.learning-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.learning-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.learning-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.learning-card h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.learning-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  text-align: left;
  font-size: 0.9rem;
}

.learning-features li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.learning-features i {
  color: var(--success);
  font-size: 0.9rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 800;
  font-family: "Manrope";
  flex-shrink: 0;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FOUNDER VISION SECTION
   ============================================ */

.bg-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.bg-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.founder-card {
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.4) 0%, rgba(139, 0, 24, 0.3) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.founder-card:hover {
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.5) 0%, rgba(139, 0, 24, 0.4) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.founder-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.founder-card h5 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  font-family: "Manrope";
  letter-spacing: 0.5px;
}

.founder-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: "Manrope";
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 10px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #000d1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 34, 68, 0.3);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  color: #fff;
  border-top: 1px solid var(--white-10);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo {
  background: rgba(211, 47, 47, 0.2);
  transform: scale(1.05);
}

.footer-brand h6 {
  font-size: 1.1rem;
  text-transform: none;
  margin: 0;
  letter-spacing: -0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--white-50);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  transform: scale(1.1);
}

.social-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}

.social-instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  border-color: #DD2A7B;
}

.border-white-10 {
  border-color: var(--white-10) !important;
}

.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-meta a {
  color: var(--white-50);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-meta a:hover {
  color: #fff;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-bottom: 1px solid rgba(0, 34, 68, 0.1);
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: "Manrope";
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================
   COURSE CARDS
   ============================================ */

.course-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.course-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-accent {
  background: var(--accent);
}

.course-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Manrope";
}

.course-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 800;
  font-family: "Manrope";
}

.course-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.detail-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.course-features {
  font-size: 0.9rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  margin: 0;
}

.feature-list i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.course-card-featured {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, rgba(139, 0, 24, 0.02) 100%);
  border: 2px solid rgba(211, 47, 47, 0.2);
}

/* ============================================
   ELIGIBILITY CARDS
   ============================================ */

.eligibility-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.eligibility-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.eligibility-card h5 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: "Manrope";
}

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

.eligibility-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.eligibility-list strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 60px;
  }

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

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

  .section {
    padding: 60px 0;
  }

  .stats-row {
    gap: 20px;
  }

  .cta-box {
    padding: 32px;
    text-align: left;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .footer-meta {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

/* ============================================
   COURSE DETAIL PAGE
   ============================================ */

.course-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 34, 68, 0.1);
}

.course-type-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.course-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.course-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.course-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 34, 68, 0.1);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.hero-stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.course-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.course-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 34, 68, 0.2);
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Manrope";
}

.module-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(211, 47, 47, 0.05) 100%);
  border: 1px solid rgba(0, 34, 68, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.module-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 34, 68, 0.12);
}

.module-badge {
  position: absolute;
  top: -10px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.module-card h6 {
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.subject-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.subject-item:hover {
  border-color: var(--success);
  background: var(--success-light);
}

.subject-item i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.course-sidebar-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.course-sidebar-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.9rem;
}

.stat-row span {
  color: var(--text-muted);
}

.stat-row strong {
  color: var(--primary);
  font-weight: 800;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 20px;
  position: relative;
  border-left: 3px solid var(--primary);
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 100%;
  width: 3px;
  height: 20px;
  background: var(--primary);
}

.process-step:last-child {
  border-left-color: var(--accent);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step h6 {
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-icon-large {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-header {
  margin-bottom: 16px;
}

.testimonial-header i {
  margin-right: 4px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--text-dark);
}

.accordion-item {
  border: 1px solid rgba(0, 34, 68, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: #fff;
}

.accordion-button {
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 16px 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23002244' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 16px 20px;
  color: var(--text-muted);
  line-height: 1.6;
}
  .announcement-banner {
    font-size: 0.8rem;
    padding: 12px 0;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  .program-card,
  .learning-card,
  .feature-card {
    padding: 20px;
  }

  .stats-row {
    justify-content: center;
  }

  .d-flex.justify-content-lg-end {
    justify-content: flex-start !important;
  }
}

/* ============================================
   MENTORSHIP PAGE
   ============================================ */

.feature-stat {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
  font-family: "Manrope";
}

.feature-stat span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mentorship-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 34, 68, 0.2);
}

.mentorship-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentorship-type-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mentorship-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.mentorship-type-card.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.03) 0%, rgba(139, 0, 24, 0.02) 100%);
}

.type-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.type-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.mentorship-type-card h5 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope";
}

.mentorship-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  flex-grow: 1;
  text-align: left;
}

.mentorship-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.mentorship-features i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.type-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Manrope";
}

.mentor-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.mentor-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.mentor-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--primary-light);
}

.mentor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mentor-card:hover .mentor-image {
  transform: scale(1.05);
}

.mentor-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
}

.mentor-card > * {
  padding-left: 20px;
  padding-right: 20px;
}

.mentor-card > :first-of-type {
  padding-top: 20px;
}

.mentor-card > :last-of-type {
  padding-bottom: 20px;
}

.mentor-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: "Manrope";
}

.mentor-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.mentor-bio {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.mentor-stats {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 8px;
}

.mentor-stats .stat {
  flex: 1;
  text-align: center;
}

.mentor-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.mentor-stats span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.benefit-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.benefit-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope";
}

.process-card {
  background: #fff;
  border: 2px solid rgba(0, 34, 68, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
  font-family: "Manrope";
}

.process-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope";
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   RESULTS PAGE
   ============================================ */

.stats-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stats-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.stats-icon.accent {
  color: var(--accent);
}

.stats-icon.success {
  color: var(--success);
}

.stats-icon.primary {
  color: var(--primary);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: "Manrope";
}

.stats-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stats-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Rank Holder Cards */
.rankholder-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.rankholder-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.rankholder-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.rankholder-info {
  padding: 24px;
}

.rankholder-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: "Manrope";
}

.rankholder-qualification {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.rankholder-score {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.rankholder-quote {
  line-height: 1.6;
  font-style: italic;
}

.rankholder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Metric Cards */
.metric-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.metric-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: "Manrope";
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 34, 68, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.metric-percentage {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Success Story Cards */
.success-story-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.success-story-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.story-header {
  margin-bottom: 16px;
}

.story-header i {
  margin-right: 4px;
}

.story-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.story-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-author strong {
  color: var(--text-dark);
  font-weight: 800;
}

/* Career Cards */
.career-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.career-card h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: "Manrope";
}

.career-stat {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-number {
    font-size: 2rem;
  }

  .rankholder-image {
    height: 200px;
  }

  .metric-card {
    padding: 16px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope";
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Manrope";
}

.form-control,
.form-select {
  border: 1px solid rgba(0, 34, 68, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 34, 68, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-control-lg {
  padding: 14px 18px;
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  border-color: var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 8px;
}

/* Contact Sidebar */
.contact-sidebar-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-sidebar-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Manrope";
}

.action-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--primary-light);
  border-radius: 12px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.action-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

.action-link i:first-child {
  font-size: 1.2rem;
}

.action-link span {
  flex-grow: 1;
  font-weight: 600;
}

.action-link i:last-child {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-link:hover i:last-child {
  opacity: 1;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  margin-bottom: 12px;
}

.faq-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.faq-list a:hover {
  color: var(--primary);
  margin-left: 4px;
}

.faq-list a::before {
  content: '→';
  margin-right: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-list a:hover::before {
  opacity: 1;
}

/* Inquiry Type Cards */
.inquiry-type-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.inquiry-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.inquiry-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.inquiry-type-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope";
}

/* Commitment Cards */
.commitment-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.commitment-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: "Manrope";
}

.commitment-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: "Manrope";
}

.commitment-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Map Container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 34, 68, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-sidebar-card {
    padding: 20px;
  }

  .form-title {
    font-size: 1.3rem;
  }
}

/* ============================================
   BLOGS PAGE
   ============================================ */

.featured-article {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 34, 68, 0.15);
}

.article-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.article-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: "Manrope";
}

.article-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.article-excerpt {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--primary-light);
}

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

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

.blog-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

.blog-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: "Manrope";
  flex-grow: 1;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-meta i {
  margin-right: 4px;
  color: var(--primary);
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

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

.blog-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(4px);
}

/* Category Cards */
.category-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border: 1px solid rgba(0, 34, 68, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.category-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.category-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: "Manrope";
}

.count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Newsletter Box */
.newsletter-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  font-family: "Manrope";
}

.newsletter-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--text-dark);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-article {
    padding: 24px;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .blog-title {
    font-size: 1rem;
  }

  .newsletter-box {
    padding: 24px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   STICKY ENQUIRY FORM
   ============================================ */

.enquiry-form-sticky {
  position: fixed;
  bottom: -500px;
  right: 20px;
  width: 350px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 34, 68, 0.25);
  z-index: 999;
  transition: all 0.4s ease;
  padding: 0;
  overflow: hidden;
}

.enquiry-form-sticky.show {
  bottom: 30px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    bottom: -500px;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

.enquiry-form-container {
  position: relative;
  height: 100%;
}

.enquiry-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.enquiry-close-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.enquiry-form-content {
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  padding: 28px 24px 24px;
}

.enquiry-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: "Manrope";
}

.enquiry-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.enquiry-form .form-group {
  margin-bottom: 10px !important;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
  border: 1px solid rgba(0, 34, 68, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 34, 68, 0.1);
}

.enquiry-form .btn {
  margin-top: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.enquiry-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 34, 68, 0.2);
}

@media (max-width: 576px) {
  .enquiry-form-sticky {
    width: calc(100% - 20px);
    right: 10px;
    left: 10px;
    bottom: -500px;
  }

  .enquiry-form-sticky.show {
    bottom: 20px;
  }

  .enquiry-form-content {
    padding: 24px 20px 20px;
  }

  .enquiry-title {
    font-size: 1.1rem;
  }

  .enquiry-subtitle {
    font-size: 0.8rem;
  }
}

/* ============================================
   LIFE AT SRIVARA PAGE
   ============================================ */

.life-stat {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.life-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.life-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
  font-family: "Manrope";
}

.life-stat span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.life-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 34, 68, 0.2);
}

.life-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Initiative Cards */
.initiative-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.initiative-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.initiative-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.initiative-card h5 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: "Manrope";
}

.initiative-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  text-align: left;
}

.initiative-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.initiative-list i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Gallery */
.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 34, 68, 0.95) 100%);
  color: #fff;
  padding: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Payment QR Modal */
.qr-code-container {
  background: #fff;
  border-radius: 12px;
}

#qrCodeDisplay {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.company-info {
  background: #f0f5ff;
  border-left: 4px solid var(--primary);
}

.payment-instructions {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
}

.payment-instructions ol {
  padding-left: 20px;
}

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  border: none;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.scroll-to-top.show {
  display: flex;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Founder Card Variations */
.founder-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.founder-info {
  background: rgba(0, 34, 68, 0.95);
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
}

.founder-info h4 {
  color: #fff;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}

.founder-info p {
  color: rgba(255, 255, 255, 0.9);
}

.founder-philosophy {
  margin-top: 24px;
}

.founder-philosophy .d-flex {
  padding: 16px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--success);
}
