/*
 * ============================================================================
 * TRIP IPTV - VISION 2026 DESIGN SYSTEM
 * Ultra Premium Light Theme / Conversion Optimized / SEO Focused
 * ============================================================================
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Colors */
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Neutrals */
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-light: #f1f5f9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --grad-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --grad-glow: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.7;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-white { color: white !important; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.highlight { color: var(--primary); }

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.desktop-only { display: block; }

@media (max-width: 992px) {
    .desktop-only { display: none; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.6);
}

.btn-success {
    background: var(--grad-success);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.6);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.15rem;
}

.full-width {
    width: 100%;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite linear;
    background-size: 200% 100%;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ==================== NAVBAR ==================== */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-wrapper.scrolled .navbar {
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-weight: 600;
    font-size: 15px;
    position: relative;
    color: var(--text-main);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1001;
    padding: 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

#closeMobileMenu {
    font-size: 1.5rem;
    color: var(--text-main);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
}

.mobile-links a:hover {
    color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.badge-soft {
    display: inline-block;
    background: #e0e7ff;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-sub {
    margin-bottom: 40px;
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-signals {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.trust-signals i {
    color: var(--success);
    margin-right: 5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.tv-frame {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.25);
    border: 8px solid #1f2937;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .tv-frame {
    transform: rotateY(0) rotateX(0);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--danger);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    z-index: 2;
    animation: blink 2s infinite;
}

.play-btn-overlay {
    font-size: 5rem;
    color: white;
    z-index: 2;
    opacity: 0.9;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    cursor: pointer;
    transition: 0.3s;
}

.play-btn-overlay:hover {
    transform: scale(1.1);
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    font-size: 0.95rem;
}

.float-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: -30px;
    left: -40px;
    color: var(--primary);
}

.card-2 {
    bottom: -30px;
    right: -40px;
    color: #db2777;
    animation-delay: 3s;
}

.card-3 {
    bottom: 40%;
    right: -60px;
    color: var(--accent);
    animation-delay: 1.5s;
}

/* ==================== PAGE HEADER (SERVICE PAGES) ==================== */
.page-header {
    background: var(--bg-surface);
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
    color: var(--border);
}

.breadcrumbs li:last-child::after {
    content: '';
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==================== CONTENT LAYOUT ==================== */
.content-wrapper {
    background: var(--bg-surface);
}

.row-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-content {
    font-size: 1.15rem;
    color: #334155;
}

/* SEO Article Styles */
.seo-article h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.seo-article h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.seo-article h4 {
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.seo-article p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.seo-article .lead {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 35px;
}

.article-intro {
    margin-bottom: 40px;
}

.highlight-box {
    background: #eff6ff;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #dbeafe;
}

.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary);
}

.highlight-box ul {
    list-style: none;
    margin-top: 15px;
}

.highlight-box li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

.advantage-list li {
    padding-left: 0;
}

.advantage-list li strong {
    color: var(--primary);
}

.success-box {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.success-box h4 {
    color: var(--success);
}

.success-box code {
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid #dbeafe;
}

/* Content Categories Grid */
.content-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.category-card {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.category-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Device List */
.device-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.device-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 500;
}

.device-list i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Testimonials Preview */
.testimonials-preview {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.testimonials-preview blockquote {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.testimonials-preview p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonials-preview cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-main);
}

/* FAQ List in Article */
.faq-list {
    margin: 30px 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h5 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    font-size: 1rem;
}

/* Conclusion Box */
.conclusion-box {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid #c7d2fe;
}

.conclusion-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-box {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Internal Links */
.internal-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.3s ease;
}

.internal-link:hover {
    border-bottom-style: solid;
    opacity: 0.8;
}

/* Sub-regions Navigation */
.sub-regions-nav {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    margin-top: 50px;
}

.sub-regions-nav h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tags-cloud a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.2s ease;
}

.tags-cloud a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
    transform: translateY(-2px);
}

/* ==================== SIDEBAR ==================== */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.widget-header i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.package-name {
    background: var(--grad-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.widget-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-note {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.check-list {
    text-align: left;
    margin-bottom: 25px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.check-list i {
    color: var(--success);
    font-size: 1.1rem;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.secure-note i {
    color: var(--success);
}

.test-widget {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fbbf24;
}

.big-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.test-widget .big-icon {
    color: #f59e0b;
}

.support-widget .big-icon {
    color: var(--accent);
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: var(--primary);
    color: white;
}

/* ==================== FEATURES SECTION ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-glow);
    border-radius: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    margin: 0;
    font-size: 1rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-glow);
    border-radius: 15px;
}

.package-icon.gold {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.package-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.package-icon.gold i {
    color: #f59e0b;
}

.package-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price {
    margin: 15px 0;
    line-height: 1;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-per-month {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.saving-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--success);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
}

.card-body {
    flex: 1;
    margin-bottom: 25px;
}

.card-body ul {
    list-style: none;
}

.card-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.card-body i {
    color: var(--success);
    font-size: 1.1rem;
}

.card-footer {
    margin-top: auto;
}

.package-features-note {
    background: #eff6ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 50px;
}

.package-features-note p {
    margin: 0;
    font-weight: 600;
    color: var(--text-main);
}

/* ==================== REGION SELECTOR ==================== */
.region-selector {
    background: var(--bg-surface);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.region-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.region-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.region-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.region-card i {
    color: var(--accent);
    font-size: 1.2rem;
}

.all-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    text-align: left;
}

.all-cities-grid a {
    padding: 10px 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.all-cities-grid a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #eff6ff;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

.author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.overall-rating {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

.rating-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 2rem;
}

.rating-text {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== FOOTER ==================== */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    background: #020617;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #475569;
}

.payment-icons i:hover {
    color: #94a3b8;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content,
    .row-layout,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .trust-signals {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .float-card {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .sticky-sidebar {
        position: static;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .page-header {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .all-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .device-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .cta-box {
        flex-direction: column;
    }
    
    .cta-box .btn {
        width: 100%;
    }
    
    .regions-grid,
    .all-cities-grid,
    .content-categories {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .widget-price {
        font-size: 2.5rem;
    }
    
    .phone-link {
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar-wrapper,
    .mobile-menu,
    .back-to-top,
    .hero-bg-glow,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}