/**
 * England English Institute - Premium Home Page Styles
 * Modern glassmorphism, animated gradients, Lottie integration
 * 
 * @package EnglandEnglish
 */

/* ============================================
   Premium Header - Modern Design
   ============================================ */
.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-premium.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-inner-premium {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    height: 72px;
}

/* Logo */
.header-logo-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name-premium {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Navigation */
.header-nav-premium {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-list-premium {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-premium {
    position: relative;
}

.nav-link-premium {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: var(--primary-600);
    background: rgba(59, 130, 246, 0.08);
}

.nav-chevron {
    transition: transform 0.2s ease;
}

.nav-item-premium:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Mega Menu Modern */
.mega-menu-modern {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 680px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 1.5rem;
}

.nav-item-premium.has-mega:hover .mega-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.mega-col-modern {}

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--neutral-100);
}

.mega-col-title svg {
    color: var(--primary-500);
}

.mega-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links-modern li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.625rem;
    margin: 0 -0.625rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-links-modern li a:hover {
    background: var(--neutral-50);
}

.mega-links-modern .link-icon {
    font-size: 1.125rem;
}

.mega-links-modern .link-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.mega-links-modern li a:hover .link-text {
    color: var(--primary-600);
}

/* Mega CTA */
.mega-cta-col {
    border-left: 1px solid var(--neutral-100);
    padding-left: 1.5rem;
}

.mega-cta-modern {
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    border-radius: 0.875rem;
    padding: 1.25rem;
    text-align: center;
}

.mega-cta-modern.mega-cta-green {
    background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
}

.mega-cta-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mega-cta-modern h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.375rem 0;
}

.mega-cta-modern p {
    font-size: 0.8125rem;
    color: var(--neutral-600);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.mega-cta-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Dropdown Modern */
.dropdown-modern {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: white;
    border-radius: 0.875rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    padding: 0.5rem;
}

.nav-item-premium.has-dropdown:hover .dropdown-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-modern {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item-modern:hover {
    background: var(--neutral-50);
}

.dropdown-icon {
    font-size: 1.25rem;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.dropdown-desc {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

/* Header Actions */
.header-actions-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-contact-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    color: var(--neutral-600);
    background: var(--neutral-100);
    transition: all 0.2s ease;
}

.header-icon-btn:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.header-icon-btn.whatsapp:hover {
    background: #dcfce7;
    color: #16a34a;
}

.header-btn-ghost {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.header-btn-ghost:hover {
    color: var(--primary-600);
    background: rgba(59, 130, 246, 0.08);
}

.header-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.header-btn-primary svg {
    transition: transform 0.2s ease;
}

.header-btn-primary:hover svg {
    transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Premium Compact Section - New Design
   ============================================ */
.hero-premium-compact {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 25%, #6d28d9 50%, #7c3aed 75%, #8b5cf6 100%);
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 100px;
}

.hero-pc-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-pc-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 70% 30%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

/* Subtle grid pattern */
.hero-pc-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-pc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-pc-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(167, 139, 250, 0.4);
    top: -100px;
    right: 10%;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-pc-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(196, 181, 253, 0.3);
    bottom: -50px;
    left: 5%;
    animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ============================================
   Hero Slider Container
   ============================================ */
.hero-premium-slider {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.hero-slide.hero-slide-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slider Navigation Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    border-color: var(--primary-500);
    background: rgba(99, 102, 241, 0.2);
}

.hero-slider-dot.active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-color: transparent;
}

/* ============================================
   Premium Hero Section - Light Theme (Slide 1)
   ============================================ */
.hero-premium-light,
.hero-slide[data-slide="0"] {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 30%, #e8f0fe 60%, #f5f3ff 100%);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Light Background Elements */
.hero-light-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-light-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 70% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 90% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.hero-light-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-light-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    top: -150px;
    right: -100px;
    animation: blobFloat 15s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.08));
    bottom: -100px;
    left: -100px;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.08));
    top: 40%;
    left: 30%;
    animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Hero Content Layout */
.hero-light-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Left - Text Content */
.hero-light-left {
    padding-right: 2rem;
}

.hero-heading-wrapper {
    margin-bottom: 2rem;
}

/* Premium Tagline */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.tagline-icon {
    font-size: 0.875rem;
}

/* Premium Heading */
.hero-premium-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 1.25rem 0;
}

.heading-line-1 {
    display: block;
    color: #334155;
}

.heading-line-2 {
    display: block;
}

.heading-highlight {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    white-space: nowrap;
}

.hero-premium-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    max-width: 480px;
}

/* Premium CTA Buttons */
.hero-premium-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-premium-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
}

.btn-premium-primary:hover::before {
    opacity: 1;
}

.btn-premium-primary .btn-text,
.btn-premium-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-premium-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btn-premium-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: #475569;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-premium-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.btn-premium-secondary .btn-icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

/* Trust Strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.1);
    width: fit-content;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar-more {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-text {
    font-size: 0.8125rem;
    color: #64748b;
}

.trust-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* Hero Right - Course Cards Showcase */
.hero-light-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.hero-courses-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Featured Course Card */
.course-card-featured {
    position: relative;
    width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.1);
    margin: 0 auto;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
}

.ccf-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card-featured:hover .ccf-glow {
    opacity: 1;
}

.ccf-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.ccf-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.ccf-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ccf-icon-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.ccf-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.375rem 0;
}

.ccf-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
}

.ccf-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
}

.ccf-stat {
    display: flex;
    flex-direction: column;
}

.ccf-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #6366f1;
}

.ccf-stat .stat-label {
    font-size: 0.6875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ccf-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ccf-btn:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

/* Course Card Rotation Indicators */
.ccf-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ccf-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccf-indicator:hover {
    background: #cbd5e1;
}

.ccf-indicator.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

/* Course Card Transition Animation */
.course-card-featured.transitioning .ccf-icon,
.course-card-featured.transitioning .ccf-title,
.course-card-featured.transitioning .ccf-subtitle,
.course-card-featured.transitioning .ccf-stats,
.course-card-featured.transitioning .ccf-btn {
    opacity: 0;
    transform: translateY(10px);
}

.course-card-featured .ccf-icon,
.course-card-featured .ccf-title,
.course-card-featured .ccf-subtitle,
.course-card-featured .ccf-stats,
.course-card-featured .ccf-btn {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Floating Course Cards */
.course-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 2;
    transition: all 0.3s ease;
}

.course-card-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ccf-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.ccf-mini-info {
    display: flex;
    flex-direction: column;
}

.ccf-mini-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
}

.ccf-mini-score {
    font-size: 0.6875rem;
    color: #64748b;
}

/* Floating Card Positions */
.ccf-pte {
    top: 10%;
    right: 5%;
    animation: floatCard1 4s ease-in-out infinite;
}

.ccf-toefl {
    top: 35%;
    right: -5%;
    animation: floatCard2 4.5s ease-in-out infinite;
}

.ccf-oet {
    bottom: 25%;
    left: 0;
    animation: floatCard1 5s ease-in-out infinite;
}

.ccf-duolingo {
    bottom: 5%;
    left: 15%;
    animation: floatCard2 4s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Decorative Elements */
.hero-decor-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: rotateCircle 30s linear infinite;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-decor-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.3) 2px, transparent 2px);
    background-size: 15px 15px;
    bottom: 10%;
    right: 10%;
    z-index: 1;
}

/* ============================================
   Hero Slide 2 - International Universities (Pink Theme)
   ============================================ */
.hero-slide[data-slide="1"] {
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-slide2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide2-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #fff5f7 0%, 
        #fdf2f8 25%, 
        #fce7f3 50%, 
        #fbcfe8 75%,
        #fdf2f8 100%
    );
}

.hero-slide2-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(236, 72, 153, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-slide2-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.slide2-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f9a8d4, #f472b6);
    top: -100px;
    right: -100px;
}

.slide2-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.slide2-blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fda4af, #fb7185);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-slide2-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Slide 2 Left Content */
.hero-slide2-left {
    max-width: 560px;
}

.hero-slide2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #be185d;
    margin-bottom: 1.25rem;
}

.hero-slide2-badge svg {
    color: #ec4899;
}

.hero-slide2-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
}

.slide2-line-1 {
    display: block;
    color: #1e293b;
}

.slide2-line-2 {
    display: block;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide2-desc {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

/* Country Cards Grid */
.hero-countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.hero-country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(236, 72, 153, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.hcc-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hcc-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hcc-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
}

/* Slide 2 CTA */
.hero-slide2-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.hero-slide2-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.hero-slide2-cta svg {
    transition: transform 0.3s ease;
}

.hero-slide2-cta:hover svg {
    transform: translateX(4px);
}

/* Slide 2 Right - Globe Animation */
.hero-slide2-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-globe-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

.hero-globe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
}

.globe-sphere-pink {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3, #fbcfe8);
    box-shadow: 
        inset -20px -20px 40px rgba(236, 72, 153, 0.2),
        inset 20px 20px 40px rgba(255, 255, 255, 0.8),
        0 20px 60px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
    animation: globeRotate 30s linear infinite;
}

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-grid-pink {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(236, 72, 153, 0.1) 15px, rgba(236, 72, 153, 0.1) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(139, 92, 246, 0.1) 15px, rgba(139, 92, 246, 0.1) 16px);
}

.globe-highlight-pink {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
}

/* Orbiting Flags */
.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(236, 72, 153, 0.15);
    animation: orbitSpin 20s linear infinite;
}

.hero-orbit-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; animation-duration: 25s; }
.hero-orbit-2 { width: 260px; height: 260px; margin: -130px 0 0 -130px; animation-duration: 30s; animation-direction: reverse; }
.hero-orbit-3 { width: 300px; height: 300px; margin: -150px 0 0 -150px; animation-duration: 35s; }
.hero-orbit-4 { width: 340px; height: 340px; margin: -170px 0 0 -170px; animation-duration: 40s; animation-direction: reverse; }
.hero-orbit-5 { width: 380px; height: 380px; margin: -190px 0 0 -190px; animation-duration: 45s; }
.hero-orbit-6 { width: 420px; height: 420px; margin: -210px 0 0 -210px; animation-duration: 50s; animation-direction: reverse; }

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-flag-pink {
    position: absolute;
    top: -16px;
    left: 50%;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2px;
    animation: orbitSpin 20s linear infinite reverse;
}

.hero-orbit-2 .orbit-flag-pink,
.hero-orbit-4 .orbit-flag-pink,
.hero-orbit-6 .orbit-flag-pink {
    animation-direction: normal;
}

.orbit-flag-pink img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Connection Lines */
.hero-connections-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-line-anim {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-in-out infinite;
}

.conn-line-anim:nth-child(2) { animation-delay: 0.5s; }
.conn-line-anim:nth-child(3) { animation-delay: 1s; }
.conn-line-anim:nth-child(4) { animation-delay: 1.5s; }

@keyframes drawLine {
    0%, 100% { stroke-dashoffset: 200; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
}

/* Particles */
.hero-particles-pink {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles-pink span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    animation: particleFloat 3.5s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Stats Badges */
.hero-stat-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.1);
    z-index: 10;
}

.hsb-top {
    top: 10%;
    right: 5%;
    animation: badgeFloat 4s ease-in-out infinite;
}

.hsb-bottom {
    bottom: 15%;
    left: 5%;
    animation: badgeFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hsb-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hsb-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* Hide old hero compact styles */
.hero-premium-compact {
    display: none;
}

.hero-pc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0 3rem;
    position: relative;
    z-index: 2;
}

/* Hero Left Content */
.hero-pc-left {
    color: white;
}

.hero-pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.hpc-badge-icon {
    font-size: 1rem;
}

.hero-pc-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
}

.hero-pc-highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pc-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    max-width: 480px;
}

.hero-pc-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Trusted Badge - Below CTA */
.hero-trusted-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    width: fit-content;
}

.htb-avatars {
    display: flex;
    align-items: center;
}

.htb-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    margin-left: -8px;
}

.htb-avatar:first-child {
    margin-left: 0;
}

.htb-avatar-more {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.htb-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.htb-stars {
    display: flex;
    gap: 2px;
}

.htb-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

.htb-text strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Hero Right - Visual */
.hero-pc-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pc-visual {
    position: relative;
    width: 100%;
    height: 400px;
}

/* ============================================
   Premium Globe Animation Container
   ============================================ */
.hero-globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
}

/* Globe Glow Effects */
.globe-glow-outer {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    animation: globeGlowPulse 4s ease-in-out infinite;
}

.globe-glow-inner {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, transparent 50%);
    border-radius: 50%;
    filter: blur(20px);
    animation: globeGlowPulse 3s ease-in-out infinite reverse;
}

@keyframes globeGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Rotating Orbit Rings */
.globe-orbit {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
}

.globe-orbit-1 {
    inset: -15px;
}

.globe-orbit-2 {
    inset: -35px;
    border-color: rgba(255, 255, 255, 0.07);
    animation-duration: 30s;
    animation-direction: reverse;
}

.globe-orbit-3 {
    inset: -55px;
    border-color: rgba(255, 255, 255, 0.04);
    animation-duration: 40s;
}

.orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 12px #fbbf24, 0 0 24px rgba(251, 191, 36, 0.5);
    transform: translateX(-50%);
}

.globe-orbit-2 .orbit-dot {
    background: #a78bfa;
    box-shadow: 0 0 12px #a78bfa, 0 0 24px rgba(167, 139, 250, 0.5);
}

.globe-orbit-3 .orbit-dot {
    background: #60a5fa;
    box-shadow: 0 0 12px #60a5fa, 0 0 24px rgba(96, 165, 250, 0.5);
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Lottie Globe Wrapper */
.globe-lottie-wrapper {
    position: absolute;
    inset: 20px;
    z-index: 2;
}

.globe-lottie {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

/* Connection Lines Overlay */
.globe-connections {
    position: absolute;
    inset: -30px;
    z-index: 3;
    pointer-events: none;
}

.connection-arc {
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
}

.dest-dot {
    filter: drop-shadow(0 0 6px currentColor);
}

/* Country Labels */
.globe-label {
    position: absolute;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 4;
    white-space: nowrap;
    animation: labelFloat 3s ease-in-out infinite;
}

.label-usa {
    top: 35%;
    left: -15%;
    animation-delay: 0s;
}

.label-uk {
    top: 15%;
    right: -10%;
    animation-delay: 0.5s;
}

.label-aus {
    bottom: 15%;
    right: -5%;
    animation-delay: 1s;
}

.label-can {
    bottom: 25%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes labelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Remove old world map styles */
.hero-world-map,
.world-map-glow,
.world-map-svg,
.world-map-ring,
.hero-pc-lottie,
.hpc-lottie-ring {
    display: none;
}

/* Fallback CSS Globe Animation */
.fallback-globe {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-sphere {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(6, 182, 212, 0.3) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: globeSpin 20s linear infinite;
    overflow: hidden;
    box-shadow: 
        inset -30px -30px 60px rgba(0, 0, 0, 0.3),
        inset 20px 20px 40px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(139, 92, 246, 0.4);
}

.globe-meridian {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.globe-meridian.m2 {
    transform: rotateY(60deg);
}

.globe-meridian.m3 {
    transform: rotateY(-60deg);
}

.globe-equator {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.globe-highlight {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes globeSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.hpc-lottie-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 10px #fbbf24;
}

.hpc-lottie-ring-2 {
    inset: -40px;
    border-color: rgba(255, 255, 255, 0.05);
    animation-direction: reverse;
    animation-duration: 30s;
}

.hpc-lottie-ring-2::before {
    background: #a78bfa;
    box-shadow: 0 0 10px #a78bfa;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hpc-lottie-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Animated Flight */
.hero-pc-flight {
    position: absolute;
    z-index: 10;
    animation: flightPath 8s ease-in-out infinite;
}

.flight-icon {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
}

@keyframes flightPath {
    0% {
        bottom: 10%;
        right: 10%;
        transform: rotate(-30deg) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: rotate(-35deg) scale(1);
    }
    50% {
        bottom: 55%;
        right: 55%;
        transform: rotate(-40deg) scale(1.1);
    }
    85% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
    100% {
        bottom: 95%;
        right: 95%;
        transform: rotate(-50deg) scale(0.8);
        opacity: 0;
    }
}

/* Compact Score Cards */
.hpc-score-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 5;
}

.hpc-score-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hpc-sc-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hpc-sc-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

/* Card positions */
.hpc-sc-1 {
    top: 5%;
    left: 5%;
    animation: floatSC1 4s ease-in-out infinite;
}

.hpc-sc-2 {
    top: 5%;
    right: 10%;
    animation: floatSC2 4.5s ease-in-out infinite;
}

.hpc-sc-3 {
    bottom: 15%;
    right: 5%;
    animation: floatSC1 5s ease-in-out infinite;
}

.hpc-sc-4 {
    bottom: 10%;
    left: 10%;
    animation: floatSC2 4s ease-in-out infinite;
}

@keyframes floatSC1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatSC2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   Hero Opening Doors Section (Legacy - Keep)
   ============================================ */
.hero-opening-doors {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 30%, #7c3aed 60%, #8b5cf6 100%);
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 120px; /* Space for overlapping form */
}

.hero-od-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-od-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(196, 181, 253, 0.2) 0%, transparent 50%);
}

.hero-od-particles {
    position: absolute;
    inset: 0;
}

.hero-od-shapes {
    position: absolute;
    inset: 0;
}

.od-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: odShapeFloat 10s ease-in-out infinite;
}

.od-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(167, 139, 250, 0.5);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.od-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(196, 181, 253, 0.4);
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.od-shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(221, 214, 254, 0.3);
    top: 60%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes odShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-od-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 2;
}

/* Hero Left Content */
.hero-od-left {
    color: white;
}

.hero-od-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.5rem 0;
}

.hero-od-highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-od-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
    max-width: 520px;
}

.hero-od-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Right - Test Score Showcase */
.hero-od-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-test-showcase {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Graduate Student Image */
.hero-graduate-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 400px;
    z-index: 3;
}

.graduate-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.graduate-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.graduate-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.4) 0%, transparent 70%);
    filter: blur(20px);
}

/* Animated Flight Path */
.flight-path-container {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
}

.flight-path-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.flight-path-line {
    fill: none;
    stroke: url(#flightGradient);
    stroke-width: 3;
    stroke-dasharray: 12 6;
    stroke-linecap: round;
    opacity: 0.7;
    animation: dashMove 15s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -180;
    }
}

.flight-airplane {
    position: absolute;
    width: 48px;
    height: 48px;
    animation: flyAcross 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.4));
    z-index: 5;
}

.flight-airplane svg {
    width: 100%;
    height: 100%;
}

@keyframes flyAcross {
    0% {
        bottom: 8%;
        right: 5%;
        transform: rotate(-30deg) scale(0.7);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: rotate(-35deg) scale(1);
    }
    50% {
        bottom: 50%;
        right: 48%;
        transform: rotate(-40deg) scale(1.15);
    }
    85% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
    100% {
        bottom: 92%;
        right: 90%;
        transform: rotate(-50deg) scale(0.7);
        opacity: 0;
    }
}

/* Central Lottie - Now behind graduate */
.hero-central-lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    z-index: 1;
}

.central-lottie-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: centralGlow 4s ease-in-out infinite;
}

@keyframes centralGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.central-lottie-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.3;
}

/* Test Score Cards */
.test-score-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 5;
}

.test-score-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tsc-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tsc-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tsc-logo-fallback {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-600);
    background: var(--primary-50);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.tsc-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tsc-score-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.1;
}

.tsc-score-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tsc-pulse {
    position: absolute;
    inset: -3px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    opacity: 0;
    animation: tscPulse 2s ease-out infinite;
}

@keyframes tscPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Position each test card around the graduate */
.tsc-ielts {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.tsc-pte {
    top: 0%;
    right: 10%;
    animation-delay: 0.5s;
}

.tsc-toefl {
    top: 40%;
    right: -5%;
    animation-delay: 1s;
}

.tsc-oet {
    bottom: 10%;
    right: 5%;
    animation-delay: 1.5s;
}

.tsc-duolingo {
    bottom: 5%;
    left: 10%;
    animation-delay: 2s;
}

.tsc-sat {
    top: 45%;
    left: -5%;
    animation-delay: 2.5s;
}

/* Different float animations for variety */
.tsc-ielts { animation-name: floatCard1; }
.tsc-pte { animation-name: floatCard2; }
.tsc-toefl { animation-name: floatCard3; }
.tsc-oet { animation-name: floatCard1; }
.tsc-duolingo { animation-name: floatCard2; }
.tsc-sat { animation-name: floatCard3; }

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Card color accents */
.tsc-ielts { border-left: 4px solid #dc2626; }
.tsc-pte { border-left: 4px solid #7c3aed; }
.tsc-toefl { border-left: 4px solid #0891b2; }
.tsc-oet { border-left: 4px solid #059669; }
.tsc-duolingo { border-left: 4px solid #16a34a; }
.tsc-sat { border-left: 4px solid #2563eb; }

/* No wave - flat bottom */
.hero-opening-doors .hero-wave {
    display: none;
}

/* ============================================
   Hero Slider Section (Legacy - Keep for reference)
   ============================================ */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 70%, #3b82f6 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-slider-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
}

.hero-floating-shapes {
    position: absolute;
    inset: 0;
}

.hero-floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: shapeFloat 10s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.4);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(6, 182, 212, 0.3);
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(245, 158, 11, 0.3);
    top: 60%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    animation: fadeSlide 0.6s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0 5rem;
}

/* Hero Slide Left */
.hero-slide-left {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-slide-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.25rem 0;
    font-family: 'Inter', sans-serif;
}

.hero-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slide-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    max-width: 540px;
}

/* Hero CTAs */
.hero-slide-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Stats */
.hero-stats-row {
    display: flex;
    gap: 2.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Hero Slide Right - Lottie */
.hero-slide-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-lottie-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.lottie-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.lottie-glow-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
}

.lottie-glow-purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

.hero-lottie {
    position: relative;
    width: 100%;
    height: 400px;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatCard 4s ease-in-out infinite;
}

.hfc-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.hfc-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hfc-icon {
    font-size: 1.5rem;
}

.hfc-text {
    display: flex;
    flex-direction: column;
}

.hfc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
}

.hfc-sub {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

/* Slider Navigation */
.hero-slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
}

.slider-dots {
    display: flex;
    gap: 0.625rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.slider-arrows {
    display: flex;
    gap: 0.75rem;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Hero Wave */
.hero-slider-section .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-slider-section .hero-wave svg {
    width: 100%;
    height: auto;
}

/* Premium Font Override for Headings */
.premium-hero-title,
.premium-section-title,
.cta-premium-title,
.premium-final-cta h2,
.course-card-title,
.bento-content h3,
.bento-small h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Premium Hero Section (Legacy - Keep for other pages)
   ============================================ */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, #1e40af 60%, #3b82f6 100%);
    overflow: hidden;
    padding-top: 2rem;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4, transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f59e0b, transparent);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.premium-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 6rem;
}

.hero-left {
    color: #fff;
}

.premium-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.play-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: -10px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #fff;
}

.social-proof-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Hero Right - SVG Illustration & Floating Cards */
.hero-right {
    position: relative;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
}

.floating-card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.floating-card-1 i { color: #3b82f6; }

.floating-card-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-card-2 i { color: #10b981; }

.floating-card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.floating-card-3 i { color: #f59e0b; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   Premium Stats Section - Animated Cards
   ============================================ */
.premium-stats-section {
    position: relative;
    z-index: 4;
    margin-top: -3rem;
    padding: 0 0 4rem;
    overflow: visible;
}

.stats-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stats-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.stats-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    top: 20%;
    left: 10%;
    animation: floatShape 8s ease-in-out infinite;
}

.stats-shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    top: 40%;
    right: 15%;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.stats-shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    bottom: 10%;
    left: 50%;
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.premium-stat-card {
    position: relative;
    background: var(--stat-gradient);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.premium-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--stat-glow);
}

.stat-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-stat-card:hover .stat-card-bg {
    opacity: 1;
}

.stat-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
}

.stat-icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--stat-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1); opacity: 0.2; }
}

.stat-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--stat-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--stat-glow);
    transition: all 0.3s ease;
}

.premium-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-content .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--stat-color);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.stat-content .stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--stat-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-stat-card.animated .stat-bar-fill {
    transform: scaleX(1);
}

.stat-sparkle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--stat-color);
    font-size: 0.875rem;
    opacity: 0.3;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(1.2) rotate(15deg); }
}

/* ============================================
   Premium Section Headers
   ============================================ */
.premium-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
}

.section-badge[style*="--badge-color"] {
    background: linear-gradient(135deg, color-mix(in srgb, var(--badge-color) 10%, white), color-mix(in srgb, var(--badge-color) 5%, white));
    border-color: color-mix(in srgb, var(--badge-color) 20%, transparent);
    color: var(--badge-color);
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), #8b5cf6);
    border-radius: 50%;
    color: white;
    font-size: 0.625rem;
}

.section-badge[style*="--badge-color"] .badge-icon {
    background: var(--badge-color);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Compact Section Headers (kept for compatibility) */
.compact-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    color: var(--primary-600);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.compact-section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 0.625rem;
    line-height: 1.2;
}

.compact-section-header p {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* ============================================
   Premium Programs Section
   ============================================ */
.premium-programs-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.programs-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.programs-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.programs-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    top: -100px;
    left: -100px;
    animation: blobFloat 15s ease-in-out infinite;
}

.programs-blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    bottom: -100px;
    right: -100px;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Programs Header V2 - New Premium Design with Outfit */
.programs-header-v2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.phv2-title {
    font-family: 'Quicksand', sans-serif !important;
    font-size: 3rem;
    font-weight: 600;
    color: var(--neutral-800);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.phv2-line1,
.phv2-line2 {
    display: block;
}

/* Highlighted Text - Same style as heading */
.phv2-stylish {
    font-family: 'Quicksand', sans-serif !important;
    font-size: 1em;
    font-weight: 600;
    color: var(--neutral-800);
    display: inline;
    position: relative;
    padding: 0;
    letter-spacing: inherit;
}

.phv2-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--neutral-500);
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
}

.premium-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-program-card {
    position: relative;
    background: var(--card-gradient);
    border-radius: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

.premium-program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px color-mix(in srgb, var(--card-color) 20%, transparent);
}

.program-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-program-card:hover .program-card-glow {
    opacity: 1;
}

.program-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--card-color);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--card-color) 40%, transparent);
}

.program-card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.program-card-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--card-color) 15%, transparent);
    transition: all 0.3s ease;
}

.premium-program-card:hover .program-card-icon .icon-bg {
    transform: rotate(5deg) scale(1.05);
}

.program-card-icon i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-color);
    font-size: 1.5rem;
    z-index: 1;
}

.program-card-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.program-card-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.program-card-content p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

.program-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--card-color) 15%, transparent);
    position: relative;
    z-index: 1;
}

.learn-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--card-color);
    transition: all 0.3s ease;
}

.arrow-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--card-color);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.premium-program-card:hover .arrow-circle {
    background: var(--card-color);
    color: white;
    transform: translateX(4px);
}

.program-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.premium-program-card:hover .program-card-shine {
    left: 100%;
}

.programs-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Compact Programs Grid - 4 columns, 2 rows */
.programs-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.program-card-compact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--card-gradient);
    border-radius: 1.25rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.program-card-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--card-color) 25%, transparent);
}

.program-card-compact:hover::before {
    opacity: 1;
}

/* Logo styles */
.pcc-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.875rem;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--card-color) 15%, transparent);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 8px;
}

.pcc-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pcc-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--card-color);
    background: white;
}

.program-card-compact:hover .pcc-logo {
    transform: scale(1.05);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--card-color) 25%, transparent);
}

/* Content styles */
.pcc-content {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.pcc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.program-card-compact:hover .pcc-title {
    color: var(--card-color);
}

.pcc-divider {
    width: 40px;
    height: 2px;
    background: var(--card-color);
    opacity: 0.4;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.program-card-compact:hover .pcc-divider {
    width: 60px;
    opacity: 0.7;
}

.pcc-fullname {
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Legacy icon styles - keep for backward compatibility */
.pcc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--card-color) 15%, transparent);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pcc-icon svg {
    stroke: var(--card-color);
    transition: all 0.3s ease;
}

.program-card-compact:hover .pcc-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--card-color) 25%, transparent);
}

.pcc-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--card-color);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.program-card-compact:hover .pcc-arrow {
    background: var(--card-color);
    color: white;
    transform: translateX(4px);
}

/* ============================================
   Premium Features Section (Why England English)
   ============================================ */
.premium-features-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    top: 15%;
    left: 5%;
    animation: floatBubble 8s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    top: 60%;
    right: 8%;
    animation: floatBubble 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    bottom: 20%;
    left: 15%;
    animation: floatBubble 12s ease-in-out infinite;
}

.shape-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    top: 30%;
    right: 20%;
    animation: floatBubble 9s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.05); }
    50% { transform: translate(-5px, 10px) scale(0.95); }
    75% { transform: translate(15px, 5px) scale(1.02); }
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-feature-card {
    position: relative;
    background: var(--feature-gradient);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.premium-feature-card.feature-large {
    grid-column: span 1;
    grid-row: span 2;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--feature-color) 15%, transparent);
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-icon-box {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
}

.icon-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--feature-color);
    border-radius: 1rem;
    opacity: 0;
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

.feature-icon-box i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 1rem;
    color: var(--feature-color);
    font-size: 1.375rem;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--feature-color) 20%, transparent);
    transition: all 0.3s ease;
}

.premium-feature-card:hover .feature-icon-box i {
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

.feature-large .feature-content h3 {
    font-size: 1.375rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--neutral-700);
    margin-bottom: 0.625rem;
}

.feature-highlights li:last-child {
    margin-bottom: 0;
}

.feature-highlights li i {
    color: var(--feature-color);
    font-size: 0.875rem;
}

.feature-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    color: var(--feature-color);
    opacity: 0.5;
    pointer-events: none;
}

.feature-svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Destinations Section
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.destination-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.destination-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--dest-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover {
    border-color: var(--dest-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.destination-card:hover::before {
    opacity: 1;
}

.destination-flag {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.destination-info {
    flex-grow: 1;
}

.destination-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.destination-unis {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
}

.destination-highlight {
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin: 0;
}

.destination-arrow {
    width: 36px;
    height: 36px;
    background: var(--neutral-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.destination-card:hover .destination-arrow {
    background: var(--dest-color);
    color: #fff;
}

.destinations-cta {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-50), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--primary-100);
    border-radius: 1.25rem;
    padding: 2.5rem;
}

.cta-lottie {
    width: 100%;
    height: 150px;
}

.cta-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   Premium Testimonials
   ============================================ */
.testimonials-premium-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-premium-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-premium-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-premium-card:hover {
    border-color: var(--primary-200);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-size: 1rem;
}

.testimonial-quote-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-600);
}

.testimonial-rating-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.875rem;
}

.testimonial-rating-stars span {
    font-size: 0.875rem;
    line-height: 1;
}

.testimonial-premium-text {
    font-size: 0.9375rem;
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 80px;
}

.testimonial-premium-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--neutral-100);
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-premium-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-100);
}

.testimonial-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.testimonial-author-info p {
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin: 0;
}

.testimonial-score-badge {
    text-align: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-50), rgba(139, 92, 246, 0.05));
    border-radius: 0.75rem;
    border: 1px solid var(--primary-100);
}

.score-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-700);
}

.score-label {
    font-size: 0.625rem;
    color: var(--neutral-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--neutral-300);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--neutral-600);
}

.slider-btn:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neutral-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-600);
}

/* ============================================
   Process Timeline
   ============================================ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 2rem;
}

.process-line {
    position: absolute;
    top: 4rem;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-200), var(--secondary-200), var(--primary-200));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.process-step-content {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.process-step-content:hover {
    border-color: var(--primary-200);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.process-lottie {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.process-step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Partners Marquee
   ============================================ */
.partners-marquee {
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.partner-logo-premium {
    height: 50px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo-premium:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Premium CTA Section
   ============================================ */
.premium-cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -100px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    bottom: -100px;
    left: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.premium-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-left {
    color: #fff;
}

.cta-premium-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #fff;
}

.cta-premium-desc {
    font-size: 1.125rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.benefit-icon {
    flex-shrink: 0;
    color: #22c55e;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    flex-shrink: 0;
}

.cta-benefits li strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.cta-benefits li p {
    font-size: 0.8125rem;
    opacity: 0.7;
    margin: 0;
}

/* Premium Inquiry Form */
.premium-inquiry-form {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin: 0;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
    font-size: 0.875rem;
    pointer-events: none;
}

.input-icon-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    stroke: var(--neutral-400);
    pointer-events: none;
}

.input-icon-wrapper .form-control {
    padding-left: 2.75rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.form-disclaimer i {
    color: var(--accent-green);
}

.form-disclaimer svg {
    stroke: var(--accent-green);
    flex-shrink: 0;
}

/* ============================================
   Abroad Journey CTA Section - Premium UI v3
   Unified background with modern card layout
   ============================================ */
.abroad-journey-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    overflow: hidden;
}

/* Animated background elements */
.abroad-journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 70% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Dot pattern overlay */
.abroad-journey-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.abroad-journey-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Left Content */
.journey-content {
    position: relative;
    padding: 0;
}

.journey-content-inner {
    position: relative;
    z-index: 2;
}

/* Badge */
.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.journey-badge span:last-child {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

/* Title */
.journey-title {
    font-family: 'Jost', 'Quicksand', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

.journey-title span {
    background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2.5rem 0;
    max-width: 500px;
}

/* Steps - Horizontal Cards */
.journey-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.journey-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(167, 139, 250, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.step-info p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.45;
}

/* Stats Row */
.journey-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jstat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.jstat-num {
    font-family: 'Jost', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.jstat-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Decorative Elements */
.journey-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.decor-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.decor-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: 40%;
    background: rgba(139, 92, 246, 0.05);
}

/* Lottie Animation Container */
.journey-lottie {
    display: none;
}

/* Right - Form Card */
.journey-form-wrapper {
    position: relative;
}

.journey-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Gradient accent on card */
.journey-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
}

/* Form Header */
.jfc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.jfc-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.jfc-icon svg {
    stroke: #fff;
    width: 24px;
    height: 24px;
}

.jfc-title h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.jfc-title h3 span {
    color: #10b981;
    font-weight: 800;
}

.jfc-title p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Form Styles - Floating Labels */
.journey-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.jf-field {
    position: relative;
}

.jf-field input,
.jf-field select {
    width: 100%;
    padding: 1rem 0.875rem 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #1e293b;
    transition: all 0.2s ease;
}

.jf-field label {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.875rem;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #fff;
    padding: 0 0.25rem;
}

.jf-field input:focus,
.jf-field select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.jf-field input:focus + label,
.jf-field input:not(:placeholder-shown) + label,
.jf-field select:focus + label,
.jf-field select:valid + label {
    top: 0;
    font-size: 0.75rem;
    color: #8b5cf6;
    font-weight: 600;
}

/* Phone Field */
.jf-phone {
    display: flex;
    align-items: stretch;
}

.jf-phone .phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1.5px solid #e2e8f0;
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 600;
}

.jf-phone input {
    border-radius: 0 12px 12px 0;
    flex: 1;
}

.jf-phone label {
    left: 4.75rem;
}

.jf-phone input:focus + label,
.jf-phone input:not(:placeholder-shown) + label {
    left: 0.875rem;
}

/* Select Field */
.jf-select select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
    font-family: 'Quicksand', sans-serif;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
}

.jf-select select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Checkbox */
.jf-checkbox {
    margin-top: 0.375rem;
}

.jf-checkbox input {
    display: none;
}

.jf-checkbox > label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
}

.check-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}

.check-box svg {
    stroke: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.15s ease;
}

.jf-checkbox input:checked + label .check-box {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.jf-checkbox input:checked + label .check-box svg {
    opacity: 1;
    transform: scale(1);
}

.check-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.check-text a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
}

.check-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.jf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.jf-submit:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.jf-submit:active {
    transform: translateY(0);
}

/* Form Footer */
.jfc-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.jfc-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.jfc-secure svg {
    stroke: #10b981;
    width: 14px;
    height: 14px;
}

/* Form Styles */
.steps-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.steps-form .sf-field {
    position: relative;
}

.steps-form .sf-field input,
.steps-form .sf-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    color: var(--neutral-900);
    transition: all 0.2s ease;
    font-family: inherit;
}

.steps-form .sf-field input:focus,
.steps-form .sf-field select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.steps-form .sf-field input::placeholder {
    color: var(--neutral-400);
}

/* Phone Field with Country Code */
.sf-phone-field {
    display: flex;
    gap: 0;
}

.sf-phone-field .phone-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.875rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 0.875rem;
    color: var(--neutral-600);
    min-width: 55px;
}

.sf-phone-field input {
    border-radius: 0 6px 6px 0 !important;
    flex: 1;
}

/* Select Field */
.sf-select-field select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
}

.sf-select-field select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Checkbox Field */
.sf-checkbox-field {
    margin-top: 0.25rem;
}

.sf-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.5;
}

.sf-checkbox input {
    display: none;
}

.checkbox-mark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}

.checkbox-mark svg {
    stroke: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.sf-checkbox input:checked + .checkbox-mark {
    background: #10b981;
    border-color: #10b981;
}

.sf-checkbox input:checked + .checkbox-mark svg {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    color: var(--neutral-600);
}

.checkbox-text a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.steps-form .sf-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.375rem;
}

.steps-form .sf-submit-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.steps-form .sf-submit-btn:active {
    transform: translateY(0);
}

/* Abroad Journey Responsive */
@media (max-width: 1440px) {
    .abroad-journey-wrapper {
        grid-template-columns: 55% 45%;
    }
    
    .journey-content {
        padding: 3rem 2.5rem;
    }
    
    .journey-title {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .abroad-journey-section {
        padding: 4rem 0;
    }
    
    .abroad-journey-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .journey-content {
        padding: 0;
    }
    
    .journey-content-inner {
        max-width: 100%;
    }
    
    .journey-title {
        font-size: 2.25rem;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
    }
    
    .journey-stats {
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .journey-form-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .journey-form-card {
        max-width: 480px;
        width: 100%;
    }
    
    .decor-1 {
        width: 250px;
        height: 250px;
        top: -100px;
        left: -100px;
    }
    
    .decor-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .abroad-journey-section {
        padding: 3rem 0;
    }
    
    .abroad-journey-wrapper {
        gap: 2rem;
        padding: 0 1.25rem;
    }
    
    .journey-badge {
        padding: 0.375rem 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .journey-badge span:last-child {
        font-size: 0.75rem;
    }
    
    .journey-title {
        font-size: 1.75rem;
    }
    
    .journey-title br {
        display: none;
    }
    
    .journey-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .journey-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.6875rem;
    }
    
    .step-info h4 {
        font-size: 0.875rem;
    }
    
    .step-info p {
        font-size: 0.75rem;
    }
    
    .journey-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .jstat-num {
        font-size: 1.5rem;
    }
    
    .jstat-label {
        font-size: 0.6875rem;
    }
    
    .journey-form-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .jfc-header {
        gap: 0.875rem;
    }
    
    .jfc-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .jfc-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .jfc-title h3 {
        font-size: 1rem;
    }
    
    .jf-submit {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .journey-content {
        padding: 1.75rem 1.25rem;
    }
    
    .journey-badge {
        padding: 0.375rem 0.75rem;
    }
    
    .journey-badge span:last-child {
        font-size: 0.75rem;
    }
    
    .journey-title {
        font-size: 1.5rem;
    }
    
    .journey-step {
        gap: 0.75rem;
    }
    
    .step-number {
        font-size: 0.875rem;
        min-width: 24px;
    }
    
    .journey-stats {
        gap: 1rem;
    }
    
    .jstat-num {
        font-size: 1.125rem;
    }
    
    .jstat-label {
        font-size: 0.6875rem;
    }
    
    .journey-form-wrapper {
        padding: 1.25rem 1rem;
    }
    
    .journey-form-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .jfc-icon {
        width: 42px;
        height: 42px;
    }
    
    .jf-field input,
    .jf-field select {
        padding: 0.875rem 0.75rem 0.375rem;
        font-size: 0.8125rem;
    }
    
    .jf-submit {
        padding: 0.8125rem 1rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Premium Blog Section
   ============================================ */
.blog-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-premium-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.blog-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-premium-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-700);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin-bottom: 0.75rem;
}

.blog-card-meta i {
    margin-right: 0.25rem;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--neutral-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-600);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--primary-700);
}

/* ============================================
   Final CTA
   ============================================ */
.premium-final-cta {
    background: linear-gradient(135deg, var(--primary-700), #7c3aed);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-lottie {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.premium-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.premium-final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   Utility Classes
   ============================================ */
.w-full { width: 100%; }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }

/* ============================================
   Animations
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="slideInLeft"] {
    transform: translateX(-40px);
}

[data-animate="slideInRight"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

.animate-fadeInUp { opacity: 1; transform: translateY(0); }
.animate-slideInLeft { opacity: 1; transform: translateX(0); }
.animate-slideInRight { opacity: 1; transform: translateX(0); }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .premium-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-left { order: 1; }
    .hero-right { order: 0; }

    .premium-hero-title { font-size: 2.5rem; }
    .premium-hero-subtitle { max-width: 100%; }
    .hero-cta-group { justify-content: center; }
    .hero-social-proof { justify-content: center; }

    /* Premium Stats Responsive */
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .premium-stat-card {
        padding: 1.5rem 1.25rem;
    }

    .stat-content .stat-number {
        font-size: 2rem;
    }

    /* Premium Programs Responsive */
    .programs-header-v2 {
        margin-bottom: 2rem;
    }

    .phv2-title {
        font-size: 2.5rem;
    }

    .phv2-subtitle {
        font-size: 1rem;
        max-width: 560px;
    }

    .premium-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Compact Programs Grid Tablet */
    .programs-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .pcc-title {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Premium Features Responsive */
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-feature-card.feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .destinations-grid { grid-template-columns: 1fr; }

    .premium-cta-grid { grid-template-columns: 1fr; gap: 3rem; }

    .testimonial-premium-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
    .premium-hero { min-height: auto; padding-top: 1rem; }
    .premium-hero-title { font-size: 2rem; }

    /* Premium Stats Responsive */
    .premium-stats-section {
        margin-top: -2rem;
        padding-bottom: 2rem;
    }

    .premium-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.875rem;
    }

    .premium-stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .stat-content .stat-number {
        font-size: 1.75rem;
    }

    .stat-content .stat-label {
        font-size: 0.75rem;
    }

    /* Premium Programs Responsive */
    .premium-programs-section {
        padding: 3.5rem 0;
    }

    .programs-header-v2 {
        margin-bottom: 1.5rem;
    }

    .phv2-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .phv2-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .premium-programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .premium-program-card {
        padding: 1.5rem;
    }

    .program-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .program-card-content h3 {
        font-size: 1.125rem;
    }

    /* Compact Programs Grid Responsive */
    .programs-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 0.875rem;
    }

    .program-card-compact {
        padding: 1.25rem;
        gap: 0.875rem;
        min-height: 90px;
    }

    .pcc-logo {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .pcc-logo img {
        width: 30px;
        height: 30px;
    }

    .pcc-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .pcc-icon svg {
        width: 20px;
        height: 20px;
    }

    .pcc-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .pcc-divider {
        width: 30px;
        margin-bottom: 0.375rem;
    }

    .pcc-fullname {
        font-size: 0.6875rem;
        -webkit-line-clamp: 2;
    }

    .pcc-arrow {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.75rem;
    }

    /* Premium Features Responsive */
    .premium-features-section {
        padding: 3.5rem 0;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .premium-feature-card.feature-large {
        grid-column: span 1;
    }

    .premium-feature-card {
        padding: 1.5rem;
    }

    .feature-highlights {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .testimonial-premium-card { flex: 0 0 calc(100% - 1rem); }

    .compact-section-header h2 { font-size: 1.625rem; }

    .floating-card { display: none; }

    .hero-illustration { max-width: 320px; }

    .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-hero-title { font-size: 1.75rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }

    /* Premium Stats Responsive */
    .premium-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .premium-stat-card {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    .stat-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .stat-content .stat-number {
        font-size: 1.5rem;
    }

    .stat-bar {
        display: none;
    }

    .stat-sparkle {
        display: none;
    }

    /* Premium Programs Responsive */
    .program-card-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }

    .programs-cta .btn {
        width: 100%;
    }

    /* Premium Features Responsive */
    .premium-feature-card {
        padding: 1.25rem;
    }

    .feature-icon-box {
        width: 48px;
        height: 48px;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}


/* ============================================
   Premium Study Abroad Section - Enhanced
   ============================================ */
.premium-destinations-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.destinations-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.destinations-globe-bg {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.destinations-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite;
}

.destinations-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.destinations-particles span:nth-child(2) { top: 60%; left: 5%; animation-delay: 3s; }
.destinations-particles span:nth-child(3) { top: 30%; right: 15%; animation-delay: 6s; }
.destinations-particles span:nth-child(4) { top: 70%; right: 10%; animation-delay: 9s; }
.destinations-particles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 12s; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -30px) scale(1.5); opacity: 0.6; }
}

.premium-destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.premium-destination-card {
    position: relative;
    background: var(--dest-gradient);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.premium-destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--dest-color) 20%, transparent);
}

.dest-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-destination-card:hover .dest-card-bg {
    opacity: 1;
}

.dest-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.premium-destination-card:hover .dest-card-shine {
    left: 100%;
}

.dest-flag-wrapper {
    position: relative;
    flex-shrink: 0;
}

.dest-flag {
    font-size: 3rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.dest-flag-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--dest-color);
    border-radius: 50%;
    opacity: 0;
    animation: none;
    transition: opacity 0.3s ease;
}

.premium-destination-card:hover .dest-flag-ring {
    opacity: 0.3;
    animation: pulseRing 1.5s ease-out infinite;
}

.dest-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.dest-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.375rem;
}

.dest-unis {
    font-size: 0.875rem;
    color: var(--dest-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.dest-unis i {
    font-size: 0.75rem;
}

.dest-highlight {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin-bottom: 0.75rem;
}

.dest-stats {
    display: flex;
    gap: 0.75rem;
}

.dest-students {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--neutral-600);
    background: rgba(255,255,255,0.7);
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
}

.dest-students i {
    color: var(--dest-color);
}

.dest-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dest-color);
    font-size: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
}

.premium-destination-card:hover .dest-arrow {
    opacity: 1;
    right: 1rem;
}

/* Country code and flag image styles */
.dest-flag-wrapper {
    position: relative;
    flex-shrink: 0;
}

.dest-flag-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
}

.dest-flag-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

.premium-destination-card:hover .dest-flag-circle {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.dest-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Study in label and country name styles */
.dest-study-in {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.125rem;
}

.dest-country-name {
    font-size: 2.125rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* University icon styles */
.uni-icon {
    width: 16px;
    height: 16px;
    color: var(--dest-color);
    flex-shrink: 0;
}

.destinations-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.cta-strip-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cta-strip-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cta-strip-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.cta-strip-text p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    margin: 0;
}

/* ============================================
   Premium Process / How It Works Section
   ============================================ */
.premium-process-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.process-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.premium-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-connector {
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #dbeafe, #d1fae5, #fef3c7, #f3e8ff);
    z-index: 0;
}

.process-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #8b5cf6);
    animation: processLine 3s ease-out forwards;
    animation-play-state: paused;
}

.premium-process-timeline.animated .process-connector::after {
    animation-play-state: running;
}

@keyframes processLine {
    to { width: 100%; }
}

.premium-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step-number {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-number span {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--step-color), color-mix(in srgb, var(--step-color) 70%, #8b5cf6));
    border-radius: 50%;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--step-color) 40%, transparent);
}

.step-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--step-color);
    border-radius: 50%;
    opacity: 0;
    animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.process-step-card {
    background: var(--step-gradient);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px color-mix(in srgb, var(--step-color) 15%, transparent);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--step-color);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--step-color) 15%, transparent);
}

.process-step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.process-step-card p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.step-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--neutral-700);
}

.step-features span i {
    color: var(--step-color);
    font-size: 0.625rem;
}

/* ============================================
   Premium Testimonials Section - Enhanced
   ============================================ */
.premium-testimonials-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 50%, #ffffff 100%);
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-stats-banner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--neutral-100);
}

.ts-stat {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.ts-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 1.25rem;
    line-height: 1;
}

.ts-stat-content {
    display: flex;
    flex-direction: column;
}

.ts-stat-number {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.ts-stat-label {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.testimonial-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent);
    border-radius: 1.25rem 1.25rem 0 0;
}

.testimonial-premium-card {
    position: relative;
}

.testimonial-score-badge {
    background: linear-gradient(135deg, color-mix(in srgb, var(--badge-color, var(--primary-500)) 10%, white), color-mix(in srgb, var(--badge-color, var(--primary-500)) 5%, white));
    border: 1px solid color-mix(in srgb, var(--badge-color, var(--primary-500)) 20%, transparent);
}

.testimonial-score-badge .score-value {
    color: var(--badge-color, var(--primary-700));
}

.testimonial-author-info p {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-author-info p i {
    font-size: 0.625rem;
    opacity: 0.7;
}

.review-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-200);
}

.review-label {
    font-size: 0.875rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.review-badges {
    display: flex;
    gap: 1.5rem;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    border: 1px solid var(--neutral-200);
    font-size: 0.875rem;
    color: var(--neutral-700);
    transition: all 0.3s ease;
}

.review-badge:hover {
    border-color: var(--primary-300);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.review-badge i {
    font-size: 1rem;
}

.review-badge .fa-google { color: #4285f4; }
.review-badge .fa-facebook { color: #1877f2; }

.review-badge svg {
    flex-shrink: 0;
}

.review-badge-emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.badge-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* ============================================
   Premium Partners Section
   ============================================ */
.premium-partners-section {
    padding: 3rem 0;
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-100);
    border-bottom: 1px solid var(--neutral-100);
}

.partners-header {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-label {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.partners-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--neutral-600);
    font-weight: 500;
    white-space: nowrap;
    padding: 0.625rem 1.25rem;
    background: white;
    border-radius: 50px;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--primary-300);
    color: var(--primary-700);
}

.partner-icon {
    font-size: 1.25rem;
}

/* ============================================
   Enhanced CTA Section
   ============================================ */
.cta-orb-3 {
    width: 200px;
    height: 200px;
    background: #10b981;
    top: 50%;
    left: 30%;
    animation: orbFloat 12s ease-in-out infinite;
    animation-delay: 3s;
}

.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #22c55e;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-badge i {
    font-size: 0.875rem;
}

.cta-badge span:first-child {
    font-size: 1rem;
    line-height: 1;
}

.cta-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.trust-badge i {
    color: #22c55e;
}

.trust-badge svg {
    stroke: #22c55e;
    flex-shrink: 0;
}

.form-header-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-500), #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.form-header-icon svg {
    stroke: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShineAnim 3s ease-in-out infinite;
}

@keyframes btnShineAnim {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ============================================
   Enhanced Final CTA
   ============================================ */
.final-cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.final-cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.final-cta-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    left: -100px;
}

.final-cta-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: -50px;
    right: 10%;
}

.final-cta-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 30%;
    right: -50px;
}

.final-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.fcs-item {
    text-align: center;
}

.fcs-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.fcs-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.fcs-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.btn-white {
    background: white;
    color: var(--primary-700);
    border: none;
    font-weight: 600;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   Success CTA Section - Premium UI (Light Theme)
   ============================================ */
.success-cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.success-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.scta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 0% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
}

.scta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
}

.scta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.scta-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    top: -200px;
    left: -150px;
    animation: orbFloat 20s ease-in-out infinite;
}

.scta-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.08));
    bottom: -150px;
    right: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.scta-orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.08));
    top: 40%;
    left: 40%;
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.success-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Content */
.scta-content {
    max-width: 540px;
}

.scta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.scta-badge-icon {
    font-size: 1rem;
}

.scta-badge span:last-child {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366f1;
}

.scta-title {
    font-family: 'Jost', 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.15;
    margin: 0 0 1rem 0;
}

.scta-title span {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scta-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 2rem 0;
}

/* Stats Grid */
.scta-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.scta-stat-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.scta-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.15);
}

.ssc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, color-mix(in srgb, var(--icon-color) 15%, white), color-mix(in srgb, var(--icon-color) 8%, white));
    border-radius: 12px;
    flex-shrink: 0;
}

.ssc-icon svg {
    stroke: var(--icon-color, #6366f1);
}

.ssc-content {
    display: flex;
    flex-direction: column;
}

.ssc-number {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.ssc-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* CTA Actions */
.scta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.scta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.scta-btn-primary svg {
    transition: transform 0.3s ease;
}

.scta-btn-primary:hover svg {
    transform: translateX(4px);
}

.scta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    color: #475569;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scta-btn-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

.scta-btn-secondary svg {
    stroke: #6366f1;
}

/* Right Visual - Card Stack */
.scta-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lottie Animation Wrapper */
.scta-lottie-wrapper {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.scta-lottie-animation {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

/* Decorative Rings */
.scta-deco-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 2px dashed rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
}

.scta-deco-ring-2 {
    width: 440px;
    height: 440px;
    border-color: rgba(236, 72, 153, 0.1);
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scta-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.scta-success-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.scta-success-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

/* Glassmorphism effect for cards */
.scta-success-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.scta-success-card .ssc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}

.scta-success-card .ssc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scta-success-card .ssc-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.scta-success-card .ssc-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
}

.scta-success-card .ssc-achievement {
    font-size: 0.75rem;
    color: #64748b;
}

.scta-success-card .ssc-score {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Card Positions */
.ssc-1 {
    top: 5%;
    left: 0;
    animation: cardFloat1 6s ease-in-out infinite;
}

.ssc-2 {
    top: 45%;
    right: -10px;
    animation: cardFloat2 7s ease-in-out infinite;
}

.ssc-3 {
    bottom: 5%;
    left: 5%;
    animation: cardFloat3 5s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Floating Badges */
.scta-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.scta-float-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.scta-float-badge span:first-child {
    font-size: 1rem;
}

.fb-1 {
    top: 2%;
    right: 15%;
    animation: badgeFloat1 4s ease-in-out infinite;
}

.fb-2 {
    bottom: 18%;
    right: 5%;
    animation: badgeFloat2 5s ease-in-out infinite;
}

@keyframes badgeFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes badgeFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Success CTA Responsive */
@media (max-width: 1440px) {
    .success-cta-wrapper {
        gap: 3rem;
    }
    
    .scta-content {
        max-width: 580px;
    }
}

@media (max-width: 1024px) {
    .success-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .scta-content {
        max-width: 100%;
    }
    
    .scta-title {
        font-size: 2.5rem;
    }
    
    .scta-stats-grid {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .scta-actions {
        justify-content: center;
    }
    
    .scta-visual {
        height: 380px;
    }
    
    .scta-lottie-wrapper {
        width: 260px;
        height: 260px;
    }
    
    .scta-deco-ring {
        width: 300px;
        height: 300px;
    }
    
    .scta-deco-ring-2 {
        width: 360px;
        height: 360px;
    }
    
    .ssc-1 { left: 5%; }
    .ssc-2 { right: 0; }
    .ssc-3 { left: 10%; }
}

@media (max-width: 768px) {
    .success-cta-section {
        padding: 4rem 0;
    }
    
    .scta-title {
        font-size: 2rem;
    }
    
    .scta-subtitle {
        font-size: 0.9375rem;
    }
    
    .scta-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .scta-stat-card {
        justify-content: center;
    }
    
    .scta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .scta-btn-primary,
    .scta-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .scta-visual {
        height: 320px;
    }
    
    .scta-lottie-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .scta-deco-ring {
        width: 240px;
        height: 240px;
    }
    
    .scta-deco-ring-2 {
        width: 280px;
        height: 280px;
    }
    
    .scta-success-card {
        padding: 0.875rem 1rem;
    }
    
    .scta-success-card .ssc-avatar {
        width: 40px;
        height: 40px;
    }
    
    .scta-success-card .ssc-name {
        font-size: 0.875rem;
    }
    
    .scta-success-card .ssc-achievement {
        font-size: 0.6875rem;
    }
    
    .ssc-1 { top: 5%; left: 0; }
    .ssc-2 { top: 35%; right: 0; }
    .ssc-3 { bottom: 5%; left: 5%; }
    
    .fb-1 { display: none; }
    .fb-2 { display: none; }
}

/* ============================================
   Additional Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .premium-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .testimonials-stats-banner {
        gap: 2rem;
    }
    
    .destinations-cta-strip {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-strip-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .premium-destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-destination-card {
        padding: 1.5rem;
    }
    
    .dest-arrow {
        display: none;
    }
    
    .premium-process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-stats-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .ts-stat {
        justify-content: center;
    }
    
    .review-platforms {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .final-cta-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .fcs-divider {
        display: none;
    }
    
    .fcs-item {
        flex: 1 1 30%;
    }
}

@media (max-width: 480px) {
    .premium-destination-card {
        flex-direction: column;
        text-align: center;
    }
    
    .dest-flag-wrapper {
        margin: 0 auto;
    }
    
    .dest-unis {
        justify-content: center;
    }
    
    .dest-stats {
        justify-content: center;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
    }
    
    .process-step-number span {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .cta-badge {
        font-size: 0.75rem;
    }
}


/* ============================================
   Hero Enhancements
   ============================================ */
.hero-tagline {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
    flex-shrink: 0;
}

.fc-icon {
    font-size: 1.25rem;
}

/* ============================================
   Quick Enquiry Form Section - Single Row Design
   ============================================ */
.quick-enquiry-section {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding-bottom: 3rem;
}

.qe-single-row-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Header - Icon & Title */
.qe-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid #e2e8f0;
}

.qe-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.qe-header-text {
    display: flex;
    flex-direction: column;
}

.qe-header-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

/* Single Row Form */
.qe-single-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.qe-single-field {
    flex: 1;
    min-width: 0;
}

.qe-single-field input,
.qe-single-field select {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9375rem;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.2s ease;
}

.qe-single-field input:hover,
.qe-single-field select:hover {
    border-color: #cbd5e1;
    background: white;
}

.qe-single-field input:focus,
.qe-single-field select:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.qe-single-field input::placeholder {
    color: #94a3b8;
}

.qe-single-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.qe-single-field select option[value=""] {
    color: #94a3b8;
}

/* Submit Button */
.qe-single-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.qe-single-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.qe-single-btn svg {
    transition: transform 0.25s ease;
}

.qe-single-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .qe-single-row-card {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .qe-card-header {
        border-right: none;
        padding-right: 0;
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .qe-single-form {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .qe-single-field {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }
    
    .qe-single-btn {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .quick-enquiry-section {
        margin-top: -40px;
    }
    
    .qe-single-row-card {
        padding: 1rem;
    }
    
    .qe-single-field {
        flex: 1 1 100%;
    }
    
    .qe-header-icon {
        width: 44px;
        height: 44px;
    }
    
    .qe-header-title {
        font-size: 1rem;
    }
}

/* ============================================
   Compact Stats Section
   ============================================ */
.compact-stats-section {
    padding: 2rem 0 3rem;
}

.compact-stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--neutral-100);
    flex-wrap: wrap;
}

.compact-stat-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.5rem 1.5rem;
}

.csi-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.csi-icon svg {
    width: 24px;
    height: 24px;
}

.csi-content {
    display: flex;
    flex-direction: column;
}

.csi-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.csi-label {
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.csi-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

/* Badge with emoji */
.badge-emoji {
    font-size: 1rem;
    margin-right: 0.25rem;
}

/* Feature icon box with SVG */
.feature-icon-box {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--feature-color) 20%, transparent);
    color: var(--feature-color);
}

.feature-icon-box svg {
    width: 28px;
    height: 28px;
}

/* Feature highlights with text checkmarks */
.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-highlights li {
    font-size: 0.875rem;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
    padding-left: 0;
}

/* Program card icon with SVG */
.program-card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--card-color);
}

.program-card-icon svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
}

.program-card-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--card-color) 15%, transparent);
}

.program-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow circle text */
.arrow-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--card-color);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.premium-program-card:hover .arrow-circle {
    background: var(--card-color);
    color: white;
    transform: translateX(4px);
}

/* ============================================
   International Universities Pathway Section
   ============================================ */
.intl-pathway-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.intl-pathway-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.intl-pathway-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #fff5f7 0%, 
        #fdf2f8 25%, 
        #fce7f3 50%, 
        #fbcfe8 75%,
        #fdf2f8 100%
    );
}

.intl-pathway-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(236, 72, 153, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

.intl-pathway-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

.intl-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f9a8d4, #f472b6);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.intl-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.intl-blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fda4af, #fb7185);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.intl-pathway-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.intl-pathway-left {
    max-width: 560px;
}

.intl-pathway-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #be185d;
    margin-bottom: 1.25rem;
}

.intl-pathway-badge svg {
    color: #ec4899;
}

.intl-pathway-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
}

.intl-pathway-title .title-line-1 {
    display: block;
    color: #1e293b;
}

.intl-pathway-title .title-line-2 {
    display: block;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intl-pathway-desc {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

/* Countries Carousel */
.intl-countries-carousel {
    margin-bottom: 2rem;
    overflow: hidden;
}

.intl-countries-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: transform 0.4s ease;
}

.intl-country-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(236, 72, 153, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    min-width: 200px;
}

.intl-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.icc-flag {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.icc-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icc-info {
    flex: 1;
}

.icc-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.125rem 0;
}

.icc-info span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.icc-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    transition: all 0.3s ease;
}

.intl-country-card:hover .icc-arrow {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    transform: translateX(2px);
}

/* Carousel Navigation */
.intl-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.intl-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(236, 72, 153, 0.2);
    background: white;
    color: #ec4899;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.intl-nav-btn:hover {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    border-color: transparent;
}

.intl-nav-dots {
    display: flex;
    gap: 0.5rem;
}

.intl-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.intl-nav-dot:hover {
    background: rgba(236, 72, 153, 0.4);
}

.intl-nav-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

/* CTA Button */
.intl-pathway-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.intl-pathway-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.intl-pathway-cta svg {
    transition: transform 0.3s ease;
}

.intl-pathway-cta:hover svg {
    transform: translateX(4px);
}

/* Right Content - Globe Animation */
.intl-pathway-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intl-globe-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

.intl-globe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Globe Core */
.intl-globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.globe-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3, #fbcfe8);
    box-shadow: 
        inset -20px -20px 40px rgba(236, 72, 153, 0.2),
        inset 20px 20px 40px rgba(255, 255, 255, 0.8),
        0 20px 60px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
    animation: globeRotate 30s linear infinite;
}

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 15px,
            rgba(236, 72, 153, 0.1) 15px,
            rgba(236, 72, 153, 0.1) 16px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 15px,
            rgba(139, 92, 246, 0.1) 15px,
            rgba(139, 92, 246, 0.1) 16px
        );
}

.globe-highlight {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
}

/* Orbiting Flags */
.intl-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(236, 72, 153, 0.15);
    animation: orbitSpin 20s linear infinite;
}

.intl-orbit-1 {
    width: 240px;
    height: 240px;
    margin-left: -120px;
    margin-top: -120px;
    animation-duration: 25s;
}

.intl-orbit-2 {
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -140px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.intl-orbit-3 {
    width: 320px;
    height: 320px;
    margin-left: -160px;
    margin-top: -160px;
    animation-duration: 35s;
}

.intl-orbit-4 {
    width: 360px;
    height: 360px;
    margin-left: -180px;
    margin-top: -180px;
    animation-duration: 40s;
    animation-direction: reverse;
}

.intl-orbit-5 {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    animation-duration: 45s;
}

.intl-orbit-6 {
    width: 440px;
    height: 440px;
    margin-left: -220px;
    margin-top: -220px;
    animation-duration: 50s;
    animation-direction: reverse;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-flag {
    position: absolute;
    top: -18px;
    left: 50%;
    margin-left: -18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 3px;
    animation: orbitSpin 20s linear infinite reverse;
    animation-delay: var(--delay, 0s);
}

.intl-orbit-2 .orbit-flag,
.intl-orbit-4 .orbit-flag,
.intl-orbit-6 .orbit-flag {
    animation-direction: normal;
}

.orbit-flag img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Connection Lines */
.intl-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-in-out infinite;
}

.connection-line:nth-child(2) { animation-delay: 0.5s; }
.connection-line:nth-child(3) { animation-delay: 1s; }
.connection-line:nth-child(4) { animation-delay: 1.5s; }
.connection-line:nth-child(5) { animation-delay: 2s; }
.connection-line:nth-child(6) { animation-delay: 2.5s; }

@keyframes drawLine {
    0%, 100% { stroke-dashoffset: 200; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
}

/* Floating Particles */
.intl-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intl-particles .particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    animation: particleFloat var(--duration) ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Stats Badges */
.intl-stat-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.1);
    z-index: 10;
}

.isb-top {
    top: 10%;
    right: 5%;
    animation: badgeFloat 4s ease-in-out infinite;
}

.isb-bottom {
    bottom: 15%;
    left: 5%;
    animation: badgeFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.isb-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.isb-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* ============================================
   Responsive for new sections
   ============================================ */
@media (max-width: 1024px) {
    /* Hero Slider Responsive */
    .hero-premium-slider {
        min-height: auto;
    }
    
    .hero-slide {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-slide2-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-slide2-left {
        max-width: 100%;
        order: 1;
    }
    
    .hero-slide2-right {
        order: 0;
    }
    
    .hero-slide2-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-slide2-heading {
        font-size: 2.25rem;
    }
    
    .hero-slide2-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }
    
    .hero-countries-grid {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-slide2-cta {
        margin: 0 auto;
    }
    
    .hero-globe-container {
        max-width: 320px;
    }
    
    .hero-globe-core {
        width: 120px;
        height: 120px;
    }
    
    .hero-orbit-5,
    .hero-orbit-6 {
        display: none;
    }
    
    .hero-slider-nav {
        bottom: 1.5rem;
    }
    
    /* International Pathway Responsive */
    .intl-pathway-section {
        padding: 3rem 0;
    }
    
    .intl-pathway-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .intl-pathway-left {
        max-width: 100%;
        order: 1;
    }
    
    .intl-pathway-right {
        order: 0;
    }
    
    .intl-pathway-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .intl-pathway-title {
        font-size: 2.25rem;
    }
    
    .intl-pathway-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }
    
    .intl-pathway-cta {
        margin: 0 auto;
    }
    
    .intl-globe-container {
        max-width: 350px;
    }
    
    .intl-globe-core {
        width: 140px;
        height: 140px;
    }
    
    .intl-orbit-5,
    .intl-orbit-6 {
        display: none;
    }
    
    /* Hero Light Responsive */
    .hero-premium-light {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero-light-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-light-left {
        padding-right: 0;
        order: 1;
    }
    
    .hero-light-right {
        order: 0;
        min-height: 400px;
    }
    
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-premium-heading {
        font-size: 2.75rem;
    }
    
    .hero-premium-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-premium-cta {
        justify-content: center;
    }
    
    .hero-trust-strip {
        margin: 0 auto;
    }
    
    .course-card-featured {
        width: 260px;
    }
    
    .ccf-pte { top: 5%; right: 10%; }
    .ccf-toefl { top: 30%; right: 0; }
    .ccf-oet { bottom: 30%; left: 5%; }
    .ccf-duolingo { bottom: 5%; left: 20%; }
    
    .qe-glass-card {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .qe-glass-left {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .qe-pulse-ring {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .qe-glass-form {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .qe-input-group {
        flex: 1 1 calc(50% - 0.3125rem);
        min-width: 140px;
    }
    
    .qe-glass-btn {
        flex: 1 1 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero Slider Responsive */
    .hero-slide {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    .hero-slide2-heading {
        font-size: 1.875rem;
    }
    
    .hero-slide2-desc {
        font-size: 1rem;
    }
    
    .hero-countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
    }
    
    .hero-country-card {
        padding: 0.75rem;
    }
    
    .hcc-flag {
        width: 40px;
        height: 40px;
    }
    
    .hcc-name {
        font-size: 0.75rem;
    }
    
    .hero-globe-container {
        max-width: 260px;
    }
    
    .hero-globe-core {
        width: 100px;
        height: 100px;
    }
    
    .hero-orbit-3,
    .hero-orbit-4,
    .hero-orbit-5,
    .hero-orbit-6 {
        display: none;
    }
    
    .orbit-flag-pink {
        width: 28px;
        height: 28px;
        top: -14px;
        margin-left: -14px;
    }
    
    .hero-stat-badge {
        padding: 0.625rem 1rem;
    }
    
    .hsb-value {
        font-size: 1.25rem;
    }
    
    .hsb-label {
        font-size: 0.6875rem;
    }
    
    .hero-slide2-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* International Pathway Section */
    .intl-pathway-section {
        padding: 2.5rem 0;
    }
    
    .intl-pathway-title {
        font-size: 1.875rem;
    }
    
    .intl-pathway-desc {
        font-size: 1rem;
    }
    
    .intl-globe-container {
        max-width: 280px;
    }
    
    .intl-globe-core {
        width: 120px;
        height: 120px;
    }
    
    .intl-orbit-3,
    .intl-orbit-4,
    .intl-orbit-5,
    .intl-orbit-6 {
        display: none;
    }
    
    .orbit-flag {
        width: 30px;
        height: 30px;
        top: -15px;
        margin-left: -15px;
    }
    
    .intl-stat-badge {
        padding: 0.625rem 1rem;
    }
    
    .isb-value {
        font-size: 1.25rem;
    }
    
    .isb-label {
        font-size: 0.6875rem;
    }
    
    .intl-country-card {
        min-width: 180px;
        padding: 0.75rem 1rem;
    }
    
    .icc-flag {
        width: 36px;
        height: 36px;
    }
    
    .icc-info h4 {
        font-size: 0.875rem;
    }
    
    .intl-pathway-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Light Section */
    .hero-premium-light {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    .hero-premium-heading {
        font-size: 2.25rem;
    }
    
    .hero-premium-desc {
        font-size: 1rem;
    }
    
    .hero-premium-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-light-right {
        min-height: 350px;
    }
    
    .course-card-featured {
        width: 240px;
        padding: 1.5rem;
    }
    
    .ccf-title {
        font-size: 1.25rem;
    }
    
    .course-card-float {
        padding: 0.5rem 0.75rem;
    }
    
    .ccf-mini-icon {
        width: 32px;
        height: 32px;
        font-size: 0.5rem;
    }
    
    .ccf-mini-name {
        font-size: 0.75rem;
    }
    
    .ccf-mini-score {
        font-size: 0.625rem;
    }
    
    .ccf-pte { top: 0; right: 5%; }
    .ccf-toefl { display: none; }
    .ccf-oet { bottom: 20%; left: 0; }
    .ccf-duolingo { display: none; }
    
    .hero-decor-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 640px) {
    .hero-premium-light {
        padding-top: 65px;
    }
    
    .hero-premium-heading {
        font-size: 1.875rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-trust-strip {
        padding: 0.625rem 1rem;
    }
    
    .trust-avatar {
        width: 28px;
        height: 28px;
    }
    
    .trust-text {
        font-size: 0.75rem;
    }
    
    .quick-enquiry-section {
        margin-top: -2rem;
        padding-bottom: 1.5rem;
    }
    
    .qe-glass-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .qe-icon-circle {
        width: 48px;
        height: 48px;
    }
    
    .qe-icon-circle svg {
        width: 24px;
        height: 24px;
    }
    
    .qe-glass-info h3 {
        font-size: 1rem;
    }
    
    .qe-glass-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .qe-input-group {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .qe-input-group input,
    .qe-input-group select {
        padding: 0.875rem 1rem;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   Hero Premium Compact Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-premium-compact {
        padding-top: 64px;
        padding-bottom: 90px;
        min-height: auto;
    }
    
    .hero-pc-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .hero-pc-left {
        text-align: center;
        order: 1;
    }
    
    .hero-pc-right {
        order: 0;
    }
    
    .hero-pc-title {
        font-size: 2.5rem;
    }
    
    .hero-pc-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-pc-cta {
        justify-content: center;
    }
    
    .hero-trusted-badge {
        margin: 0 auto;
    }
    
    .hero-pc-visual {
        height: 350px;
    }
    
    .hero-globe-container {
        width: 300px;
        height: 300px;
    }
    
    .globe-label {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-premium-compact {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    
    .hero-pc-content {
        padding: 1.5rem 0;
        gap: 2rem;
    }
    
    .hero-pc-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-pc-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-pc-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-pc-cta .btn-hero-primary,
    .hero-pc-cta .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trusted-badge {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .htb-avatar {
        width: 28px;
        height: 28px;
    }
    
    .htb-text {
        font-size: 0.75rem;
    }
    
    .hero-pc-visual {
        height: 300px;
    }
    
    .hero-globe-container {
        width: 260px;
        height: 260px;
    }
    
    .globe-orbit-1 { inset: -10px; }
    .globe-orbit-2 { inset: -25px; }
    .globe-orbit-3 { inset: -40px; }
    
    .globe-label {
        display: none;
    }
    
    .globe-connections {
        inset: -20px;
    }
    
    .hpc-lottie-ring-2 {
        inset: -30px;
    }
    
    .hpc-score-card {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .hpc-sc-icon {
        width: 30px;
        height: 30px;
        font-size: 0.5625rem;
    }
    
    .hpc-sc-value {
        font-size: 1rem;
    }
    
    .flight-icon {
        width: 28px;
        height: 28px;
    }
    
    .quick-enquiry-section {
        margin-top: -50px;
    }
}

@media (max-width: 480px) {
    .hero-premium-compact {
        padding-bottom: 60px;
    }
    
    .hero-pc-title {
        font-size: 1.625rem;
    }
    
    .hero-pc-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-pc-visual {
        height: 260px;
    }
    
    .hero-pc-lottie {
        width: 180px;
        height: 180px;
    }
    
    .hpc-score-card {
        padding: 0.375rem 0.625rem;
    }
    
    .hpc-sc-icon {
        width: 26px;
        height: 26px;
        font-size: 0.5rem;
    }
    
    .hpc-sc-value {
        font-size: 0.875rem;
    }
    
    /* Hide some cards on small screens */
    .hpc-sc-3 {
        display: none;
    }
    
    .quick-enquiry-section {
        margin-top: -40px;
    }
}

/* ============================================
   Hero Opening Doors Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-opening-doors {
        padding-top: 64px;
        padding-bottom: 100px;
        min-height: auto;
    }
    
    .hero-od-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem 0 4rem;
    }
    
    .hero-od-left {
        text-align: center;
        order: 1;
    }
    
    .hero-od-right {
        order: 0;
        min-height: 450px;
    }
    
    .hero-od-title {
        font-size: 2.75rem;
    }
    
    .hero-od-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-od-cta {
        justify-content: center;
    }
    
    .hero-test-showcase {
        height: 450px;
    }
    
    .hero-central-lottie {
        width: 280px;
        height: 280px;
    }
    
    .hero-graduate-image {
        width: 260px;
        height: 340px;
    }
    
    .test-score-card {
        padding: 0.75rem 1rem;
    }
    
    .tsc-logo {
        width: 36px;
        height: 36px;
    }
    
    .tsc-score-value {
        font-size: 1.25rem;
    }
    
    .flight-airplane {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-opening-doors {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    
    .hero-od-content {
        padding: 2rem 0 3.5rem;
        gap: 2rem;
    }
    
    .hero-od-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-od-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-od-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-od-cta .btn-hero-primary,
    .hero-od-cta .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-od-right {
        min-height: 380px;
    }
    
    .hero-test-showcase {
        height: 380px;
    }
    
    .hero-central-lottie {
        width: 220px;
        height: 220px;
    }
    
    .hero-graduate-image {
        width: 200px;
        height: 280px;
    }
    
    .test-score-card {
        padding: 0.625rem 0.875rem;
        gap: 0.5rem;
    }
    
    .tsc-logo {
        width: 32px;
        height: 32px;
    }
    
    .tsc-score-value {
        font-size: 1.125rem;
    }
    
    .tsc-score-label {
        font-size: 0.625rem;
    }
    
    /* Reposition cards for mobile */
    .tsc-ielts {
        top: 0%;
        left: 0%;
    }
    
    .tsc-pte {
        top: 0%;
        right: 0%;
        left: auto;
    }
    
    .tsc-toefl {
        top: 38%;
        right: -8%;
    }
    
    .tsc-oet {
        bottom: 5%;
        right: 0%;
    }
    
    .tsc-duolingo {
        bottom: 5%;
        left: 0%;
    }
    
    .tsc-sat {
        top: 38%;
        left: -8%;
    }
    
    .od-shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .od-shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .od-shape-3 {
        width: 80px;
        height: 80px;
    }
    
    .flight-airplane {
        width: 32px;
        height: 32px;
    }
    
    .quick-enquiry-section {
        margin-top: -60px;
    }
}

@media (max-width: 480px) {
    .hero-opening-doors {
        padding-bottom: 70px;
    }
    
    .hero-od-title {
        font-size: 1.625rem;
    }
    
    .hero-od-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-od-right {
        min-height: 320px;
    }
    
    .hero-test-showcase {
        height: 320px;
    }
    
    .hero-central-lottie {
        width: 180px;
        height: 180px;
    }
    
    .hero-graduate-image {
        width: 160px;
        height: 220px;
    }
    
    .test-score-card {
        padding: 0.5rem 0.75rem;
        border-radius: 0.75rem;
    }
    
    .tsc-logo {
        width: 28px;
        height: 28px;
    }
    
    .tsc-score-value {
        font-size: 1rem;
    }
    
    /* Hide some cards on very small screens */
    .tsc-toefl,
    .tsc-sat {
        display: none;
    }
    
    .flight-airplane {
        width: 28px;
        height: 28px;
    }
    
    .quick-enquiry-section {
        margin-top: -50px;
    }
}

/* ============================================
   Hero Slider & Header Responsive Styles
   ============================================ */

/* Tablet Responsive (1024px and below) */
@media (max-width: 1024px) {
    /* Header Responsive */
    .header-container {
        padding: 0 1.5rem;
    }
    
    .header-inner-premium {
        height: 64px;
    }
    
    .nav-list-premium {
        gap: 0;
    }
    
    .nav-link-premium {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .mega-menu-modern {
        width: 580px;
    }
    
    .header-btn-ghost {
        display: none;
    }
    
    /* Hero Slider Responsive */
    .hero-slider-section {
        padding-top: 64px;
        min-height: auto;
    }
    
    .hero-slide-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 0 4rem;
    }
    
    .hero-slide-left {
        order: 1;
        text-align: center;
    }
    
    .hero-slide-right {
        order: 0;
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
    }
    
    .hero-slide-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-slide-cta {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .hero-lottie-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hero-lottie {
        height: 320px;
    }
    
    .hero-floating-card {
        padding: 0.75rem 1rem;
    }
    
    .hfc-1 {
        top: 10%;
        left: 5%;
    }
    
    .hfc-2 {
        bottom: 15%;
        right: 5%;
    }
}

/* Mobile Responsive (768px and below) */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-inner-premium {
        height: 60px;
    }
    
    .header-nav-premium {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .header-nav-premium.mobile-open {
        transform: translateX(0);
    }
    
    .nav-list-premium {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-item-premium {
        border-bottom: 1px solid var(--neutral-100);
    }
    
    .nav-link-premium {
        padding: 1rem 0;
        font-size: 1rem;
        justify-content: space-between;
    }
    
    .nav-chevron {
        transition: transform 0.3s ease;
    }
    
    .nav-item-premium.expanded .nav-chevron {
        transform: rotate(180deg);
    }
    
    /* Mobile Mega Menu */
    .mega-menu-modern,
    .dropdown-modern {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 1rem 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item-premium.expanded .mega-menu-modern,
    .nav-item-premium.expanded .dropdown-modern {
        display: block;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mega-col-modern {
        padding: 0;
    }
    
    .mega-cta-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--neutral-100);
        padding-top: 1rem;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-contact-btns {
        display: none;
    }
    
    .header-btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .header-btn-primary svg {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero Slider Mobile */
    .hero-slider-section {
        padding-top: 60px;
        min-height: auto;
    }
    
    .hero-slide-content {
        padding: 2rem 0 3.5rem;
        gap: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slide-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats-row {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-lottie-wrapper {
        max-width: 300px;
    }
    
    .hero-lottie {
        height: 260px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-slider-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slider-dots {
        order: 1;
    }
    
    .slider-arrows {
        order: 0;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Floating shapes smaller on mobile */
    .shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .shape-3 {
        width: 80px;
        height: 80px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Header Small Mobile */
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }
    
    .logo-name-premium {
        font-size: 1rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .header-btn-primary {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    /* Hero Slider Small Mobile */
    .hero-slide-content {
        padding: 1.5rem 0 3rem;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
    }
    
    .hero-slide-title {
        font-size: 1.625rem;
    }
    
    .hero-slide-desc {
        font-size: 0.9375rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .hero-stats-row {
        gap: 1rem;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .hero-lottie-wrapper {
        max-width: 260px;
    }
    
    .hero-lottie {
        height: 220px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Study Abroad Section Responsive */
@media (max-width: 1024px) {
    .premium-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dest-country-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .premium-destinations-section {
        padding: 3.5rem 0;
    }
    
    .premium-destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .premium-destination-card {
        padding: 1.25rem;
    }
    
    .dest-flag-circle {
        width: 52px;
        height: 52px;
    }
    
    .dest-country-name {
        font-size: 1.5rem;
    }
    
    .dest-study-in {
        font-size: 0.6875rem;
    }
    
    .dest-unis {
        font-size: 0.8125rem;
    }
    
    .dest-highlight {
        font-size: 0.75rem;
    }
    
    .destinations-cta-strip {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cta-strip-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-strip-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .dest-flag-circle {
        width: 44px;
        height: 44px;
    }
    
    .dest-country-name {
        font-size: 1.25rem;
    }
}

/* Process Section Responsive */
@media (max-width: 1024px) {
    .premium-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .premium-process-section {
        padding: 3.5rem 0;
    }
    
    .premium-process-timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .process-step-number {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .process-step-number span {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .process-step-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Testimonials Section Responsive */
@media (max-width: 768px) {
    .premium-testimonials-section {
        padding: 3.5rem 0;
    }
    
    .testimonials-stats-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .ts-stat {
        justify-content: center;
    }
    
    .review-platforms {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
}

/* Final CTA Responsive */
@media (max-width: 768px) {
    .premium-final-cta {
        padding: 3.5rem 0;
    }
    
    .premium-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .premium-final-cta p {
        font-size: 1rem;
    }
    
    .final-cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fcs-divider {
        display: none;
    }
    
    .final-cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .final-cta-actions .btn {
        width: 100%;
    }
}

/* Final CTA Icon and Stats */
.final-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.fcs-item {
    text-align: center;
}

.fcs-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.fcs-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.fcs-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* CTA Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* CTA Trust Badges */
.cta-trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge svg {
    stroke: rgba(255, 255, 255, 0.5);
}

/* Form Header Icon */
.form-header-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

/* Final CTA Background */
.final-cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.final-cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.final-cta-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.final-cta-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.final-cta-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
}
