/* ============================================
   TVR.DIGITAL - Modern Premium Design System
   Version: 3.0 | 2026 Redesign
   ============================================ */

/* --- Custom Fonts --- */
@font-face {
    font-family: 'BigTextFont';
    src: url('../fonts/bigText.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'NormalTextFont';
    src: url('../fonts/normalText.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'OtherTextFont';
    src: url('../fonts/otherText.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'LogoFont';
    src: url('../fonts/logo.otf') format('opentype');
    font-display: swap;
}

.font-logo { font-family: 'LogoFont', 'BigTextFont', sans-serif !important; }

/* --- CSS Custom Properties --- */
:root {
    --primary: #8A2BE2;
    --primary-light: #A855F7;
    --primary-dark: #6B21A8;
    --accent: #C084FC;
    --accent-glow: rgba(138, 43, 226, 0.4);
    --neon-purple: #B45CFF;
    --neon-blue: #6366F1;
    --dark-bg: #030014;
    --dark-card: #0F0A1E;
    --dark-card-hover: #1A1232;
    --dark-surface: #140E26;
    --border-glow: rgba(138, 43, 226, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --text-muted: #6B7280;
    --gradient-primary: linear-gradient(135deg, #8A2BE2, #6366F1, #A855F7);
    --gradient-hero: linear-gradient(135deg, #0F0520 0%, #1A0535 30%, #0D0D2B 60%, #030014 100%);
    --gradient-card: linear-gradient(145deg, rgba(15, 10, 30, 0.8), rgba(20, 14, 38, 0.6));
    --glass-bg: rgba(15, 10, 30, 0.6);
    --glass-border: rgba(138, 43, 226, 0.15);
    --shadow-neon: 0 0 20px rgba(138, 43, 226, 0.15), 0 0 60px rgba(138, 43, 226, 0.05);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 40px rgba(138, 43, 226, 0.2);
    --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Global Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'NormalTextFont', 'Inter', system-ui, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    animation: pageLoad 0.5s ease-out;
}

.font-heading { font-family: 'BigTextFont', 'Inter', sans-serif; }

/* --- Modern Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--neon-blue)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--primary-light), var(--primary)); }
::selection { background: rgba(138, 43, 226, 0.3); color: #fff; }

@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#main-header { background: transparent; transition: var(--transition-default); z-index: 100; }
#main-header.header-scrolled {
    background: rgba(3, 0, 20, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-link {
    position: relative; color: var(--text-secondary); font-weight: 500;
    transition: var(--transition-default); padding: 0.5rem 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--gradient-primary); border-radius: 2px; transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-btn-primary {
    background: var(--gradient-primary); color: white; font-weight: 600;
    padding: 0.5rem 1.5rem; border-radius: 9999px; transition: var(--transition-default);
    box-shadow: 0 2px 15px var(--accent-glow); border: none; position: relative; overflow: hidden;
    text-decoration: none; display: inline-block;
}
.nav-btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.nav-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 25px var(--accent-glow); }
.nav-btn-primary:hover::before { opacity: 1; }

.nav-btn-secondary {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: white; font-weight: 600;
    padding: 0.5rem 1.5rem; border-radius: 9999px; transition: var(--transition-default);
    text-decoration: none; display: inline-block;
}
.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-hero); position: relative; overflow: hidden;
    min-height: 85vh; display: flex; align-items: center;
}
.hero-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite; z-index: 0;
}
.hero-section::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(138, 43, 226, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.03) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 1;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(3%, 1%) rotate(0.5deg); }
}

/* Floating Orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; animation: orbFloat 15s ease-in-out infinite; z-index: 0; }
.hero-orb-1 { width: 400px; height: 400px; background: rgba(138, 43, 226, 0.3); top: -10%; right: -5%; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(99, 102, 241, 0.25); bottom: -10%; left: -5%; animation-delay: -5s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(168, 85, 247, 0.2); top: 40%; left: 30%; animation-delay: -10s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

@keyframes text-gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-heading {
    background: linear-gradient(90deg, rgba(210,190,255,0.95), rgba(180,160,240,0.85), rgba(160,170,255,0.8), rgba(200,180,250,0.9), rgba(210,190,255,0.95));
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: text-gradient-animation 8s ease-in-out infinite;
    line-height: 1.15;
}

/* Hero stat counters */
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; }
.hero-stat { text-align: center; }
.hero-stat-number {
    font-size: 2.5rem; font-weight: 800;
    background: var(--gradient-primary); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2;
}
.hero-stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* --- 3D Depth Heading --- */
/* Hero split layout */
.hero-split {
    display: flex; align-items: center; justify-content: space-between; gap: 3rem;
    min-height: 60vh;
}
.hero-left { flex: 1; text-align: left; }
.hero-right {
    flex-shrink: 0; display: flex; flex-direction: column; gap: 1rem;
    align-items: stretch; min-width: 250px;
}

@media (max-width: 768px) {
    .hero-split { flex-direction: column; text-align: center; gap: 2rem; }
    .hero-left { text-align: center; }
    .hero-right { align-items: center; width: 100%; }
}

.hero-depth-container {
    perspective: 1000px; margin-bottom: 2rem;
}
.hero-depth-text {
    position: relative; display: inline-block;
    font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; line-height: 1.15;
}
.hero-depth-layer {
    display: block; white-space: normal;
}
.hero-depth-back {
    position: absolute; inset: 0;
    color: rgba(99, 102, 241, 0.08);
    transform: translateZ(-80px) translateY(12px) scale(1.04);
    filter: blur(6px);
    -webkit-text-fill-color: rgba(99, 102, 241, 0.08);
}
.hero-depth-mid {
    position: absolute; inset: 0;
    color: rgba(138, 43, 226, 0.15);
    transform: translateZ(-40px) translateY(6px) scale(1.02);
    filter: blur(2px);
    -webkit-text-fill-color: rgba(138, 43, 226, 0.15);
}
.hero-depth-front {
    position: relative;
    transform: translateZ(0);
}

/* Enhanced hero animations */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes heroPulse {
    0%, 100% { filter: blur(60px) brightness(1); }
    50% { filter: blur(70px) brightness(1.3); }
}
.hero-orb { animation: orbFloat 15s ease-in-out infinite, heroPulse 8s ease-in-out infinite; }
.hero-depth-container { animation: heroFloat 6s ease-in-out infinite; }

.download-button {
    position: relative; display: inline-flex; align-items: center; gap: 0.75rem;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d); padding: 1rem 2.5rem; border-radius: 1rem;
    font-weight: 700; font-size: 1.1rem; color: white; transition: var(--transition-bounce);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none;
}
.download-button::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: left 0.6s ease;
}
.download-button:hover { transform: translateY(-4px) scale(1.02); }
.download-button:hover::before { left: 100%; }

.download-button-tv {
    background: linear-gradient(135deg, #6366f1, #4f46e5, #4338ca) !important;
}
.download-button-tv:hover {
}

/* ============================================
   HERO CAROUSEL / SLIDER
   ============================================ */
.hero-carousel {
    position: relative; width: 100%; overflow: hidden;
    padding-top: 1rem; padding-bottom: 1rem;
}
.hero-slides {
    display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.hero-slide {
    min-width: 100%; box-sizing: border-box;
}

/* Carousel Arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-arrow:hover {
    background: rgba(138, 43, 226, 0.25); border-color: rgba(138, 43, 226, 0.5);
    color: #fff;
}
.hero-arrow-left { left: 1.5rem; }
.hero-arrow-right { right: 1.5rem; }

/* Indicator Dots */
.hero-dots {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.6rem; z-index: 20;
}
.hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer; transition: all 0.35s ease; padding: 0;
}
.hero-dot.active {
    background: var(--primary); border-color: var(--primary);
    transform: scale(1.2);
}
.hero-dot:hover:not(.active) {
    background: rgba(255,255,255,0.4);
}

/* Slide 2 – Emigrant Promo */
.hero-emigrant-slide {
    display: flex; align-items: center; gap: 3rem;
    min-height: 60vh; padding: 2rem 0;
}
.hero-emigrant-left {
    flex: 1; text-align: left;
}
.hero-emigrant-right {
    flex-shrink: 0; max-width: 340px; width: 100%;
}
.hero-emigrant-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 2rem; padding: 0.4rem 1.2rem; font-size: 0.8rem;
    color: #34d399; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.hero-emigrant-title {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 1rem;
    background: linear-gradient(135deg, #34d399, #10b981, #6ee7b7, #a7f3d0);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: text-gradient-animation 8s ease-in-out infinite;
}
.hero-emigrant-subtitle {
    color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7;
    max-width: 500px; margin: 0 0 2rem;
}
.hero-flags-grid {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.hero-flag-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2rem; padding: 0.35rem 0.85rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.75); transition: all 0.3s ease;
}
.hero-flag-pill img {
    width: 20px; height: 14px; border-radius: 2px; object-fit: cover;
}
.hero-flag-pill:hover {
    background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}
.hero-emigrant-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    padding: 0.85rem 2.2rem; border-radius: 0.85rem;
    color: white; font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-emigrant-cta:hover {
    transform: translateY(-3px) scale(1.02);
}

/* ============================================
   GLASS CARD SYSTEM
   ============================================ */
.glass-card {
    background: var(--gradient-card); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 1.25rem; box-shadow: var(--shadow-card);
    transition: var(--transition-default); position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
}
.glass-card:hover { border-color: rgba(138, 43, 226, 0.3); box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-title { position: relative; display: inline-block; margin-bottom: 2rem; }
.section-title::after {
    content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 3px;
    background: var(--gradient-primary); border-radius: 3px;
}
.section-title-center::after { left: 50%; transform: translateX(-50%); }

/* ============================================
   TAB BUTTONS
   ============================================ */
.tab-button {
    position: relative; padding: 0.75rem 2rem; font-weight: 600; color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-default); cursor: pointer; font-size: 0.95rem;
}
.tab-button:first-child { border-radius: 0.75rem 0 0 0.75rem; }
.tab-button:last-child { border-radius: 0 0.75rem 0.75rem 0; }
.tab-button:only-child { border-radius: 0.75rem; }
.tab-button:hover { background: rgba(138, 43, 226, 0.1); border-color: rgba(138, 43, 226, 0.2); color: var(--text-primary); }
.tab-button.active, .tab-button.bg-primary {
    background: var(--gradient-primary) !important; border-color: transparent !important;
    color: white !important; box-shadow: 0 4px 20px var(--accent-glow);
}
.tab-button.tab-business-active {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8) !important; border-color: transparent !important;
    color: white !important; box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}
.tab-button.tab-emigrant-active {
    background: linear-gradient(135deg, #10b981, #059669, #047857) !important; border-color: transparent !important;
    color: white !important; box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* ── Emigrant Country Slider ── */
.country-nav-wrap {
    display: flex; align-items: center; gap: 0.75rem; position: relative;
}
.country-nav-arrow {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary); cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: all 0.25s ease;
    font-size: 0.85rem;
}
.country-nav-arrow:hover {
    background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.35);
    color: #6ee7b7; box-shadow: 0 0 12px rgba(16,185,129,0.15);
}
.emigrant-country-slider-wrap {
    overflow-x: auto; overflow-y: hidden; flex: 1; position: relative;
    scroll-behavior: smooth; scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}
.emigrant-country-slider-wrap::-webkit-scrollbar { display: none; }
.emigrant-country-slider {
    display: flex; gap: 0.6rem; padding: 0.25rem 0.5rem;
    min-width: min-content;
}
.country-chip {
    display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
    padding: 0.5rem 1.1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary); cursor: pointer; transition: all 0.25s ease;
}
.country-chip:hover { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.25); color: var(--text-primary); }
.country-chip.active {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.1));
    border-color: rgba(16,185,129,0.4); color: #6ee7b7;
    box-shadow: 0 0 16px rgba(16,185,129,0.15);
}
.country-chip-flag { width: 24px; height: 18px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.flag-icon { width: 24px; height: 18px; border-radius: 2px; object-fit: cover; display: inline-block; vertical-align: middle; }
.flag-icon-lg { width: 28px; height: 21px; border-radius: 3px; }
.country-chip-name { font-size: 0.85rem; }

/* Package card green variant for emigrant */
.package-card-wrap.package-emigrant::before {
    background: linear-gradient(135deg, #10b981, #059669, #34d399) !important;
}
.package-card-wrap.package-emigrant:hover { box-shadow: 0 0 20px rgba(16, 185, 129, 0.25), 0 0 60px rgba(16, 185, 129, 0.08); }
.package-card-wrap.package-emigrant .package-price-big {
    background: linear-gradient(135deg, #6ee7b7, #10b981, #059669); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.package-card-wrap.package-emigrant .package-duration-badge {
    background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); color: #6ee7b7;
}
.package-card-wrap.package-emigrant .package-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}
.package-card-wrap.package-emigrant .package-buy-btn:hover {
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}
.package-card-wrap.package-emigrant .package-feature-item i {
    color: #34d399;
}

/* Responsive: smaller arrows on mobile */
@media (max-width: 640px) {
    .country-nav-arrow { width: 32px; height: 32px; font-size: 0.75rem; }
    .country-nav-wrap { gap: 0.4rem; }
}

/* ============================================
   PACKAGE CARDS (Gradient style)
   ============================================ */
.package-card-wrap {
    position: relative; border-radius: 1.25rem; overflow: hidden;
    transition: var(--transition-default);
}
.package-card-wrap::before {
    content: ''; position: absolute; inset: 0; border-radius: 1.25rem;
    padding: 2px; background: var(--gradient-primary); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.4; transition: opacity 0.3s ease;
}
.package-card-wrap:hover::before { opacity: 0.8; }
.package-card-wrap:hover { transform: translateY(-8px); box-shadow: var(--shadow-neon); }

.package-price-big {
    font-size: 3rem; font-weight: 800; line-height: 1.1;
    background: var(--gradient-primary); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

.package-duration-badge {
    background: rgba(138, 43, 226, 0.15); border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 9999px; padding: 0.35rem 1rem; font-size: 0.8rem; font-weight: 600;
    color: var(--accent); backdrop-filter: blur(10px);
}

.package-buy-btn {
    display: block; width: 100%; text-align: center; padding: 0.875rem; border-radius: 0.875rem;
    font-weight: 700; background: var(--gradient-primary); color: white;
    box-shadow: 0 4px 20px var(--accent-glow); transition: var(--transition-default);
    text-decoration: none; border: none; cursor: pointer;
}
.package-buy-btn:hover { box-shadow: 0 6px 30px rgba(138, 43, 226, 0.5); transform: translateY(-2px); }

.package-feature-item {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0;
    color: var(--text-secondary); font-size: 0.9rem;
}
.package-feature-item i { color: var(--primary-light); width: 1.25rem; text-align: center; }

/* Package card blue variant for corporate */
.package-card-wrap.package-corporate::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #6366f1) !important;
}
.package-card-wrap.package-corporate:hover { box-shadow: 0 0 20px rgba(59, 130, 246, 0.25), 0 0 60px rgba(59, 130, 246, 0.08); }
.package-card-wrap.package-corporate .package-price-big {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #6366f1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.package-card-wrap.package-corporate .package-duration-badge {
    background: rgba(59, 130, 246, 0.15); border-color: rgba(59, 130, 246, 0.3); color: #93c5fd;
}
.package-card-wrap.package-corporate .package-buy-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.package-card-wrap.package-corporate .package-buy-btn:hover {
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}
.package-card-wrap.package-corporate .package-feature-item i {
    color: #60a5fa;
}

/* ============================================
   TV CHANNELS CATALOG  (v3 – premium redesign)
   ============================================ */

/* ---- Section Header ---- */
.ch-header {
    text-align: center;
    margin-bottom: 2rem;
}
.ch-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(138,43,226,0.15), rgba(99,102,241,0.15));
    border: 1px solid rgba(138,43,226,0.2);
    color: #c084fc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.ch-header-badge i {
    font-size: 0.65rem;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 6px rgba(138,43,226,0.5); }
}
.ch-header-title {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'BigTextFont', 'Inter', sans-serif;
    background: linear-gradient(135deg, #fff 0%, #c084fc 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
@media(min-width:768px) { .ch-header-title { font-size: 2.5rem; } }
.ch-header-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: #7b849a;
}
.ch-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.ch-stat i {
    font-size: 0.72rem;
    color: rgba(138,43,226,0.5);
}
.ch-stat-dot {
    color: rgba(255,255,255,0.15);
    font-size: 0.6rem;
}

/* ---- Categories wrapper with arrows ---- */
.ch-cats-wrap {
    position: relative;
    margin-bottom: 1.25rem;
}
.ch-cats-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    mask-image: linear-gradient(to right, transparent 0, #000 2rem, #000 calc(100% - 2rem), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2rem, #000 calc(100% - 2rem), transparent 100%);
    padding: 0.25rem 0;
}
.ch-cats-scroll::-webkit-scrollbar { display: none; }
.ch-cats-inner {
    display: flex;
    gap: 0.45rem;
    padding: 0 1.5rem;
    width: max-content;
}
.ch-cats-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(15,10,30,0.85);
    border: 1px solid rgba(138,43,226,0.25);
    color: #c084fc;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
}
.ch-cats-arrow:hover {
    background: rgba(138,43,226,0.2);
    border-color: rgba(138,43,226,0.5);
    box-shadow: 0 0 12px rgba(138,43,226,0.2);
}
.ch-cats-arrow-l { left: -0.5rem; }
.ch-cats-arrow-r { right: -0.5rem; }
@media(max-width:639px) {
    .ch-cats-arrow { display: none; }
    .ch-cats-inner { padding: 0 0.25rem; }
    .ch-cats-scroll {
        mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 1.5rem), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 1.5rem), transparent 100%);
    }
}

/* ---- Category chip ---- */
.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 0.65rem;
    font-family: 'BigTextFont','Inter',sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.01em;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #9ca3af;
    cursor: pointer;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
}
.cat-chip-ico {
    font-size: 0.65rem;
    opacity: 0.5;
    transition: opacity 0.25s;
}
.cat-chip:hover {
    background: rgba(138,43,226,0.08);
    border-color: rgba(138,43,226,0.2);
    color: #d4c0f9;
    transform: translateY(-1px);
}
.cat-chip:hover .cat-chip-ico { opacity: 0.8; }
.cat-chip.is-on {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(138,43,226,.3);
}
.cat-chip.is-on .cat-chip-ico { opacity: 1; }
.cat-chip-label { /* inherits font */ }
.cat-chip-num {
    font-family: 'NormalTextFont','Inter',sans-serif;
    font-size: 0.6rem;
    line-height: 1;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.07);
    color: #6b7280;
    font-weight: 500;
}
.cat-chip.is-on .cat-chip-num {
    background: rgba(255,255,255,0.22);
    color: #fff;
}

/* ---- Toolbar (search + info) ---- */
.ch-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* ---- Search ---- */
.ch-search {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 380px;
}
.ch-search input {
    width: 100%;
    padding: 0.65rem 2.5rem 0.65rem 2.6rem;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.ch-search input::placeholder { color: var(--text-muted); }
.ch-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138,43,226,.12);
    background: rgba(255,255,255,0.05);
}
.ch-search-ico {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    pointer-events: none;
    transition: color 0.25s;
}
.ch-search input:focus ~ .ch-search-ico,
.ch-search:focus-within .ch-search-ico { color: var(--primary); }
.ch-search-clear {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.2s;
}
.ch-search-clear:hover {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}
.ch-search-clear.hidden { display: none; }

/* ---- Active filter indicator ---- */
.ch-active-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.6rem;
    background: rgba(138,43,226,0.06);
    border: 1px solid rgba(138,43,226,0.12);
    font-size: 0.8rem;
    color: #c084fc;
    animation: slideDown 0.25s ease-out;
}
.ch-active-filter.hidden { display: none; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.ch-filter-clear-btn {
    margin-left: auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    padding: 0.25rem 0.7rem;
    border-radius: 0.4rem;
    font-size: 0.72rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s;
}
.ch-filter-clear-btn:hover {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.2);
    color: #f87171;
}

/* ---- Stage (grid wrapper – keeps layout stable) ---- */
.ch-stage { position: relative; }

/* ---- Overlay loader ---- */
.ch-overlay {
    position: absolute; inset: 0; z-index: 6;
    display: flex; align-items: center; justify-content: center;
    background: rgba(3,0,20,.45);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    transition: opacity .15s;
}
.ch-overlay.hidden { display:none; }
.ch-spin {
    width: 36px; height: 36px;
    border: 3px solid rgba(138,43,226,.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .65s linear infinite;
}

/* ---- Grid ---- */
.ch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 0.65rem;
}
@media(min-width:640px)  { .ch-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; } }
@media(min-width:1024px) { .ch-grid { grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); } }

/* ---- Card ---- */
.tv-card {
    border-radius: 0.9rem;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.045);
    transition: transform .28s cubic-bezier(.4,0,.2,1), border-color .28s, box-shadow .28s, background .28s;
    position: relative;
}
.tv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138,43,226,.3);
    box-shadow: 0 8px 28px -6px rgba(138,43,226,.18);
    background: rgba(138,43,226,0.03);
}
.tv-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.4rem 0.6rem;
    aspect-ratio: 1;
    text-align: center;
    gap: 0.35rem;
}
.tv-card-logo {
    max-height: 46px;
    max-width: 78%;
    object-fit: contain;
    transition: transform .22s;
    flex-shrink: 0;
}
.tv-card:hover .tv-card-logo { transform: scale(1.08); }
.tv-card-name {
    font-size: 0.66rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255,255,255,.78);
    padding: 0 0.1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.tv-card:hover .tv-card-name { color: #c4b5fd; }
.tv-card-cat {
    font-size: 0.55rem;
    font-weight: 500;
    color: rgba(138,43,226,0.6);
    letter-spacing: 0.02em;
    padding: 0.1rem 0.4rem;
    border-radius: 0.3rem;
    background: rgba(138,43,226,0.06);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

/* ---- Card enter animation ---- */
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(10px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.tv-card { animation: cardFadeIn 0.35s ease-out both; }

/* ---- Pagination ---- */
.ch-pager {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.6rem;
}
.pg-row {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 0.6rem;
}
.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.45rem;
    border-radius: 0.45rem;
    font-size: 0.78rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
}
.pg-btn:hover {
    background: rgba(138,43,226,.12);
    color: #fff;
}
.pg-btn.pg-on {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    box-shadow: 0 2px 10px rgba(138,43,226,.3);
    pointer-events: none;
}
.pg-arrow { font-size: 0.68rem; }
.pg-dots  { padding: 0 0.25rem; color: var(--text-muted); font-size: 0.78rem; line-height: 2rem; }
.pg-info {
    font-size: 0.72rem;
    color: #6b7280;
}
.pg-info b { color: #c084fc; font-weight: 600; }

/* ---- Empty / Error ---- */
.ch-empty-box {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}
.ch-empty-box i {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
    background: linear-gradient(135deg, rgba(138,43,226,0.3), rgba(99,102,241,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ch-empty-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}
.ch-empty-box p  { font-size: 0.82rem; }
.ch-empty-reset {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.4rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    border: none;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
}
.ch-empty-reset:hover {
    box-shadow: 0 4px 16px rgba(138,43,226,.35);
    transform: translateY(-1px);
}

/* ============================================
   MOVIE CARDS  (v2 – premium)
   ============================================ */
.movie-card {
    display: block; position: relative; border-radius: 1rem; overflow: hidden;
    text-decoration: none; background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.04);
    transition: transform .4s cubic-bezier(.4,0,.2,1), border-color .35s, box-shadow .35s;
}
.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(138,43,226,.35);
    box-shadow: 0 16px 48px -8px rgba(138,43,226,.22), 0 0 0 1px rgba(138,43,226,.12);
}

/* -- Poster -- */
.mc-poster {
    position: relative; overflow: hidden;
    aspect-ratio: 2/3;
}
.mc-poster img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s cubic-bezier(.4,0,.2,1), filter .4s;
}
.movie-card:hover .mc-poster img { transform: scale(1.08); filter: brightness(1.1); }

/* -- Gradient overlay (always visible, stronger on hover) -- */
.mc-poster::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(3,0,20,.92) 0%,
        rgba(3,0,20,.45) 40%,
        transparent 70%);
    transition: opacity .4s;
    pointer-events: none;
}
.movie-card:hover .mc-poster::after { opacity: .85; }

/* -- Play icon on hover -- */
.mc-play {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.mc-play i {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    background: rgba(138,43,226,.7); backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,.2);
    transition: transform .3s, background .3s;
}
.movie-card:hover .mc-play { opacity: 1; }
.movie-card:hover .mc-play i { transform: scale(1.08); }

/* -- Year badge -- */
.mc-year {
    position: absolute; top: 0.6rem; right: 0.6rem; z-index: 4;
    font-size: 0.68rem; font-weight: 700; line-height: 1;
    padding: 0.25rem 0.6rem; border-radius: 0.4rem;
    background: rgba(138,43,226,.75); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12); color: #fff;
    letter-spacing: 0.02em;
}

/* -- Info area -- */
.mc-info {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    padding: 0 0.85rem 0.85rem;
    transform: translateY(4px);
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
    opacity: .85;
}
.movie-card:hover .mc-info { transform: translateY(0); opacity: 1; }

.mc-title {
    font-family: 'BigTextFont','Inter',sans-serif;
    font-size: 0.88rem; font-weight: 700; line-height: 1.25; color: #fff;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mc-subtitle {
    font-size: 0.72rem; color: rgba(255,255,255,.5); margin-top: 0.15rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* -- Rating badge (optional, if you add ratings later) -- */
.mc-rating {
    position: absolute; top: 0.6rem; left: 0.6rem; z-index: 4;
    font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.5rem;
    border-radius: 0.35rem; color: #fff;
    background: rgba(16,185,129,.8); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.1);
}

/* ============================================
   SEARCH / INPUTS / PAGINATION
   ============================================ */
.search-input-modern {
    width: 100%; padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(15, 10, 30, 0.6); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem; color: white; font-size: 0.95rem; transition: var(--transition-default); outline: none;
}
.search-input-modern::placeholder { color: var(--text-muted); }
.search-input-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.15), 0 0 20px rgba(138, 43, 226, 0.1);
    background: rgba(15, 10, 30, 0.8);
}

.pagination-link {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem; border-radius: 0.75rem;
    font-weight: 500; font-size: 0.9rem; transition: var(--transition-default); cursor: pointer;
    background: rgba(15, 10, 30, 0.6); border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}
.pagination-link:hover { background: rgba(138, 43, 226, 0.15); border-color: var(--glass-border); color: white; }
.pagination-link.active, .pagination-link.bg-primary {
    background: var(--gradient-primary) !important; color: white !important;
    border-color: transparent !important; box-shadow: 0 2px 15px var(--accent-glow);
}

/* Loader */
.loader-spinner {
    width: 48px; height: 48px; border: 3px solid rgba(138, 43, 226, 0.1);
    border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(138, 43, 226, 0.1); }
}
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* Floating particles */
.particle {
    position: absolute; border-radius: 50%; pointer-events: none;
    opacity: 0; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; transform: translateY(-10vh) scale(1); }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-90vh) scale(0.5); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-modern {
    background: linear-gradient(180deg, rgba(3, 0, 20, 0), rgba(15, 10, 30, 1) 30%);
    border-top: 1px solid var(--glass-border); position: relative;
}
.footer-modern::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 1px; background: var(--gradient-primary);
}
.footer-link { color: var(--text-muted); transition: var(--transition-default); font-size: 0.9rem; }
.footer-link:hover { color: var(--accent); padding-left: 4px; }

/* ============================================
   FORM INPUTS
   ============================================ */
.form-input-modern {
    width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: rgba(15, 10, 30, 0.6); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.875rem; color: white; font-size: 0.95rem; transition: var(--transition-default); outline: none;
}
.form-input-modern::placeholder { color: var(--text-muted); }
.form-input-modern:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.12); background: rgba(15, 10, 30, 0.8); }

.form-btn {
    width: 100%; padding: 0.875rem; border-radius: 0.875rem; font-weight: 700; font-size: 1rem;
    background: var(--gradient-primary); color: white; border: none; cursor: pointer;
    transition: var(--transition-default); box-shadow: 0 4px 20px var(--accent-glow);
    position: relative; overflow: hidden;
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(138, 43, 226, 0.5); }
.form-btn:active { transform: translateY(0); }

/* ============================================
   SWIPER OVERRIDES
   ============================================ */
.swiper-button-next, .swiper-button-prev {
    color: #FFFFFF; background: rgba(15, 10, 30, 0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center; transition: var(--transition-default);
    top: 50%; transform: translateY(-50%);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary); border-color: var(--primary); box-shadow: 0 4px 20px var(--accent-glow);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; font-weight: bold; }

/* ============================================
   SELECT / DROPDOWN
   ============================================ */
select {
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23FFFFFF"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>');
    background-position: right 0.75rem center; background-repeat: no-repeat; background-size: 1.5em 1.5em;
    background-color: var(--dark-card); color: white; border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem; padding: 0.5rem 2.5rem 0.5rem 1rem; transition: var(--transition-default);
}
select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.12); outline: none; }

/* Utility classes */
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glow-box { box-shadow: var(--shadow-neon); }
.text-glow { text-shadow: 0 0 20px var(--accent-glow); }

@media (max-width: 640px) {
    .hero-stats { gap: 1.5rem; }
    .hero-stat-number { font-size: 1.75rem; }
    .hero-section { min-height: 70vh; }
    .hero-depth-text { font-size: clamp(2.2rem, 10vw, 4rem); }
    .hero-depth-back { transform: translateY(8px) scale(1.03); }
    .hero-depth-mid { transform: translateY(4px) scale(1.015); }
    .hero-split { min-height: auto; }
    .download-button { width: 100%; justify-content: center; }
    /* Hero carousel mobile */
    .hero-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
    .hero-arrow-left { left: 0.5rem; }
    .hero-arrow-right { right: 0.5rem; }
    .hero-dots { bottom: 1rem; }
    .hero-emigrant-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
    .hero-emigrant-subtitle { font-size: 0.9rem; }
    .hero-flag-pill { padding: 0.25rem 0.6rem; font-size: 0.7rem; }
    .hero-flag-pill img { width: 16px; height: 12px; }
    .hero-emigrant-slide { min-height: auto !important; padding: 1rem 0.5rem; flex-direction: column; text-align: center; }
    .hero-emigrant-left { text-align: center; }
    .hero-emigrant-right { max-width: 100%; }
    .hero-emigrant-subtitle { margin: 0 auto 1.5rem; }
    .hero-flags-grid { justify-content: center; }
    .hero-emigrant-slide .hero-emigrant-badge { margin-left: auto; margin-right: auto; }
}

