/* 
 * Premium Landing Page Styles
 * Educational Language Platform
 */

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --secondary-gradient: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --text-glow: 0 0 10px rgba(255, 255, 255, 0.5);
    --card-hover-transform: translateY(-10px) scale(1.02);
}

body.premium-theme {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: 'Cairo', 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    background-color: #0f172a;
    height: 100%;
}

main {
    flex: 1;
}

/* Background Blurs */
.blur-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.blur-top-right {
    top: -200px;
    right: -200px;
    background: #4f46e5;
}

.blur-bottom-left {
    bottom: -200px;
    left: -200px;
    background: #ec4899;
}

/* Navbar Premium */
.navbar {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

/* Page Header Premium */
.page-header {
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    filter: blur(150px);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
    z-index: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.breadcrumb {
    display: inline-flex;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb a {
    color: #94a3b8;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

/* Content Box Premium */
.content-box-premium {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    color: #cbd5e1;
    line-height: 1.8;
}

.content-box-premium h2,
.content-box-premium h3 {
    color: #f8fafc;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-box-premium h2:first-child {
    margin-top: 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Ensure Logo is on the right (handled by RTL + justify-content:space-between) */
/* But if we want menu centered, we might need adjustments */
/* For now, just make it look clean */

.navbar-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
    /* Force white */
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 600;
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

/* Remove underline */
.nav-link::after {
    display: none;
}

.btn-ghost {
    color: white;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.glow-btn {
    background: var(--primary-gradient);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.glow-btn:hover::before {
    left: 100%;
}

/* Hero Section Premium */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #818cf8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
    transition: all 0.3s;
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.avatars-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #0f172a;
    overflow: hidden;
    margin-left: -10px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-count {
    width: 35px;
    height: 35px;
    background: #334155;
    border-radius: 50%;
    border: 2px solid #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-left: -10px;
    color: white;
    font-weight: bold;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
    perspective: 1000px;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
}

.circle-2 {
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 30s linear infinite;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float-y 6s ease-in-out infinite;
}

.card-main {
    top: 30%;
    left: 20%;
    width: 280px;
    z-index: 2;
}

.card-student {
    bottom: 20%;
    right: 10%;
    width: 220px;
    z-index: 1;
    animation-delay: 1s;
}

.card-badge {
    top: 15%;
    right: 0%;
    z-index: 3;
    animation-delay: 2s;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress {
    height: 100%;
    background: var(--accent-gradient);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #94a3b8;
}

.student-avatar {
    position: relative;
    width: 45px;
    height: 45px;
}

.student-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.online-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid #1e293b;
    border-radius: 50%;
}

/* Partners Strip */
/* Partners Strip Premium */
.partners-strip {
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.partners-strip::before,
.partners-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-strip::before {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}

.partners-strip::after {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}

.partners-logos {
    display: flex;
    gap: 5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 0;
}

.partners-logos i {
    font-size: 3rem;
    color: #475569;
    transition: all 0.3s;
    cursor: pointer;
}

.partners-logos i:hover {
    color: #fff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(33.33%);
    }
}

.partners-title {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: block;
    font-weight: 600;
    opacity: 0.8;
}

/* Section Header Premium */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section Premium */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-box {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.color-primary {
    color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
}

.color-success {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
}

.color-warning {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

.color-danger {
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Courses Premium */
.courses-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card-premium {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid transparent;
}

.course-card-premium:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.3);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.german-bg {
    background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
}

.ielts-bg {
    background: linear-gradient(135deg, #022c22 0%, #115e59 100%);
}

.course-flag {
    font-size: 5rem;
    z-index: 1;
}

.course-overlay {
    position: absolute;
    inset: 0;
    background: url('../assets/pattern.png');
    /* Fallback */
    opacity: 0.1;
}

.course-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}

.course-content {
    padding: 25px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.course-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.course-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 42px;
}

.course-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.course-features i {
    color: #6366f1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.course-price {
    display: flex;
    flex-direction: column;
}

.course-price .current {
    font-weight: 800;
    color: white;
    font-size: 1.2rem;
}

.course-price .original {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: line-through;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.btn-icon:hover {
    background: #6366f1;
    transform: rotate(45deg);
}

/* Stats Banner */
.stats-banner {
    background: var(--primary-gradient);
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center;
    text-align: center;
}

.stat-divider {
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.pricing-toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    border-radius: 34px;
    transition: .4s;
}

.pricing-toggle label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked+label {
    background-color: #6366f1;
}

input:checked+label:before {
    transform: translateX(30px);
}

/* Package Cards Premium */
.package-card-premium {
    background: #1e293b;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.package-card-premium.featured {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #6366f1;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.package-card-premium:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.3);
}

.package-card-premium.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.4);
}

.best-value {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6366f1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.package-head {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.icon-wrapper.glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #4ade80;
}

.icon-wrapper.gradient {
    background: var(--primary-gradient);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.icon-wrapper.gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.package-head h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.package-head .price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.package-head .desc {
    color: #94a3b8;
    font-size: 0.9rem;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-body ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.package-body ul li.check i {
    color: #4ade80;
}

/* Check icon implicit from content usually, but using CSS class for color */
.package-body ul li.cross {
    color: #64748b;
    text-decoration: line-through;
}

.package-body ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.package-body ul li.check::before {
    content: "\f00c";
    color: #4ade80;
}

.package-body ul li.cross::before {
    content: "\f00d";
    color: #ef4444;
}

/* Testimonials Slider */
.testimonials-slider-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.testimonials-slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card-premium {
    min-width: 350px;
    background: #1e293b;
    padding: 30px;
    border-radius: 20px;
    scroll-snap-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.03);
}

.testimonial-card-premium .text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-style: italic;
}

.testimonial-card-premium .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card-premium .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-card-premium .author .info h5 {
    margin: 0;
    color: white;
}

.testimonial-card-premium .author .info span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.testimonial-card-premium .stars {
    margin-right: auto;
    color: #f59e0b;
    font-size: 0.8rem;
}

/* Premium CTA */
.premium-cta {
    padding: 5rem 0;
}

.cta-inner {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content-p h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-p p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btns-group {
    display: flex;
    gap: 1rem;
}

/* Footer Premium */
.footer-premium {
    background: #1e293b;
    padding-top: 5rem;
    border-top: 1px solid #334155;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    color: #818cf8;
}

.footer-brand-col p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons-premium {
    display: flex;
    gap: 10px;
}

.social-icons-premium a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}

.social-icons-premium a:hover {
    background: #6366f1;
    transform: translateY(-3px);
}

.footer-links-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: #94a3b8;
    transition: 0.2s;
    text-decoration: none;
}

.footer-links-col ul li a:hover {
    color: #818cf8;
    padding-right: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #94a3b8;
}

.contact-list li i {
    color: #818cf8;
}

.footer-bottom-premium {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0f172a;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
}

/* Packages Grid Layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .card-main {
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
    }

    .card-student {
        bottom: -10%;
        right: 10%;
    }

    .stats-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-btns-group {
        justify-content: center;
    }

    .cta-image-p {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .package-card-premium.featured {
        transform: scale(1);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0f172a;
        flex-direction: column;
        padding: 2rem;
        transition: 0.3s;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu .navbar-nav {
        flex-direction: column;
        margin-top: 50px;
    }

    .navbar-toggle {
        display: block;
        z-index: 1001;
    }
}