/* ==========================================================================
   PINNACLE EDUCATION CENTRE - STYLING SYSTEM
   Theme: Deep Navy Blue & Golden Amber — Official Brand Identity
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Deep Navy Blue & Golden Amber (Logo Brand Colors) */
    --primary: #1d3461;          /* Deep Pinnacle Navy Blue */
    --primary-glow: rgba(29, 52, 97, 0.14);
    --secondary: #f5a623;        /* Pinnacle Golden Amber */
    --secondary-glow: rgba(245, 166, 35, 0.18);
    --dark: #0f1e3a;             /* Midnight Navy for Text & Backgrounds */
    --dark-muted: #5a6a85;       /* Muted Steel Blue for Body Text */
    --light-bg: #f4f7fc;         /* Clean Navy-Tinted White Background */
    --pure-white: #ffffff;
    --gold: #f5a623;             /* Pinnacle Amber (same as secondary) */
    --success: #059669;          /* Elegant Emerald Badges */
    
    /* Pinnacle Brand Gradients */
    --grad-primary: linear-gradient(135deg, #1d3461 0%, #274d8e 100%);
    --grad-accent: linear-gradient(135deg, #f5a623 0%, #fbbf24 100%);
    --grad-glow: linear-gradient(135deg, rgba(29, 52, 97, 0.04) 0%, rgba(245, 166, 35, 0.04) 100%);
    --grad-text: linear-gradient(135deg, #1d3461 0%, #274d8e 100%);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows & Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 12px rgba(29, 52, 97, 0.06);
    --shadow-md: 0 12px 24px rgba(29, 52, 97, 0.1);
    --shadow-lg: 0 20px 40px rgba(29, 52, 97, 0.14);
    --shadow-glass: 0 8px 32px 0 rgba(29, 52, 97, 0.08);
    --border-glass: 1px solid rgba(255, 255, 255, 0.55);
    --bg-glass: rgba(255, 255, 255, 0.78);
    
    /* Transition Defaults */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-muted);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   2. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. Premium Aesthetic Components (Buttons, Gradients, Badges)
   -------------------------------------------------------------------------- */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(29, 52, 97, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(29, 52, 97, 0.38);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--primary);
    border: 1px solid rgba(29, 52, 97, 0.18);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--pure-white);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-link {
    background: transparent;
    color: var(--primary);
    padding: 0;
    border-radius: 0;
    font-weight: 700;
}

.btn-link i {
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--secondary);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-sm-primary {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    background: var(--grad-primary);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.btn-sm-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(29, 52, 97, 0.25);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 52, 97, 0.12);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: var(--dark-muted);
}

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

/* --------------------------------------------------------------------------
   4. Header & Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.announcement-info i {
    color: var(--primary);
}

.announcement-info .separator {
    color: rgba(255, 255, 255, 0.2);
}

.announcement-socials {
    display: flex;
    gap: 16px;
}

.announcement-socials a {
    color: rgba(255, 255, 255, 0.7);
}

.announcement-socials a:hover {
    color: #ffffff;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 4px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

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

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

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

body.dark-theme .logo-img {
    filter: brightness(0) invert(1);
}

.logo-img-footer {
    height: 72px;
    filter: brightness(0) invert(1);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #1d3461;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29, 52, 97, 0.3);
}

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

.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    color: #1d3461;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1d3461;
}

.brand-name.white-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.brand-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #5a6a85;
    margin-top: 0;
}

/* Nav Menu */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition-fast);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--pure-white);
    z-index: 110;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    transition: var(--transition-smooth);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    background: var(--light-bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dark);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
    padding: 8px 0;
}

.drawer-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.drawer-footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-muted);
    margin-bottom: 8px;
}

.drawer-phone {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.drawer-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.drawer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-muted);
}

.drawer-socials a:hover {
    background: var(--primary);
    color: var(--pure-white);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    background: radial-gradient(circle at 10% 20%, rgba(29, 52, 97, 0.05) 0%, rgba(245, 166, 35, 0.03) 90%);
    padding: 120px 0 100px 0;
}

.hero-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(var(--primary-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--pure-white);
    border: 1px solid rgba(29, 52, 97, 0.14);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    top: 0;
    left: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-taglines {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.tagline-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    background: rgba(255,255,255,0.6);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.5);
}

.tagline-item i {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: var(--dark-muted);
}

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

.hero-features-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 32px;
}

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

.hfi-icon {
    width: 44px;
    height: 44px;
    background: var(--pure-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

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

.hfi-text strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.hfi-text span {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

/* Hero Visual Card Stack */
.hero-visual {
    position: relative;
}

.hero-card-wrapper {
    position: relative;
    padding: 20px;
}

.hero-main-card {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.glass-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.badge-success {
    padding: 6px 12px;
    background: var(--primary);
    color: var(--pure-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-dots {
    display: flex;
    gap: 4px;
}

.card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hero-main-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-main-card .subtitle {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin-bottom: 24px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.stat-bubble {
    background: var(--pure-white);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.stat-bubble .num {
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-bubble .lbl {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-muted);
    margin-top: 4px;
}

.bullet-list-hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.bullet-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bullet-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.8rem;
}

.bullet-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
}

.live-indicator {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.btn-card-action {
    background: var(--dark);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-card-action:hover {
    background: var(--primary);
    transform: translateX(3px);
}

/* Decorative Floating Mini-cards */
.mini-card {
    position: absolute;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    z-index: 3;
}

.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1rem;
}

.mini-icon.blue-bg { background: var(--primary); }
.mini-icon.purple-bg { background: var(--secondary); }

.mini-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
}

.mini-info p {
    font-size: 0.7rem;
    color: var(--dark-muted);
}

.shadow-1 {
    top: 40px;
    left: -40px;
}

.shadow-2 {
    bottom: 40px;
    right: -20px;
}

/* Float Animations */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

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

/* Entrance Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.animate-slide-up-delayed2 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   6. Statistics Counter Section
   -------------------------------------------------------------------------- */
.stats-section {
    background: var(--dark);
    color: var(--pure-white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    display: flex;
    gap: 16px;
    align-items: center;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card:first-child .stat-icon i {
    color: var(--gold);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info h2 {
    color: var(--pure-white);
    font-size: 2.2rem;
    font-weight: 800;
    display: inline-block;
    line-height: 1;
}

.stat-plus {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-left: 2px;
}

.stat-info p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. About the Institute Section
   -------------------------------------------------------------------------- */
.about-section {
    background: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    padding-bottom: 40px;
}

.about-main-img {
    height: 420px;
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.08) 0%, rgba(71, 85, 105, 0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.about-main-img::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    animation: sheen 6s infinite;
}

@keyframes sheen {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(50%, 50%) rotate(45deg); }
}

.academy-badge-card {
    text-align: center;
    padding: 40px;
}

.academy-logo {
    width: 80px;
    height: 80px;
    background: var(--grad-primary);
    color: var(--pure-white);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(190, 24, 93, 0.3);
}

.academy-badge-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.academy-badge-card p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.since-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    padding: 6px 14px;
    background: var(--primary-glow);
    border-radius: 20px;
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 280px;
    padding: 24px;
    z-index: 5;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 0.1;
    display: block;
    margin-bottom: 10px;
}

.quote-text {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 12px;
}

.author {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--dark-muted);
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-bullet-item {
    display: flex;
    gap: 16px;
}

.abi-icon {
    font-size: 1.3rem;
    color: var(--success);
    margin-top: 2px;
}

.abi-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.about-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* --------------------------------------------------------------------------
   8. Courses Offered Section (Tabs & Grid)
   -------------------------------------------------------------------------- */
.courses-section {
    background: var(--light-bg);
}

.tab-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--pure-white);
    color: var(--dark-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: rgba(190, 24, 93, 0.2);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--grad-primary);
    color: var(--pure-white);
    border: none;
    box-shadow: 0 6px 15px rgba(190, 24, 93, 0.25);
}

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

.course-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    display: none; /* Handled dynamically by javascript */
}

/* Active filtered cards will have this class injected */
.course-card.active {
    display: flex;
    animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.course-badge {
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark-muted);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.course-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.course-icon.color-red {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.course-icon.color-blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.course-icon.color-purple {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.course-icon.color-teal {
    background: rgba(20, 184, 166, 0.08);
    color: #14b8a6;
}

.course-icon.color-orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.course-icon.color-indigo {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
}

.course-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.course-desc {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.course-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 20px;
}

.course-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.course-highlights li i {
    color: var(--success);
    font-size: 0.9rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 20px;
}

.mode-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mode-tag i {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   9. Online vs Offline Batches Section
   -------------------------------------------------------------------------- */
.batches-section {
    background: var(--pure-white);
}

.batches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.batch-card {
    padding: 44px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.batch-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    top: -50px;
    right: -50px;
    z-index: 1;
}

.offline-card::before {
    background: var(--primary-glow);
}

.online-card::before {
    background: var(--secondary-glow);
}

.batch-badge {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    padding: 6px 14px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offline-card .batch-badge i { color: var(--primary); }
.online-card .batch-badge i { color: var(--secondary); }

.batch-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.batch-desc {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    color: var(--dark-muted);
    margin-bottom: 32px;
}

.batch-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.bf-item {
    display: flex;
    gap: 16px;
}

.bf-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.offline-card .bf-icon {
    background: var(--primary-glow);
    color: var(--primary);
}

.online-card .bf-icon {
    background: var(--secondary-glow);
    color: var(--secondary);
}

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

.bf-text strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.bf-text span {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin-top: 2px;
}

.batch-footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 28px;
}

.location-availability {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-availability i {
    color: var(--success);
}

/* --------------------------------------------------------------------------
   10. Student Focus & Methodology Section
   -------------------------------------------------------------------------- */
.focus-section {
    background: var(--light-bg);
}

.focus-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.focus-desc-p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    background: var(--pure-white);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.step-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-details p {
    font-size: 0.85rem;
    color: var(--dark-muted);
}

.focus-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.feature-focus-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
}

.feature-focus-card.card-1 { align-self: flex-start; }
.feature-focus-card.card-2 { align-self: center; }
.feature-focus-card.card-3 { align-self: flex-end; }

.focus-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--pure-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-focus-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-focus-card p {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

/* --------------------------------------------------------------------------
   11. Branch Locations Section
   -------------------------------------------------------------------------- */
.branches-section {
    background: var(--pure-white);
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.branch-card-details {
    padding: 40px;
}

.branch-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.branch-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.branch-badge {
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-muted);
}

.branch-card-details h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.branch-address {
    font-size: 0.95rem;
    color: var(--dark-muted);
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
}

.branch-address i {
    color: var(--secondary);
    margin-top: 4px;
}

.branch-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.branch-features-list span {
    background: rgba(0, 0, 0, 0.03);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-muted);
}

.branch-features-list span i {
    color: var(--success);
    margin-right: 4px;
}

.branch-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    margin-bottom: 28px;
}

.branch-phone {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-phone:hover {
    color: var(--secondary);
}

.branch-card-details .branch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branch-card-details .branch-footer span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-muted);
}

/* --------------------------------------------------------------------------
   12. Reviews & Testimonial Slider Section
   -------------------------------------------------------------------------- */
.reviews-section {
    background: var(--light-bg);
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(20px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

/* --------------------------------------------------------------------------
   13. Admissions Form & Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--pure-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-desc {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.cii-item {
    display: flex;
    gap: 20px;
}

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

.cii-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cii-details p {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

.cii-details a {
    color: var(--primary);
    font-weight: 700;
}

.cii-details a:hover {
    color: var(--secondary);
}

.working-hint {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 4px;
}

/* Map Embed area */
.map-toggle-wrapper h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.google-map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    height: 250px;
}

/* Enquiry Form */
.enquiry-form-wrapper {
    padding: 44px;
    position: relative;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-muted);
    font-size: 0.95rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border-radius: var(--radius-sm);
    border: 1px solid #cbd5e1;
    background: var(--pure-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition-fast);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.textarea-wrapper i {
    top: 20px;
    transform: none;
}

.textarea-wrapper textarea {
    padding-top: 14px;
    resize: none;
}

.form-checkbox-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-checkbox-row input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-checkbox-row label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-muted);
    cursor: pointer;
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-content p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    margin-bottom: 32px;
    max-width: 400px;
}

/* --------------------------------------------------------------------------
   14. Admission Modal
   -------------------------------------------------------------------------- */
.admission-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.admission-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.admission-modal {
    width: 100%;
    max-width: 500px;
    padding: 36px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.admission-modal-backdrop.active .admission-modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: var(--light-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.modal-body p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin-bottom: 24px;
}

.modal-body p strong {
    color: var(--secondary);
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #cbd5e1;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 6px;
}

.modal-input:focus {
    border-color: var(--primary);
}

.modal-body .form-group {
    margin-bottom: 18px;
}

.modal-submit {
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   15. Floating WhatsApp Widget & Back To Top
   -------------------------------------------------------------------------- */
.whatsapp-widget-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.whatsapp-widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    position: relative;
    transition: var(--transition-smooth);
}

.whatsapp-widget-toggle:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    color: var(--pure-white);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pure-white);
}

.whatsapp-chat-bubble {
    width: 320px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--pure-white);
    border: var(--border-glass);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: var(--transition-smooth);
}

.whatsapp-chat-bubble.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.wa-bubble-header {
    background: #075e54;
    color: var(--pure-white);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-avatar-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    position: relative;
}

.wa-online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    border: 1px solid #075e54;
}

.wa-counselor-details h4 {
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 700;
}

.wa-counselor-details span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.wa-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--pure-white);
    cursor: pointer;
    font-size: 0.95rem;
    opacity: 0.7;
}

.wa-close-btn:hover { opacity: 1; }

.wa-bubble-body {
    padding: 16px;
    background: #ece5dd;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.wa-msg {
    background: var(--pure-white);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--dark);
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    line-height: 1.4;
}

.wa-msg:first-child {
    border-top-left-radius: 0;
}

.wa-bubble-footer {
    padding: 12px 16px;
    background: var(--pure-white);
    display: flex;
}

.wa-chat-link-btn {
    width: 100%;
    background: #25d366;
    color: var(--pure-white);
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wa-chat-link-btn:hover {
    background: #20ba59;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pure-white);
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 100;
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--pure-white);
}

/* --------------------------------------------------------------------------
   16. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    font-size: 0.9rem;
}

body.dark-theme .footer {
    background: #0b0f19;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-google-stars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-google-stars .stars {
    justify-content: flex-start;
    margin-bottom: 0;
}

.footer-google-stars span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-addr {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 4px;
    color: rgba(255,255,255,0.85);
}

.footer-ph {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col li strong {
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-timing-note {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-timing-note i {
    color: var(--primary);
    margin-right: 6px;
}

.footer-quick-calls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-quick-calls i {
    color: var(--secondary);
    margin-right: 6px;
}

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

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.8rem;
}

.footer-bottom-flex {
    flex-wrap: wrap;
    gap: 16px;
}

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

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

/* --------------------------------------------------------------------------
   17. Scroll-Linked Animations (Triggered via JS class injection)
   -------------------------------------------------------------------------- */
.animate-scroll-scale,
.animate-scroll-slide,
.animate-scroll-slide-right,
.animate-scroll-slide-right-delayed,
.animate-scroll-slide-right-delayed2 {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll-scale {
    transform: scale(0.95);
}

.animate-scroll-slide {
    transform: translateY(40px);
}

.animate-scroll-slide-right {
    transform: translateX(40px);
}

.animate-scroll-slide-right-delayed {
    transform: translateX(40px);
    transition-delay: 0.15s;
}

.animate-scroll-slide-right-delayed2 {
    transform: translateX(40px);
    transition-delay: 0.3s;
}

/* Active trigger classes loaded on visibility intersect */
.scroll-active {
    opacity: 1;
    transform: scale(1) translateY(0) translateX(0) !important;
}

/* --------------------------------------------------------------------------
   18. Mobile Responsive Styles (Mobile-First / Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-taglines {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features-strip {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .batches-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .focus-cards-stack {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .feature-focus-card {
        width: 100%;
        align-self: center !important;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .announcement-bar {
        display: none; /* Hide top details to clear vertical clutter on small screens */
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .btn-nav-call {
        display: none !important; /* Hide call on header to prevent overlay overflow */
    }
    
    .btn-nav-admission {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
    }
    
    .enquiry-form-wrapper {
        padding: 24px;
    }
    
    .form-row.two-cols {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-checkbox-row label {
        font-size: 0.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-flex {
        justify-content: center;
        text-align: center;
    }
    
    .whatsapp-widget-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat-bubble {
        width: 290px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .about-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   19. PREMIUM DARK THEME STYLING
   ========================================================================== */
body {
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-theme {
    --dark: #e8eef8;             /* Crisp Blue-White for Text */
    --dark-muted: #a3b4cc;       /* Muted Navy Blue for Body */
    --light-bg: #0c1529;         /* Deep Midnight Navy Background */
    --pure-white: #162040;       /* Navy Card Backgrounds */
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.7);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.55);
    --bg-glass: rgba(22, 32, 64, 0.82);
    --border-glass: 1px solid rgba(245, 166, 35, 0.08);
}

/* Light / Dark Mode Toggle button style */
.theme-toggle-btn {
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
body.dark-theme .theme-toggle-btn {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

/* Dark mode logo overrides */
body.dark-theme .brand-name {
    color: #e8eef8;
    -webkit-text-fill-color: #e8eef8;
}
body.dark-theme .brand-tagline {
    color: #a3b4cc;
}
body.dark-theme .logo-icon {
    background: #274d8e;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15);
}
.theme-toggle-btn:hover {
    transform: scale(1.08) rotate(15deg);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

/* 20. Floating Sleek Island Navigation Header */
@media (min-width: 1025px) {
    .main-header {
        position: fixed;
        top: 58px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        max-width: 1200px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
        padding: 8px 28px;
        transition: var(--transition-smooth);
    }
    body.dark-theme .main-header {
        background: rgba(12, 21, 41, 0.78);
        border-color: rgba(245, 166, 35, 0.12);
    }
    .main-header.scrolled {
        top: 12px;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: var(--shadow-lg);
        padding: 6px 28px;
    }
    body.dark-theme .main-header.scrolled {
        background: rgba(12, 21, 41, 0.92);
    }
    .desktop-nav ul {
        gap: 22px;
    }
    .nav-link {
        white-space: nowrap;
        font-size: 0.9rem;
    }
    .btn-nav-call, .btn-nav-admission {
        padding: 10px 20px;
        font-size: 0.88rem;
        white-space: nowrap;
    }
    .header-actions {
        gap: 12px;
    }
}

.hero-section {
    padding-top: 140px;
}
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 100px;
    }
}

/* 21. 3D Asymmetric Hero Section Redesign */
.hero-visual {
    perspective: 1500px;
}
.hero-card-wrapper {
    transform-style: preserve-3d;
    transform: rotateY(-8deg) rotateX(6deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.hero-card-wrapper:hover {
    transform: rotateY(-3deg) rotateX(3deg) scale(1.02);
}
.hero-main-card {
    transform: translateZ(10px);
}
.mini-card.shadow-1 {
    transform: translateZ(40px);
    transition: transform 0.4s ease;
}
.mini-card.shadow-2 {
    transform: translateZ(50px);
    transition: transform 0.4s ease;
}
.hero-card-wrapper:hover .mini-card.shadow-1 {
    transform: translateZ(60px) scale(1.05);
}
.hero-card-wrapper:hover .mini-card.shadow-2 {
    transform: translateZ(70px) scale(1.05);
}

/* 22. Bento Grid Layout (Statistics & About Us) */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}
.span-1x2 {
    grid-column: span 1;
    grid-row: span 2;
}
.span-2x1 {
    grid-column: span 2;
    grid-row: span 1;
}
.span-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-about {
    justify-content: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.03) 0%, rgba(71, 85, 105, 0.03) 100%);
}
body.dark-theme .bento-about {
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.08) 0%, rgba(71, 85, 105, 0.08) 100%);
}
.bento-about h3 {
    font-size: 1.8rem;
    font-weight: 800;
}
.bento-about-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}
.bento-bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.bento-bullet i {
    color: var(--success);
    margin-top: 4px;
    font-size: 1.1rem;
}
.bento-bullet p {
    font-size: 0.9rem;
    color: var(--dark-muted);
}
.bento-bullet strong {
    color: var(--dark);
    display: block;
}

.bento-stat {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}
.bento-stat .stat-num-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--dark);
}
.bento-stat .stat-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bento-stat .stat-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.bento-stat p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-muted);
}
.bento-stat-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    opacity: 0.85;
}

.bento-quote {
    justify-content: space-between;
    background: var(--grad-glow);
    border-color: rgba(71, 85, 105, 0.15);
}
body.dark-theme .bento-quote {
    background: rgba(71, 85, 105, 0.05);
}
.bento-quote .quote-mark {
    font-size: 4rem;
    margin-bottom: 0;
}
.bento-quote-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
}
.bento-quote-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 16px;
}

.bento-dual {
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.05) 0%, rgba(71, 85, 105, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.bento-dual i {
    font-size: 2.2rem;
    color: var(--secondary);
}
.bento-dual h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.bento-dual p {
    font-size: 0.75rem;
    color: var(--dark-muted);
}

.bento-preview {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.bento-preview-info {
    max-width: 60%;
}
.bento-preview-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark);
}
.bento-preview-info p {
    font-size: 0.85rem;
    color: var(--dark-muted);
}
.bento-preview-badges {
    display: flex;
    gap: 12px;
}
.bento-p-badge {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bento-p-badge.offline {
    background: var(--primary-glow);
    color: var(--primary);
}
.bento-p-badge.online {
    background: var(--secondary-glow);
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .bento-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-2x2, .span-1x2, .span-2x1, .span-1x1 {
        grid-column: span 2;
        grid-row: span 1;
    }
    .span-1x2 {
        grid-row: span 2;
    }
}
@media (max-width: 580px) {
    .bento-container {
        grid-template-columns: 1fr;
    }
    .span-2x2, .span-1x2, .span-2x1, .span-1x1 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .bento-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .bento-preview-info {
        max-width: 100%;
    }
}

/* 23. Academic Finder & Enquiry Wizard */
.wizard-box {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0 auto;
    overflow: hidden;
}

.wizard-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    padding: 0 50px; /* Prevent labels cutoff on first/last nodes */
    transition: padding 0.3s ease;
}

@media (max-width: 580px) {
    .wizard-steps-header {
        padding: 0 30px;
    }
}

.wizard-progress-track {
    position: absolute;
    top: 50%;
    left: 72px; /* Starts exactly at center of first node (50px padding + 22px half-node) */
    width: calc(100% - 144px); /* Ends exactly at center of last node */
    height: 3px;
    transform: translateY(-50%);
    z-index: 1;
    transition: left 0.3s ease, width 0.3s ease;
}

@media (max-width: 580px) {
    .wizard-progress-track {
        left: 52px; /* 30px padding + 22px half-node */
        width: calc(100% - 104px);
    }
}

.wizard-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}
body.dark-theme .wizard-progress-line {
    background: #334155;
}

.wizard-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pure-white);
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-muted);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}
body.dark-theme .wizard-step-node {
    background: var(--pure-white);
    border-color: #334155;
}

.wizard-step-node.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}
.wizard-step-node.completed {
    background: var(--grad-primary);
    border-color: transparent;
    color: var(--pure-white);
}

.wizard-step-node span.step-title {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--dark-muted);
    transition: var(--transition-fast);
}
.wizard-step-node.active span.step-title,
.wizard-step-node.completed span.step-title {
    color: var(--dark);
}

.wizard-card-body {
    position: relative;
    min-height: 380px;
}

.wizard-step-content {
    display: none;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-step-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.wizard-step-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: var(--dark);
}
.wizard-step-content .step-subtitle {
    font-size: 0.95rem;
    color: var(--dark-muted);
    text-align: center;
    margin-bottom: 16px;
}

.option-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .option-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.option-card {
    border: 2px solid rgba(0, 0, 0, 0.05);
    background: var(--pure-white);
    border-radius: var(--radius-md);
    padding: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    position: relative;
    transition: var(--transition-smooth);
}
body.dark-theme .option-card {
    border-color: rgba(255, 255, 255, 0.05);
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.option-card:hover {
    border-color: var(--primary-glow);
    transform: translateY(-3px);
}
.option-card.selected {
    border-color: var(--primary);
    box-shadow: 0 8px 24px var(--primary-glow);
    background: linear-gradient(180deg, var(--pure-white) 0%, rgba(190, 24, 93, 0.02) 100%);
}
.option-card.selected .option-card-icon {
    background: var(--primary);
    color: var(--pure-white);
    box-shadow: 0 4px 10px rgba(190, 24, 93, 0.2);
}

.option-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.option-card p {
    font-size: 0.8rem;
    color: var(--dark-muted);
}

.stream-info-preview-box {
    margin-top: 16px;
    padding: 24px;
    background: rgba(190, 24, 93, 0.03);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}
body.dark-theme .stream-info-preview-box {
    background: rgba(190, 24, 93, 0.05);
}

.stream-info-preview-box h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}
.stream-info-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (max-width: 580px) {
    .stream-info-highlights {
        grid-template-columns: 1fr;
    }
}
.stream-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}
.stream-highlight-item i {
    color: var(--success);
}

.wizard-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
}
body.dark-theme .wizard-nav-buttons {
    border-color: rgba(255, 255, 255, 0.05);
}

.wizard-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease forwards;
}
.wizard-success-state.active {
    display: flex;
}
.wizard-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}
.wizard-success-state h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
}
.wizard-success-state p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    max-width: 500px;
}
.wizard-form-input {
    background: var(--pure-white);
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
body.dark-theme .wizard-form-input {
    border-color: rgba(255, 255, 255, 0.1);
}
.wizard-form-input:focus {
    border-color: var(--primary);
}
.wizard-step-content .form-group label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
    font-size: 0.85rem;
}
