/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette */
    --primary-color: #3b82f6;
    --primary-dark: #1e40af;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(139, 92, 246, 0.9));
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-3) var(--spacing-4);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60px;
    position: relative;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    transition: var(--transition-normal);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Login Button Styling */
.nav-link.login-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    color: white !important;
    border-radius: var(--radius-md);
    padding: var(--spacing-1) var(--spacing-3);
    margin-left: var(--spacing-2);
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.3);
    font-size: var(--font-size-sm);
}

.nav-link.login-btn:hover {
    background: linear-gradient(135deg, #7209b7 0%, #533483 25%, #0f3460 50%, #16213e 75%, #1a1a2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.4);
    color: white !important;
}

.nav-link.login-btn i {
    margin-right: var(--spacing-1);
}


.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
    padding: var(--spacing-2);
    margin: 0;
    flex-shrink: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: heroGradientShift 15s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    }
    25% {
        background: linear-gradient(135deg, #16213e 0%, #0f3460 25%, #533483 50%, #7209b7 75%, #1a1a2e 100%);
    }
    50% {
        background: linear-gradient(135deg, #0f3460 0%, #533483 25%, #7209b7 50%, #1a1a2e 75%, #16213e 100%);
    }
    75% {
        background: linear-gradient(135deg, #533483 0%, #7209b7 25%, #1a1a2e 50%, #16213e 75%, #0f3460 100%);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.2"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="80" fill="url(%23a)"/><circle cx="800" cy="300" r="120" fill="url(%23a)"/><circle cx="400" cy="700" r="100" fill="url(%23a)"/><circle cx="600" cy="100" r="60" fill="url(%23a)"/><circle cx="100" cy="600" r="90" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    animation: floatParticles 20s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    width: 100%;
    z-index: 1;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-bottom: var(--spacing-6);
    color: white;
    font-weight: 700;
    animation: badgeFloat 3s ease-in-out infinite, badgeGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(79, 172, 254, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes badgeGlow {
    0% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(79, 172, 254, 0.3);
    }
    100% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(79, 172, 254, 0.6);
    }
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-text {
    text-align: center;
    color: white;
    margin-bottom: var(--spacing-12);
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    margin-bottom: var(--spacing-4);
    line-height: 1.1;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
    animation: titleSlideIn 1.5s ease-out, titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
    }
    100% {
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 30px rgba(79, 172, 254, 0.3);
    }
}

.gradient-text {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(79, 172, 254, 1),
        0 0 20px rgba(79, 172, 254, 0.8),
        0 0 30px rgba(0, 242, 254, 0.6),
        0 0 40px rgba(0, 242, 254, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.8);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

/* Typing Effect Styles */
.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    color: #4facfe;
    font-weight: 100;
    animation: blink 1s infinite;
    margin-left: 2px;
}

/* Hide cursor on the first typing element */
#typing-text-1::after {
    display: none;
}

/* Add gap between the two typing elements */
#typing-text-1 {
    margin-right: 0.5em;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glowPulse {
    0% { 
        text-shadow: 
            0 0 10px rgba(79, 172, 254, 1),
            0 0 20px rgba(79, 172, 254, 0.8),
            0 0 30px rgba(0, 242, 254, 0.6),
            0 0 40px rgba(0, 242, 254, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.8);
    }
    100% { 
        text-shadow: 
            0 0 15px rgba(79, 172, 254, 1),
            0 0 25px rgba(79, 172, 254, 0.9),
            0 0 35px rgba(0, 242, 254, 0.8),
            0 0 45px rgba(0, 242, 254, 0.6),
            0 4px 8px rgba(0, 0, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-6);
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    line-height: 1.5;
    animation: subtitleFadeIn 2s ease-out 0.5s both, subtitleFloat 4s ease-in-out infinite 2s;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-normal);
}

.btn-glow:hover::before {
    left: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.stat-item {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: var(--spacing-6);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: statFloat 4s ease-in-out infinite, statGlow 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: statShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes statGlow {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(79, 172, 254, 0.3);
    }
}

@keyframes statShimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-3);
    font-size: var(--font-size-xl);
    color: white;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    margin-bottom: var(--spacing-1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.stat-label {
    font-size: var(--font-size-base);
    opacity: 1;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    color: white;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-4);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.scroll-arrow {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.5; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: var(--font-size-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: buttonPulse 3s ease-in-out infinite, buttonSlideIn 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonShimmer 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(79, 172, 254, 0.4);
    }
}

@keyframes buttonSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes buttonShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.section-header p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Plans Preview Section */
.plans-preview {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
    position: relative;
    overflow: visible;
    margin-top: 0;
    border-top: 3px solid #e2e8f0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.plans-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="50" fill="url(%23a)"/><circle cx="900" cy="200" r="80" fill="url(%23a)"/><circle cx="500" cy="800" r="60" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

/* Plans Section */
.plans-section {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.plan-category {
    margin-bottom: var(--spacing-20);
}

.category-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-12);
}

/* Force three columns for entertainment page on desktop */
.entertainment-page .plans-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .entertainment-page .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .entertainment-page .plans-grid {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: visible;
    min-height: 400px;
    animation: cardFloat 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-xl);
    pointer-events: none;
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.3);
    animation-play-state: paused;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(79, 172, 254, 0.4);
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(79, 172, 254, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.plan-card.featured::before {
    opacity: 1;
}

/* Plan-specific styling */
.basic-plan {
    border-left: 4px solid #4caf50;
}

.basic-plan .plan-icon {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.standard-plan {
    border-left: 4px solid #2196f3;
}

.standard-plan .plan-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.premium-plan {
    border-left: 4px solid #ff9800;
}

.premium-plan .plan-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.entertainment-plan {
    border-left: 4px solid #e91e63;
}

.entertainment-plan .plan-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.silver-plan {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
    border: 2px solid #c0c0c0;
    position: relative;
}

.silver-plan::before {
    background: linear-gradient(90deg, #c0c0c0, #a8a8a8);
}

.silver-plan:hover {
    border-color: #a8a8a8;
    box-shadow: 0 30px 60px rgba(192, 192, 192, 0.2), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.gold-plan {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffd54f 100%);
    border: 2px solid #ffd700;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gold-plan::before {
    background: linear-gradient(90deg, #ffd700, #ffb300);
}

.gold-plan:hover {
    border-color: #ffb300;
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.platinum-plan {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    border: 2px solid #9c27b0;
    position: relative;
}

.platinum-plan::before {
    background: linear-gradient(90deg, #9c27b0, #7b1fa2);
}

.platinum-plan:hover {
    border-color: #7b1fa2;
    box-shadow: 0 30px 60px rgba(156, 39, 176, 0.2), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.business-plan {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 50%, #a5d6a7 100%);
    border: 2px solid #4caf50;
    position: relative;
}

.business-plan::before {
    background: linear-gradient(90deg, #4caf50, #388e3c);
}

.business-plan:hover {
    border-color: #388e3c;
    box-shadow: 0 30px 60px rgba(76, 175, 80, 0.2), 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* New Plan Styles - Glass Effect Design */
.offer-plan {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.3) 0%, rgba(255, 193, 7, 0.2) 50%, rgba(255, 140, 0, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(255, 193, 7, 0.15),
        0 4px 16px rgba(255, 193, 7, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.offer-plan::before {
    background: linear-gradient(90deg, #ffc107, #ff8f00);
}

.offer-plan:hover {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.4) 0%, rgba(255, 193, 7, 0.3) 50%, rgba(255, 140, 0, 0.25) 100%);
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 
        0 20px 40px rgba(255, 193, 7, 0.25),
        0 8px 20px rgba(255, 193, 7, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 193, 7, 0.3);
}

.basic-plan {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.3) 0%, rgba(224, 224, 224, 0.2) 50%, rgba(189, 189, 189, 0.15) 100%);
    border: 1px solid rgba(158, 158, 158, 0.4);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(158, 158, 158, 0.15),
        0 4px 16px rgba(158, 158, 158, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.basic-plan::before {
    background: linear-gradient(90deg, #9e9e9e, #757575);
}

.basic-plan:hover {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.4) 0%, rgba(224, 224, 224, 0.3) 50%, rgba(189, 189, 189, 0.25) 100%);
    border-color: rgba(158, 158, 158, 0.6);
    box-shadow: 
        0 20px 40px rgba(158, 158, 158, 0.25),
        0 8px 20px rgba(158, 158, 158, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(158, 158, 158, 0.3);
}

.standard-plan {
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.3) 0%, rgba(187, 222, 251, 0.2) 50%, rgba(144, 202, 249, 0.15) 100%);
    border: 1px solid rgba(33, 150, 243, 0.4);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(33, 150, 243, 0.15),
        0 4px 16px rgba(33, 150, 243, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.standard-plan::before {
    background: linear-gradient(90deg, #2196f3, #1976d2);
}

.standard-plan:hover {
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.4) 0%, rgba(187, 222, 251, 0.3) 50%, rgba(144, 202, 249, 0.25) 100%);
    border-color: rgba(33, 150, 243, 0.6);
    box-shadow: 
        0 20px 40px rgba(33, 150, 243, 0.25),
        0 8px 20px rgba(33, 150, 243, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(33, 150, 243, 0.3);
}

.professional-plan {
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.3) 0%, rgba(200, 230, 201, 0.2) 50%, rgba(165, 214, 167, 0.15) 100%);
    border: 1px solid rgba(76, 175, 80, 0.4);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(76, 175, 80, 0.15),
        0 4px 16px rgba(76, 175, 80, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.professional-plan::before {
    background: linear-gradient(90deg, #4caf50, #388e3c);
}

.professional-plan:hover {
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.4) 0%, rgba(200, 230, 201, 0.3) 50%, rgba(165, 214, 167, 0.25) 100%);
    border-color: rgba(76, 175, 80, 0.6);
    box-shadow: 
        0 20px 40px rgba(76, 175, 80, 0.25),
        0 8px 20px rgba(76, 175, 80, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(76, 175, 80, 0.3);
}

.gold-ott-plan {
    background: linear-gradient(135deg, rgba(243, 229, 245, 0.3) 0%, rgba(225, 190, 231, 0.2) 50%, rgba(206, 147, 216, 0.15) 100%);
    border: 1px solid rgba(156, 39, 176, 0.4);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(156, 39, 176, 0.15),
        0 4px 16px rgba(156, 39, 176, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gold-ott-plan::before {
    background: linear-gradient(90deg, #9c27b0, #7b1fa2);
}

.gold-ott-plan:hover {
    background: linear-gradient(135deg, rgba(243, 229, 245, 0.4) 0%, rgba(225, 190, 231, 0.3) 50%, rgba(206, 147, 216, 0.25) 100%);
    border-color: rgba(156, 39, 176, 0.6);
    box-shadow: 
        0 20px 40px rgba(156, 39, 176, 0.25),
        0 8px 20px rgba(156, 39, 176, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(156, 39, 176, 0.3);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: var(--spacing-1) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.plan-badge i {
    font-size: var(--font-size-xs);
}

.plan-header {
    text-align: center;
    margin-bottom: var(--spacing-5);
    position: relative;
    z-index: 2;
}

.plan-icon {
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-2);
    color: white;
    font-size: 9px;
    box-shadow: var(--shadow-sm);
}

.plan-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-1);
    margin-bottom: var(--spacing-4);
}

.currency {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 600;
}

.amount {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.period {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.plan-discount {
    background: var(--gradient-secondary);
    color: white;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    text-align: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: var(--spacing-3);
    box-shadow: var(--shadow-sm);
}

.plan-features {
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-4);
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    padding: var(--spacing-2);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(2px);
    border-color: rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    line-height: 1.3;
}

.plan-disclaimer {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-top: var(--spacing-2);
    font-style: italic;
}

/* Consistent Button Styling for All Plans */
.plan-card .btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.plan-card .btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.plan-card .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .nav-dropdown .dropdown-toggle {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        padding: 20px 30px !important;
        color: #0f172a !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        flex-direction: row !important;
        white-space: nowrap !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .nav-dropdown .dropdown-toggle i {
        margin-left: var(--spacing-1);
        font-size: 0.8rem;
        flex-shrink: 0;
        display: inline-block !important;
    }
    
    /* Ensure text doesn't stack vertically */
    .nav-dropdown .dropdown-toggle::before,
    .nav-dropdown .dropdown-toggle::after {
        display: none !important;
    }
    
    /* Ensure button is always clickable */
    .nav-dropdown .dropdown-toggle {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-lg);
        margin-top: 0;
        display: block;
        width: 100%;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        pointer-events: none; /* Prevent interference with toggle button */
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto; /* Enable clicks on dropdown items when active */
    }
    
    .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        color: var(--text-primary);
        padding: var(--spacing-3) var(--spacing-4);
        text-align: center;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: none;
    }
    
    .dropdown-item.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        font-weight: 600;
    }
}
.terms-section {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.terms-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.terms-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: var(--spacing-4);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
}

.terms-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.terms-text p {
    margin-bottom: var(--spacing-4);
}

.terms-text p:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-4) 0;
}

.terms-list li {
    position: relative;
    padding-left: var(--spacing-6);
    margin-bottom: var(--spacing-2);
    color: var(--text-secondary);
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design for Terms */
@media (max-width: 768px) {
    .terms-card {
        padding: var(--spacing-6);
        margin-bottom: var(--spacing-6);
    }
    
    .terms-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: var(--spacing-4);
    }
    
    .terms-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-3);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .terms-header h2 {
        font-size: 1.5rem;
    }
    
    .terms-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .terms-list li {
        padding-left: var(--spacing-4);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .terms-card {
        padding: var(--spacing-4);
    }
    
    .terms-header h2 {
        font-size: 1.3rem;
    }
    
    .terms-text {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .category-header h2 {
        font-size: 2rem;
    }
    
    .category-header p {
        font-size: 1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .plan-card {
        padding: var(--spacing-4);
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 2rem;
    }
    
    .plan-features {
        gap: var(--spacing-3);
    }
    
    .feature {
        padding: var(--spacing-2);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content {
        gap: var(--spacing-1);
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
}

/* Entertainment Preview Section - Exclusive Light Offer Popup */
.entertainment-preview {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #fff9c4 0%, #fef3c7 25%, #fde68a 50%, #fbbf24 75%, #f59e0b 100%);
    position: relative;
    overflow: visible;
    border: 3px solid #f59e0b;
    border-radius: var(--radius-2xl);
    margin: var(--spacing-6) var(--spacing-4);
    box-shadow: 
        0 0 0 6px rgba(245, 158, 11, 0.15),
        0 0 0 12px rgba(245, 158, 11, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: exclusiveEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1), entertainmentGlow 4s ease-in-out infinite;
}

@keyframes entertainmentGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 6px rgba(245, 158, 11, 0.15),
            0 0 0 12px rgba(245, 158, 11, 0.08),
            0 20px 40px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 0 0 6px rgba(245, 158, 11, 0.25),
            0 0 0 12px rgba(245, 158, 11, 0.15),
            0 20px 40px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            0 0 30px rgba(245, 158, 11, 0.3);
    }
}

@keyframes exclusiveEntrance {
    0% {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
    60% {
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.entertainment-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24, #fde68a, #fef3c7, #fff9c4, #f59e0b);
    border-radius: var(--radius-2xl);
    z-index: -1;
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}

.entertainment-preview::after {
    content: '✨ EXCLUSIVE OFFER ✨';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: var(--spacing-2) var(--spacing-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: exclusiveBounce 2.5s ease-in-out infinite;
    z-index: 10;
}

@keyframes exclusiveBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-6px);
    }
    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.entertainment-preview .section-header h2 {
    color: #1f2937;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: var(--font-size-4xl);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

.entertainment-preview .section-header p {
    color: #374151;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: var(--font-size-lg);
    font-weight: 600;
    animation: subtitleShimmer 2.5s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% {
        text-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
    }
}

@keyframes subtitleShimmer {
    0%, 100% {
        color: #374151;
    }
    50% {
        color: #f59e0b;
    }
}

.entertainment-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-12);
    perspective: 1000px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.entertainment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: none;
    animation: none;
}

.entertainment-card:nth-child(1) {
    animation-delay: 0s;
}

.entertainment-card:nth-child(2) {
    animation-delay: 1.5s;
}

.entertainment-card:nth-child(3) {
    animation-delay: 3s;
}

.entertainment-card:nth-child(4) {
    animation-delay: 4.5s;
}

.entertainment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

@keyframes cardFloat {
    0%, 100% {
        transform: rotateY(-3deg) rotateX(3deg) translateY(0px);
    }
    50% {
        transform: rotateY(-1deg) rotateX(1deg) translateY(-8px);
    }
}

.entertainment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.8s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.entertainment-card:hover::before {
    left: 100%;
    animation-play-state: paused;
}

.entertainment-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.entertainment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
    color: white;
    font-size: var(--font-size-2xl);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.entertainment-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.entertainment-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
    line-height: 1.5;
}

.entertainment-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #667eea;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dynamic Card Styles - Simplified for mobile compatibility */
.dynamic-card-1 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: none;
}

.dynamic-card-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: none;
}

.dynamic-card-3 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: none;
}

.dynamic-card-4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: none;
}

/* Card Header Styles */
.card-header {
    margin-bottom: var(--spacing-4);
}

.offer-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    display: inline-block;
    margin-bottom: var(--spacing-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: badgeWiggle 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShimmer 2s ease-in-out infinite;
}

@keyframes badgeWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-1deg);
    }
    75% {
        transform: rotate(1deg);
    }
}

@keyframes badgeShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.offer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.card-header h3 {
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--spacing-1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-header p {
    color: #ffd700;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Platform Logos */
.platform-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
    flex-wrap: wrap;
}

.platform-logo {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    animation: logoPulse 3s ease-in-out infinite;
}

.platform-logo:nth-child(1) {
    animation-delay: 0s;
}

.platform-logo:nth-child(2) {
    animation-delay: 0.5s;
}

.platform-logo:nth-child(3) {
    animation-delay: 1s;
}

.platform-logo:hover {
    transform: scale(1.15) rotate(5deg);
    background: rgba(245, 158, 11, 0.2);
    animation-play-state: paused;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-1);
}

.platform-logo i {
    font-size: var(--font-size-xl);
    color: white;
    margin-bottom: var(--spacing-1);
}

.platform-logo span {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.platform-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-1);
}

.platform-item i {
    font-size: var(--font-size-lg);
    color: white;
    margin-bottom: var(--spacing-1);
}

.platform-item span {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

/* Offer Boxes */
.offer-boxes {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.offer-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-box h4 {
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--spacing-1);
}

.offer-box p {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Sports Content */
.sports-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.sports-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
}

.sports-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sports-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.sports-logo i {
    font-size: var(--font-size-xl);
    color: white;
    margin-bottom: var(--spacing-1);
}

.sports-logo span {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

/* All Platforms */
.all-platforms {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.platform-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2);
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 60px;
}

.platform-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.platform-icon i {
    font-size: var(--font-size-lg);
    color: white;
    margin-bottom: var(--spacing-1);
}

.platform-icon span {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
}

/* Card Price */
.card-price {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-lg);
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: var(--spacing-4);
    animation: priceGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: priceShimmer 2s ease-in-out infinite;
}

.card-price:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    animation-play-state: paused;
}

@keyframes priceGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    }
}

@keyframes priceShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: var(--spacing-4);
    }
    
    .product-content h3 {
        font-size: var(--font-size-lg);
    }
}

/* Premium Services Section */
.premium-services {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    overflow: visible;
}

.premium-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="80" fill="url(%23a)"/><circle cx="800" cy="300" r="120" fill="url(%23a)"/><circle cx="400" cy="700" r="100" fill="url(%23a)"/><circle cx="600" cy="100" r="60" fill="url(%23a)"/><circle cx="100" cy="600" r="90" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    animation: float 20s ease-in-out infinite;
}

.premium-services .section-header h2,
.premium-services .section-header p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Overview Section */
.services-overview {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.service-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-6) 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-3);
    padding: var(--spacing-2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid #ff6b35;
    transition: var(--transition-fast);
}

.service-features li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.service-features li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    margin-right: var(--spacing-3);
    font-size: var(--font-size-lg);
}

.service-card .btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    margin-top: var(--spacing-4);
}

.service-card .btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    position: relative;
    overflow: visible;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="300" r="80" fill="url(%23a)"/><circle cx="700" cy="200" r="100" fill="url(%23a)"/><circle cx="500" cy="600" r="60" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
}

.features .section-header h2,
.features .section-header p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    animation: featureFloat 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    animation: featureShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes featureShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(79, 172, 254, 0.2);
    animation-play-state: paused;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    color: white;
    font-size: var(--font-size-3xl);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: var(--spacing-20) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-4);
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-8);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-secondary);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #feca57, #ffd93d, #feca57);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 70px; /* taller to allow bigger/zoomed logos */
    z-index: 5; /* below navbar (1000) but above ribbon background */
    pointer-events: none;
    /* Four logos across the ribbon with equal gaps */
    background-image: url('../assets/strip-logo.png'), url('../assets/strip-logo.png'), url('../assets/strip-logo.png'), url('../assets/strip-logo.png');
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: 12.5% center, 37.5% center, 62.5% center, 87.5% center; /* 4 evenly spaced spots */
    background-size: 280px auto, 280px auto, 280px auto, 280px auto; /* zoomed size */
}

@media (max-width: 768px) {
    .footer::after {
        /* Show only one logo on mobile */
        background-image: url('../assets/strip-logo.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 220px auto; /* Adjust size for mobile */
        height: 70px; /* Adjust height for mobile */
        top: 24px; /* Adjust vertical position for mobile */
        z-index: 5;
    }
}

@media (max-width: 480px) {
    .footer::after {
        background-size: 180px auto; /* Smaller size for very small screens */
        height: 60px;
        top: 26px;
        z-index: 5;
    }
}

.footer-content {
    position: relative;
    z-index: 3;
    padding: var(--spacing-20) var(--spacing-6) var(--spacing-12);
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-12);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-8);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
}

.footer-section {
    position: relative;
    padding: var(--spacing-8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.footer-section:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.footer-section:nth-child(2) {
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(150, 206, 180, 0.1));
    border-radius: 50px 20px 50px 20px;
}

.footer-section:nth-child(3) {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.1), rgba(255, 107, 107, 0.1));
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.footer-section:nth-child(4) {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
    border-radius: 20px 50px 20px 50px;
}

.footer-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.footer-section:nth-child(1) h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.footer-section:nth-child(2) h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #45b7d1, #96ceb4);
    border-radius: 20px;
}

.footer-section:nth-child(3) h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #feca57, #ff6b6b);
    border-radius: 2px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.footer-section:nth-child(4) h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #45b7d1);
    border-radius: 20px 2px 20px 2px;
}

.footer-section ul {
    list-style: none; /* remove dots */
    padding-left: 0; /* align with card edge */
    margin: 0; /* reset default margins */
}

.footer-section ul li {
    margin-bottom: var(--spacing-2);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    display: inline-block;
    position: relative;
    border-radius: 8px;
    margin: 2px 0;
}

.footer-section:nth-child(1) ul li a {
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid #ff6b6b;
}

.footer-section:nth-child(2) ul li a {
    background: rgba(69, 183, 209, 0.1);
    border-left: 3px solid #45b7d1;
}

.footer-section:nth-child(3) ul li a {
    background: rgba(254, 202, 87, 0.1);
    border-left: 3px solid #feca57;
}

.footer-section:nth-child(4) ul li a {
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ecdc4;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(8px) scale(1.02);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-4);
}

.footer-logo .logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-4);
}

.social-links {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.social-link:nth-child(1) { border-radius: 50%; background: rgba(255, 255, 255, 0.1); }

.social-link:nth-child(2) { border-radius: 50%; background: rgba(255, 255, 255, 0.1); }

.social-link:nth-child(3) { border-radius: 50%; background: rgba(255, 255, 255, 0.1); }

.social-link:nth-child(4) { border-radius: 50%; background: rgba(255, 255, 255, 0.1); }

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-left: 4px solid #ff6b6b;
}

.contact-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(150, 206, 180, 0.1));
    border-left: 4px solid #45b7d1;
}

.contact-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.1), rgba(255, 107, 107, 0.1));
    border-left: 4px solid #feca57;
}

.contact-item:hover {
    color: white;
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    color: rgba(255, 255, 255, 0.8);
    width: 24px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: white;
    transform: scale(1.2) rotate(5deg);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-12) var(--spacing-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-6);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 3;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-links a:hover::before {
    left: 100%;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--spacing-4);
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-6);
    }
    
    .entertainment-carousel {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-4);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-6);
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-6);
    }
    
    /* Reduce animation intensity on tablets */
    .hero-badge,
    .stat-item,
    .plan-card,
    .feature-card {
        animation-duration: 8s !important;
    }
}

@media (max-width: 768px) {
    /* Mobile navigation - REMOVED CONFLICTING RULES */

    /* REMOVED CONFLICTING RULES */

    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        right: 0;
        top: 0;
        padding: var(--spacing-2);
        margin: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
        padding: 0 var(--spacing-4);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-3);
    }

    .hero-badge {
        font-size: var(--font-size-sm);
        padding: var(--spacing-2) var(--spacing-3);
        margin-bottom: var(--spacing-4);
        max-width: 90%;
        text-align: center;
        word-wrap: break-word;
    }

    .hero-badge i {
        font-size: var(--font-size-sm);
    }

    .hero-content {
        padding-top: 80px;
        padding-left: var(--spacing-4);
        padding-right: var(--spacing-4);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
        max-width: 400px;
    }

    .stat-item {
        min-height: 120px;
        padding: var(--spacing-4);
    }

    .stat-number {
        font-size: var(--font-size-3xl);
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        max-width: 400px;
    }

    .plan-card {
        min-height: 350px;
        padding: var(--spacing-5);
    }

    .plan-card.featured {
        transform: none;
        margin: 0;
    }

    .entertainment-carousel {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
        max-width: 400px;
    }
    
    .entertainment-card {
        min-height: 250px;
        padding: var(--spacing-4);
    }
    
    .platform-logos {
        gap: var(--spacing-2);
        flex-wrap: wrap;
    }
    
    .platform-logo {
        width: 40px;
        height: 40px;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2);
    }
    
    .offer-boxes {
        gap: var(--spacing-2);
    }
    
    .offer-box {
        padding: var(--spacing-2);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        max-width: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        max-width: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-3);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-4);
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: var(--font-size-3xl);
    }

    .section-header p {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-3);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-2);
    }

    .section-header h2 {
        font-size: var(--font-size-2xl);
    }

    .section-header p {
        font-size: var(--font-size-base);
    }

    .plan-card,
    .entertainment-card,
    .feature-card {
        padding: var(--spacing-4);
    }

    .btn {
        padding: var(--spacing-2) var(--spacing-4);
        font-size: var(--font-size-sm);
    }

    .btn-large {
        padding: var(--spacing-3) var(--spacing-6);
        font-size: var(--font-size-base);
    }

    .nav-container {
        padding: var(--spacing-2);
        min-height: 50px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        width: 80px;
        height: 50px;
        flex-shrink: 0;
    }

    /* Ensure mobile menu is visible and properly positioned */
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
        right: 0;
        top: 0;
        padding: var(--spacing-2);
        margin: 0;
        flex-shrink: 0;
        max-width: 50px;
        max-height: 50px;
        overflow: visible;
    }
    
    /* Ensure hamburger button stays within screen */
    .navbar {
        overflow: visible;
    }
    
    .nav-container {
        overflow: visible;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
        max-width: 350px;
        padding: 0 var(--spacing-4);
    }

    .stat-item {
        padding: var(--spacing-4);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        backdrop-filter: blur(10px);
        min-height: 100px;
    }

    .nav-link.login-btn {
        margin: var(--spacing-4) 0;
        margin-left: 0;
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
}

/* Extra small screens - ensure hamburger is always visible */
@media (max-width: 360px) {
    .nav-container {
        padding: var(--spacing-1) var(--spacing-2);
        min-height: 45px;
    }
    
    .nav-toggle {
        padding: var(--spacing-1);
        max-width: 40px;
        max-height: 40px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }
    
    .logo {
        width: 70px;
        height: 40px;
    }
}

/* AWESOME RIGHT-SLIDING NAVIGATION MENU */
@media (max-width: 768px) {
    /* Prevent screen from moving left/right - TARGETED FIX */
    .container, .hero-content, .hero-text, .hero-stats {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }
    
    .hero, .hero-content, .hero-text, .hero-stats, .stat-item {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Disable problematic animations but keep navigation working */
    .hero-particles, .hero-overlay, .hero-background {
        display: none !important;
    }
    
    /* Disable sliding animations on specific elements */
    .entertainment-card, .plan-card, .feature-card {
        animation: none !important;
        transform: none !important;
    }
    
    /* NO NAVIGATION TRANSITIONS - STATIC ONLY */
    .nav-menu {
        transition: none !important; /* NO ANIMATIONS */
    }
    
    .nav-toggle .bar {
        transition: none !important; /* NO ANIMATIONS */
    }
    
    /* Disable AOS animations that cause sliding */
    [data-aos] {
        transform: none !important;
        animation: none !important;
    }
    
    /* Fix hamburger button positioning - ensure it's always visible */
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1001 !important;
        background: transparent !important;
    }
    
    /* STATIC WHITE GLASS EFFECT MENU - COVERS HALF SCREEN WIDTH */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -50% !important; /* Start off-screen to the right */
        width: 50% !important; /* Cover exactly half the screen */
        height: 100vh !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.8) 100%) !important; /* White gradient with transparency */
        backdrop-filter: blur(20px) !important; /* Glass effect */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important; /* Center all buttons */
        transform: translateX(0) !important;
        transition: none !important; /* NO ANIMATIONS */
        z-index: 99999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1), -20px 0 60px rgba(0, 0, 0, 0.05) !important; /* Lighter shadow */
        padding: 0 !important;
        overflow-y: auto !important;
        border-left: 1px solid rgba(255, 255, 255, 0.3) !important; /* Subtle border */
    }
    
    .nav-menu.active {
        right: 0 !important; /* Show menu - NO ANIMATION */
    }
    
    /* Menu Header */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.9) 100%) !important; /* More opaque glass effect header */
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center; /* Center the Menu text */
        font-size: 20px;
        font-weight: 800; /* Bolder font weight */
        color: #1e3a8a !important; /* Dark navy blue text */
        border-bottom: 2px solid rgba(30, 58, 138, 0.2) !important; /* Dark navy border */
        z-index: 1;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important; /* White text shadow for better readability */
    }
    
    /* Menu Close Button - Hidden since we use JavaScript-created button */
    .nav-menu::after {
        display: none !important;
    }
    
    /* Navigation Links Container */
    .nav-menu {
        padding-top: 60px !important; /* Space for header */
    }
    
    /* Navigation Links Styling - CENTERED */
    .nav-menu .nav-link {
        color: #0f172a !important; /* Much darker blue text for better visibility */
        padding: 20px 30px !important;
        text-align: center !important; /* CENTER ALL BUTTONS */
        display: block !important;
        width: 100% !important;
        font-size: 16px !important;
        font-weight: 600 !important; /* Bolder font weight for better visibility */
        text-decoration: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        transition: none !important; /* NO ANIMATIONS */
        background: rgba(255, 255, 255, 0.9) !important; /* More opaque white background for better contrast */
        border: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important; /* Darker border for better definition */
        position: relative !important;
        overflow: visible !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important; /* White text shadow for better readability */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important; /* More prominent shadow */
    }
    
    /* Simple Hover Effect - NO ANIMATIONS */
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 1) !important; /* Fully opaque white on hover */
        color: #0f172a !important; /* Very dark blue text on hover for maximum contrast */
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1) !important; /* Stronger white text shadow */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; /* More prominent shadow on hover */
    }
    
    .nav-menu .nav-link.active {
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 0.95) 100%) !important; /* Fully opaque white gradient */
        color: #0f172a !important; /* Very dark blue text for maximum contrast */
        border-color: rgba(0, 0, 0, 0.25) !important; /* Darker border */
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important; /* More prominent shadow */
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1) !important; /* Stronger white text shadow */
    }
    
    /* Special Login Button Styling - CENTERED */
    .nav-menu .nav-link.login-btn {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%) !important;
        color: white !important;
        margin-top: 20px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        border: 1px solid #7209b7 !important;
        text-align: center !important;
        box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3) !important;
    }
    
    .nav-menu .nav-link.login-btn:hover {
        background: linear-gradient(135deg, #7209b7 0%, #533483 25%, #0f3460 50%, #16213e 75%, #1a1a2e 100%) !important;
        border-color: #1a1a2e !important;
    }
    
    /* Clean white gradient background with glass effect */
    .nav-menu {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.8) 100%) !important; /* White gradient with transparency */
    }
}

/* Enhanced Navigation for Larger Screens */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: var(--spacing-4) !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu::before,
    .nav-menu::after {
        display: none !important;
    }
    
    .nav-menu .nav-link {
        color: var(--text-primary) !important;
        padding: var(--spacing-1) var(--spacing-3) !important;
        text-align: center !important;
        display: inline-block !important;
        width: auto !important;
        max-width: none !important;
        font-size: var(--font-size-base) !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-radius: var(--radius-md) !important;
        margin: 0 !important;
        transition: var(--transition-fast) !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        position: relative !important;
        overflow: visible !important;
        text-shadow: none !important;
    }
    
    .nav-menu .nav-link::before {
        display: none !important;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--primary-color) !important;
        transform: none !important;
        box-shadow: none !important;
        border-color: transparent !important;
    }
    
    .nav-menu .nav-link.active {
        color: var(--primary-color) !important;
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }
    
    .nav-menu .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient-primary);
        border-radius: var(--radius-full);
    }
    
    .nav-menu .nav-link.login-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        margin: 0 !important;
        font-weight: 600 !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3) !important;
        border: none !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .nav-menu .nav-link.login-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(79, 172, 254, 0.4) !important;
    }
}

/* Extra small screens - ensure menu works perfectly */
@media (max-width: 480px) {
    .nav-menu {
        width: 60% !important; /* Slightly wider on very small screens */
        right: -60% !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu .nav-link {
        padding: 15px 20px !important;
        font-size: 1rem !important;
        width: 85% !important;
    }
    
    .nav-menu .nav-link.login-btn {
        margin-top: 20px !important;
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }
}

/* Ultra small screens */
@media (max-width: 360px) {
    .nav-menu {
        width: 70% !important;
        right: -70% !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu .nav-link {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        width: 80% !important;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Basic mobile layout */
    .container {
        padding: 0 var(--spacing-4);
    }
    
    /* Hero section mobile adjustments */
    .hero-content {
        padding-top: 80px;
        padding-left: var(--spacing-4);
        padding-right: var(--spacing-4);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-2);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-3);
        width: 100%;
        max-width: 300px;
        align-items: center;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-4);
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 var(--spacing-4);
    }
    
    .stat-item {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Page Header Styles */
.page-header {
    padding: var(--spacing-20) var(--spacing-6) var(--spacing-20);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: heroGradientShift 15s ease-in-out infinite;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.2"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="80" fill="url(%23a)"/><circle cx="800" cy="300" r="120" fill="url(%23a)"/><circle cx="400" cy="700" r="100" fill="url(%23a)"/><circle cx="600" cy="100" r="60" fill="url(%23a)"/><circle cx="100" cy="600" r="90" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    animation: floatParticles 20s ease-in-out infinite;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    animation: overlayPulse 8s ease-in-out infinite;
}

.header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.header-content h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-4);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
    animation: titleSlideIn 1.5s ease-out, titleGlow 3s ease-in-out infinite alternate;
}

.header-content p {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: subtitleFadeIn 2s ease-out 0.5s both, subtitleFloat 4s ease-in-out infinite 2s;
}

/* About Page Styles */
.about-content {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
}

.content-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    color: var(--text-primary);
}

.content-text p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
    line-height: 1.7;
    text-align: justify;
}

.about-image {
    width: 120%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: var(--spacing-4) 0;
}

.isp-description {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-top: var(--spacing-6);
    margin-bottom: var(--spacing-4);
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
    padding: var(--spacing-4);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.mission-vision {
    padding: var(--spacing-20) 0;
    background: var(--bg-secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    color: white;
    font-size: var(--font-size-3xl);
}

.mv-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Timeline Styles */
.journey-timeline {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-12);
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--spacing-8);
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--spacing-8);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
    top: 20px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    top: 20px;
}

.timeline-content {
    background: white;
    padding: var(--spacing-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-year {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-sm);
    display: inline-block;
    margin-bottom: var(--spacing-3);
}

.timeline-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: var(--spacing-20) 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
    color: white;
    font-size: var(--font-size-2xl);
}

.value-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

.privacy-section {
    width: 100%;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    height: 100%;
}

.privacy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
}


.privacy-card h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
    line-height: 1.3;
}

.privacy-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-4);
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.privacy-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.privacy-points {
    margin-top: var(--spacing-4);
}

.privacy-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-4);
    padding: var(--spacing-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition-normal);
}

.privacy-point:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.privacy-point:last-child {
    margin-bottom: 0;
}


.privacy-point p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.privacy-point p strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-grid {
        gap: var(--spacing-6);
    }
    
    .privacy-card {
        padding: var(--spacing-6);
    }
    
    
    .privacy-card h2 {
        font-size: var(--font-size-lg);
    }
    
    .privacy-point {
        padding: var(--spacing-2);
        margin-bottom: var(--spacing-3);
    }
    
    
    .privacy-point:hover {
        transform: translateX(2px);
    }
}

/* Navigation Close Button */
.nav-close-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-close-btn {
        display: flex !important;
    }
}

/* Responsive Design for About Page Images */
@media (max-width: 768px) {
    .about-image {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: var(--spacing-4) auto;
        display: block;
    }
    
    .content-image {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 250px;
        margin: var(--spacing-3) auto;
    }
}
.contact-section {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-8);
    color: var(--text-primary);
}

.contact-form {
    background: white;
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-6);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-3);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-4);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: var(--spacing-20) 0;
    background: var(--bg-secondary);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    border-radius: var(--radius-xl);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-20) 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--primary-color);
    color: white;
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 var(--spacing-6);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: var(--spacing-6);
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: var(--spacing-12);
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .header-content p {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: var(--font-size-3xl);
    }

    .hero-badge {
        font-size: var(--font-size-xs);
        padding: var(--spacing-1) var(--spacing-2);
        margin-bottom: var(--spacing-3);
        max-width: 95%;
        line-height: 1.2;
    }

    .hero-badge i {
        font-size: var(--font-size-xs);
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-stats {
        gap: var(--spacing-4);
        margin-top: var(--spacing-4);
    }

    .stat-item {
        padding: var(--spacing-3);
        min-width: 120px;
    }
    
    .content-text h2 {
        font-size: var(--font-size-2xl);
    }
    
    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: var(--font-size-2xl);
    }
    
    .contact-form {
        padding: var(--spacing-6);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-8) 0;
    }
}



/* WhatsApp Floating Chat Button */
.whatsapp-chat-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    background: #22c35e;
}
.whatsapp-chat-button i,
.whatsapp-chat-button svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
}
@media (max-width: 480px) {
    .whatsapp-chat-button { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}
