/* ============================================
   SST PRO - PREMIUM DESIGN SYSTEM 2026
   ============================================
   A premium, modern, conversion-focused
   educational platform design language.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-darker: #3730A3;
  --primary-light: #EEF2FF;
  --primary-lighter: #E0E7FF;
  --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #818CF8 100%);
  --primary-gradient-soft: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  --secondary: #0F172A;
  --secondary-light: #1E293B;
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-gradient: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  --accent-soft: #D1FAE5;
  --success: #22C55E;
  --warning: #F59E0B;
  --warning-soft: #FEF3C7;
  --danger: #EF4444;
  --danger-soft: #FEE2E2;
  --info: #3B82F6;
  --violet: #8B5CF6;
  --violet-soft: #EDE9FE;
  --violet-gradient: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
  --amber: #F59E0B;
  --amber-gradient: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  --rose: #F43F5E;
  --cyan: #06B6D4;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --bg-dark: #0F172A;
  --white: #FFFFFF;
  --white-glass: rgba(255, 255, 255, 0.85);
  --white-glass-heavy: rgba(255, 255, 255, 0.95);
  --text: #334155;
  --text-light: #64748B;
  --text-lighter: #94A3B8;
  --text-dark: #0F172A;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --border-glass: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 4px 24px rgba(79, 70, 229, 0.35);
  --shadow-glow-accent: 0 4px 24px rgba(16, 185, 129, 0.35);
  --shadow-glow-amber: 0 4px 24px rgba(245, 158, 11, 0.35);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }
a { transition: var(--transition); text-decoration: none; color: var(--primary); }
a:hover { color: var(--primary-dark); }
ul { padding: 0; margin: 0; list-style: none; }

::selection {
  background: var(--primary);
  color: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-gradient-soft);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(79, 70, 229, 0.15);
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

.text-center { text-align: center; }

/* ============ PREMIUM HEADER ============ */
.sst-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
}

.sst-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.logo:hover img {
  border-color: var(--primary);
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.logo-text .logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--primary-gradient);
  transition: var(--transition);
  border-radius: 2px;
  opacity: 0;
}

.navbar a:hover::before,
.navbar a.active::before {
  width: 60%;
  opacity: 1;
}

.navbar a:hover:not(.enroll-btn) {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar a.active:not(.enroll-btn) {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.enroll-btn {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.enroll-btn::before {
  display: none !important;
}

.enroll-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

.enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45) !important;
}

.enroll-btn:active {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--bg-alt);
}

.menu-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ PREMIUM TICKER ============ */
.ticker-wrapper {
  background: var(--secondary);
  color: var(--white);
  padding: 10px 0;
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#sst-ticker-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gradient);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-item {
  display: none;
  animation: fadeInTicker 0.5s ease-out;
}

.ticker-item.active { display: block; }

.ticker-item a {
  color: var(--white);
  transition: var(--transition);
}

.ticker-item a:hover {
  opacity: 0.8;
}

.ticker-text { opacity: 0.95; }

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

/* ============ PREMIUM HERO SECTION ============ */
.hero-section {
  background: linear-gradient(135deg, #312E81 0%, #4F46E5 35%, #6366F1 65%, #1E293B 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 15.523 0 10s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Floating decorative shapes */
.hero-section .floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.1;
}

.hero-section .floating-shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation: float-shape 8s ease-in-out infinite;
}

.hero-section .floating-shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  animation: float-shape 6s ease-in-out infinite reverse;
}

.hero-section .floating-shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  top: 30%;
  right: 5%;
  animation: float-shape 10s ease-in-out infinite 2s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-badge .badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, #A5B4FC 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ============ PREMIUM BUTTON SYSTEM ============ */
.btn-primary-custom,
.btn-outline-custom,
.card-btn,
.view-btn,
.enroll-btn {
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white) !important;
  color: var(--primary) !important;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}

.btn-primary-custom:active {
  transform: translateY(-1px);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white) !important;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline-custom:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-custom:active {
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #A5B4FC 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  opacity: 0.7;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-visual-inner::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(16, 185, 129, 0.2));
  filter: blur(20px);
  z-index: -1;
}

.hero-visual-inner img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card-1 {
  top: -15px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

.floating-card .fc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-card .fc-icon.green {
  background: var(--accent-soft);
}
.floating-card .fc-icon.blue {
  background: var(--primary-light);
}

.floating-card .fc-icon i {
  font-size: 1.1rem !important;
}

.floating-card .fc-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 700;
}

.floating-card .fc-text span {
  font-size: 0.7rem;
  color: var(--text-light);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: relative;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  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.85rem;
  color: var(--text);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.trust-item i {
  font-size: 1.1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ PREMIUM COURSE CARDS ============ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.course-card-modern {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-bounce);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 60%, rgba(79, 70, 229, 0.03));
  pointer-events: none;
}

.course-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(79, 70, 229, 0.2);
}

.course-card-modern .card-top {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
  position: relative;
  overflow: hidden;
}

.course-card-modern .card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.course-card-modern .card-top img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.course-card-modern:hover .card-top img {
  transform: scale(1.15) rotate(-2deg);
}

.course-card-modern .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
  z-index: 2;
}

.course-card-modern .card-body {
  padding: 24px 28px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.course-card-modern h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.course-card-modern .card-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.course-card-modern .card-duration i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-card-modern p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

.card-btn:hover {
  transform: translateY(-2px);
  gap: 12px;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
  color: var(--white) !important;
}

.card-btn:active {
  transform: translateY(0);
}

/* ============ FEATURES / WHY CHOOSE US ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition-bounce);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.feature-card .fc-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  transition: var(--transition-bounce);
  position: relative;
}

.feature-card:hover .fc-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============ PREMIUM STATS COUNTERS ============ */
.stats-section {
  background: var(--secondary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  color: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-item .stat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #A5B4FC 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.88rem;
  opacity: 0.7;
  font-weight: 500;
}

/* ============ PREMIUM TESTIMONIALS ============ */
.testimonials-section {
  background: var(--bg);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition-bounce);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--border);
  opacity: 0.5;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.15);
}

.testimonial-card .t-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-card .t-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--primary-light);
  transition: var(--transition);
}

.testimonial-card:hover .t-avatar {
  border-color: var(--primary);
  transform: scale(1.05);
}

.testimonial-card .t-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-card .t-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-card .t-stars {
  color: var(--warning);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testimonial-card .t-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============ STUDENT JOURNEY ============ */
.journey-modern {
  padding: 80px 0;
  background: var(--white);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.journey-step-modern {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition-bounce);
  overflow: hidden;
}

.journey-step-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.journey-step-modern:hover::before {
  opacity: 1;
}

.journey-step-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.15);
}

.journey-step-modern .step-num {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.journey-step-modern h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.journey-step-modern p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============ NOTICE CARDS ============ */
.notice-card-premium {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition-bounce);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.notice-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.15);
}

.notice-card-premium .notice-meta {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.notice-card-premium .notice-meta .date {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.notice-card-premium .notice-meta .pinned {
  font-size: 0.7rem;
  color: var(--warning);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.notice-card-premium .notice-body {
  padding: 24px;
  flex-grow: 1;
}

.notice-card-premium .notice-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.notice-card-premium .notice-body h3 .new-badge {
  background: var(--danger);
  color: var(--white);
  font-size: 0.6rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.new-badge {
  background: var(--danger);
  color: var(--white);
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.5px;
  vertical-align: middle;
  display: inline-block;
}

.notice-card-premium .notice-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.notice-card-premium .notice-actions {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice-card-premium .notice-actions a {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
}

/* ============ STUDENT CORNER / RESULT CARDS ============ */
.result-modern-card {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.result-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.result-modern-card:nth-child(2)::before {
  background: var(--accent-gradient);
}

.result-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.result-modern-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 18px;
  transition: var(--transition-bounce);
}

.result-modern-card:hover img {
  transform: scale(1.1);
}

.result-modern-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.result-modern-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: left;
  margin-bottom: 24px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.view-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45);
  color: var(--white) !important;
}

/* ============ PREMIUM FORMS ============ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
select,
textarea {
  font-family: var(--font-body);
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ============ PREMIUM FOOTER ============ */
.sst-footer-modern {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.sst-footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), rgba(16, 185, 129, 0.5), transparent);
}

.sst-footer-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 20px;
}

.footer-links-modern li {
  margin-bottom: 12px;
}

.footer-links-modern a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-modern a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-links-modern a i {
  font-size: 0.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.footer-links-modern a:hover i {
  transform: translateX(2px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-contact li i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-bounce);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: var(--primary-gradient);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
  border-color: transparent;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-bottom strong {
  color: var(--white);
}

.footer-bottom i {
  color: var(--danger) !important;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
  transition: var(--transition-bounce);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ============ NOTICE PAGE HERO ============ */
.notice-page-hero {
  background: linear-gradient(135deg, #312E81 0%, #4F46E5 50%, #1E293B 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.notice-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.notice-page-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.notice-page-hero h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.notice-page-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
}

/* ============ PREMIUM TABLE ============ */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

thead tr {
  background: var(--primary-gradient);
  color: var(--white);
}

th {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

tbody tr {
  transition: var(--transition);
}

tbody tr:hover {
  background: var(--primary-light);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ============ SECTION PADDING ============ */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

/* ============ AOS ANIMATIONS ============ */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }
[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translate(0); }

/* ============ RIPPLE EFFECT ============ */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============ CARD GLOW ============ */
.card-glow {
  position: relative;
}

.card-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--primary-gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  filter: blur(8px);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-section { padding: 70px 0 60px; }
}

@media (max-width: 900px) {
  .navbar {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .navbar.open {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar a {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius);
  }

  .navbar a::before { display: none; }

  .navbar a.active:not(.enroll-btn) {
    background: var(--primary-light);
    border-left: 3px solid var(--primary);
  }

  .menu-toggle { display: flex; }

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

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }

  .hero-section { padding: 50px 0; }
}

@media (max-width: 768px) {
  .header-container { height: 64px; }
  .navbar { top: 64px; }
  .logo-text .logo-name { font-size: 1rem; }
  .logo img { width: 40px; height: 40px; }
  .enroll-btn { padding: 8px 18px !important; font-size: 0.78rem !important; }

  .hero-section { padding: 40px 0; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 1rem; }

  .trust-strip-inner { gap: 16px; }
  .trust-item { font-size: 0.78rem; padding: 4px 0; }
  .trust-item i { font-size: 1rem; }

  .footer-main { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .footer-links-modern a { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item .stat-number { font-size: 2rem; }
  .stat-item { padding: 20px 12px; }

  .section-padding { padding: 50px 0; }
  .section-padding-sm { padding: 30px 0; }

  .result-modern-card { padding: 28px 24px; }

  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

  table { font-size: 0.85rem; }
  th, td { padding: 12px 14px; }
  td .card-btn { font-size: 0.75rem; padding: 5px 12px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 40px 0 30px; }
  .hero-title { font-size: 1.5rem; }
  .hero-stats { gap: 16px; }
  .hero-stat .stat-number { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary-custom,
  .hero-actions .btn-outline-custom { width: 100%; justify-content: center; }

  .courses-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .journey-grid { grid-template-columns: 1fr; gap: 20px; }

  .trust-strip-inner { gap: 12px; }
  .trust-item { font-size: 0.75rem; }

  .stats-grid { gap: 14px; }
  .stat-item .stat-number { font-size: 1.6rem; }
  .stat-item .stat-icon { font-size: 1.5rem; }

  .footer-main { padding: 50px 20px 30px; }
  .footer-main { gap: 24px; }
}

/* ============ COURSE PAGE STICKY NAV ============ */
.course-page-nav {
  background: var(--secondary);
  padding: 14px 0;
  position: sticky;
  top: 76px;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.course-page-nav .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.course-page-nav .nav-links a {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.course-page-nav .nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============ ENROLLMENT CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============ WELCOME SECTION ============ */
.welcome-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
}

/* ============ NOTICE SECTION ON INDEX ============ */
.notice-scroll-area {
  overflow-y: auto;
  height: 280px;
  padding: 8px 24px;
}

.notice-scroll-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-item:hover {
  padding-left: 6px;
}

.notice-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.notice-item .notice-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.notice-actions-row {
  padding: 14px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.notice-actions-row a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.notice-actions-row a:hover {
  gap: 8px;
  opacity: 0.8;
}

/* ============ VIDEO CARD ============ */
.video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}

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

.video-card .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--secondary);
}

.video-card .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card .video-footer {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-card .video-footer .video-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-card .video-footer .video-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ============ ENROLL FORM ============ */
.enroll-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.enroll-form-header {
  background: var(--primary-gradient);
  padding: 28px 32px;
  text-align: center;
}

.enroll-form-header h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
}

.enroll-form-body {
  padding: 36px 32px;
}

/* ============ CONTACT CARDS ============ */
.contact-card {
  text-align: left;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.2);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
}

.contact-card p i {
  margin-right: 8px;
}

.contact-card p a {
  color: var(--text);
}

.contact-card p a:hover {
  color: var(--primary);
}

/* ============ MISSION/VISION CARDS ============ */
.mission-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: left;
  transition: var(--transition);
}

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

.mission-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.mission-card p {
  line-height: 1.7;
  color: var(--text);
  font-size: 0.95rem;
}

/* ============ MAP CARD ============ */
.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}
