        /* All your existing CSS styles remain the same */
        :root {
            --dark: #0a0e17;
            --light-dark: #1a2238;
            --semi-dark: #2a3657;
            --blue: #4cc9f0;
            --blue-light: #8be9fd;
            --blue-dark: #1e40af;
            --purple: #7209b7;
            --pink: #f72585;
            --teal: #4cc9f0;
            --orange: #ff9e00;
            --green: #4ade80;
            --gray: #9ca3af;
            --white: #ffffff;
            --light: #f3f4f6;
            --yellow: #ffd166;
            --red: #ef476f;
            --gradient-primary: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--blue-light) 0%, var(--teal) 100%);
            --gradient-accent: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
            --gradient-nav: linear-gradient(135deg, rgba(26, 34, 56, 0.9) 0%, rgba(42, 54, 87, 0.9) 100%);
        }

        body {
            background: var(--dark);
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            overflow-y: auto;
            color: var(--light);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(76, 201, 240, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(30, 64, 175, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 50% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 25%);
            background-attachment: fixed;
            padding-top: 80px; /* Account for fixed navbar */
        }

        .container-custom {
            max-width: 1300px;
        }
/* Processor Icon Styles */
.processor-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

.processor-icon.intel {
    color: #0071c5; /* Intel Blue */
    background: linear-gradient(135deg, #0071c5, #00a0e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processor-icon.amd {
    color: #ed1c24; /* AMD Red */
    background: linear-gradient(135deg, #ed1c24, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SSD/NVMe Icon Styles */
.ssd-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

.ssd-icon.nvme {
    color: #8b5cf6; /* Purple for NVMe */
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ssd-icon.sata {
    color: #f59e0b; /* Amber for SATA */
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Uptime Icon Styles */
.uptime-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

.uptime-icon {
    color: #10b981; /* Green for uptime */
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Effects */
.location-stats .stat-item:hover .processor-icon,
.location-stats .stat-item:hover .ssd-icon,
.location-stats .stat-item:hover .uptime-icon {
    transform: translateY(-3px);
    filter: brightness(1.2);
}
/* Plan Features with Icons */
.plan-features li {
    color: var(--light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 35px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
}

.plan-features li .feature-icon {
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-size: 14px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-features li:hover .feature-icon {
    color: var(--blue);
    transform: scale(1.1);
}

.plan-features li:hover {
    color: var(--white);
    padding-left: 38px;
}

/* Specific icon colors for different feature types */
.plan-features li .fa-memory { color: #4ade80; } /* RAM - Green */
.plan-features li .fa-tachometer-alt { color: #f59e0b; } /* CPU - Amber */
.plan-features li .fa-hdd { color: #8b5cf6; } /* Storage - Purple */
.plan-features li .fa-users { color: #06b6d4; } /* Players - Cyan */
.plan-features li .fa-shield-alt { color: #ef4444; } /* Protection - Red */
.plan-features li .fa-copy { color: #f97316; } /* Backups - Orange */
.plan-features li .fa-plug { color: #84cc16; } /* Ports - Lime */
.plan-features li .fa-map-marker-alt { color: #ec4899; } /* Location - Pink */
.plan-features li .fa-bolt { color: #eab308; } /* Setup - Yellow */
.plan-features li .fa-microsoft { color: #737373; } /* Versions - Gray */
.plan-features li .fa-headset { color: #3b82f6; } /* Support - Blue */
.plan-features li .fa-history { color: #10b981; } /* Auto Backup - Emerald */
.plan-features li .fa-cube { color: #8b5cf6; } /* Plugin - Violet */
.plan-features li .fa-globe { color: #06b6d4; } /* Domain - Cyan */
.plan-features li .fa-chart-line { color: #22c55e; } /* Uptime - Green */
.plan-features li .fa-folder { color: #f59e0b; } /* SFTP - Amber */
.plan-features li .fa-link { color: #6366f1; } /* Subdomain - Indigo */

/* Hover effects for specific categories */
.plan-features li:hover .fa-memory { color: #22c55e; }
.plan-features li:hover .fa-tachometer-alt { color: #eab308; }
.plan-features li:hover .fa-shield-alt { color: #dc2626; }
.plan-features li:hover .fa-hdd { color: #7c3aed; }
/* Pulse animations on hover */
.location-stats .stat-item:hover .uptime-icon {
    animation: pulse-green 1s ease-in-out;
}

.location-stats .stat-item:hover .ssd-icon.nvme {
    animation: pulse-purple 1s ease-in-out;
}

@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes pulse-purple {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.protection-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
    color: #ef4444; /* Red for protection */
    background: linear-gradient(135deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-stats .stat-item:hover .protection-icon {
    animation: shield-pulse 1s ease-in-out;
}

@keyframes shield-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1); }
}
        /* Navbar Styles - Fixed dropdown issue */
        .offcanvas { 
            background: var(--semi-dark); 
            height: 100vh; 
        }

        .fixed-top {
            background: rgba(60, 60, 60, 0.35); /* Apple-style gray glass */
            backdrop-filter: blur(20px) saturate(180%) brightness(1.15);
            -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.15);
            padding: 15px 0 !important;
            box-shadow: 0 4px 20px rgba(60, 60, 60, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1030;
        }

        .navbar-dark { padding: 20px 0; }
        .navbar-toggler {
            outline: none !important;
            box-shadow: none !important;
            color: var(--white) !important;
            border: none !important;
        }

        .navbar-dark .navbar-brand { position: relative; }
        .navbar-dark .navbar-brand img,
        footer .footer_about img,
        .offcanvas-header img {
            margin-right: 5px;
            width: 30px;
            height: 30px;
        }

        .navbar-dark .navbar-brand h2,
        footer .footer_about h2,
        .offcanvas-header h2 {
            font-size: 20px;
            font-weight: 700;
            font-style: italic;
            color: var(--white);
            letter-spacing: 0.04rem;
        }

        .navbar-dark .navbar-brand h2 span,
        footer .footer_about h2 span,
        .offcanvas-header h2 span {
            text-transform: uppercase;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-expand-lg .navbar-nav .nav-link {
            padding-left: 1rem;
            padding-right: 1rem;
            transition: all 0.3s ease;
        }

        .navbar-dark .navbar-nav .nav-link { color: var(--gray); }

        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link:active,
        .navbar-dark .navbar-nav .nav-link:focus {
            color: var(--blue-light);
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
        }

        /* Dropdown with Animation - Fixed for mobile */
        .dropdown-menu {
            background: rgba(60, 60, 60, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(15px) saturate(160%);
            -webkit-backdrop-filter: blur(15px) saturate(160%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            text-align: center;

            /* Animation setup */
            opacity: 0;
            transform: translateY(10px) scale(0.98);
            visibility: hidden;
            transition: all 0.3s ease;
        }
/* Processor Icon Styles */
.processor-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.processor-icon.intel {
    color: #0071c5; /* Intel Blue */
    background: linear-gradient(135deg, #0071c5, #00a0e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processor-icon.amd {
    color: #ed1c24; /* AMD Red */
    background: linear-gradient(135deg, #ed1c24, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processor-icon.performance {
    color: #ffd700; /* Gold for performance */
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced location stats with icons */
.location-stats .stat-item {
    text-align: center;
    position: relative;
}

.location-stats .stat-item i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.location-stats .stat-item:hover i {
    transform: scale(1.1);
}

/* Specific processor brand animations */
.processor-icon.intel:hover {
    animation: pulse-blue 1s ease-in-out;
}

.processor-icon.amd:hover {
    animation: pulse-red 1s ease-in-out;
}

@keyframes pulse-blue {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulse-red {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
        /* Show dropdown smoothly on hover */
        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            visibility: visible;
        }

        /* Show dropdown on click for mobile */
        .nav-item.dropdown.show .dropdown-menu {
            opacity: 1;
            transform: translateY(0) scale(1);
            visibility: visible;
        }

        .dropdown-menu .dropdown-item {
            padding: 10px 20px;
            color: var(--gray);
            background: transparent;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-menu .dropdown-item span { font-size: 12px; font-weight: 300; }

        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:active,
        .dropdown-menu .dropdown-item:focus {
            color: var(--blue-light);
            background: rgba(255, 255, 255, 0.08);
        }

        /* Dual Button */
        .dual-button {
            display: flex; 
            align-items: center;
            justify-content: space-between;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 0 12px rgba(0, 191, 255, 0.4);
            background: linear-gradient(135deg, #00bfff, #1e90ff);
            width: 250px;
            height: 40px;
        }

        .dual-button a {
            flex: 1;
            color: #fff;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            line-height: 40px;
            transition: 0.3s;
        }

        .dual-button a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .dual-button .divider {
            width: 1px; 
            background: rgba(255,255,255,0.3); 
            height: 60%;
        }

        /* Currency Converter Styles */
        .currency-converter {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .currency-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .currency-title {
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            margin: 0;
        }

        .currency-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .currency-btn {
            background: var(--semi-dark);
            color: var(--gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .currency-btn:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--light);
        }

        .currency-btn.active {
            background: var(--gradient-primary);
            color: var(--white);
            border-color: transparent;
            box-shadow: 0 4px 10px rgba(76, 201, 240, 0.3);
        }

        .tax-notice {
            color: var(--gray);
            font-size: 12px;
            margin-top: 10px;
            text-align: center;
        }

        /* Responsive */
        @media (min-width: 992px) {
            .offcanvas {
                visibility: visible;
                position: relative;
                background: none;
                border: none;
                justify-content: end;
            }
        }

        @media (max-width: 992px) {
            .offcanvas {
                width: 250px !important;
                background: rgba(60, 60, 60, 0.35);
                backdrop-filter: blur(20px);
            }
            .offcanvas-start-lg {
                top: 0;
                left: 0;
                border-right: 1px solid rgba(0, 0, 0, .2);
                transform: translateX(-100%);
            }
            .navbar-dark .navbar-nav .button {
                margin-left: 0 !important;
            }
            .navbar-dark .navbar-nav .button .btn {
                display: block;
            }
            .dual-button {
                width: 100%;
                margin-top: 10px;
            }
            
            /* Fix dropdowns for mobile */
            .dropdown-menu {
                position: static !important;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                margin-top: 0;
                width: 100%;
            }

            .currency-buttons {
                justify-content: center;
            }
        }

        /* Minecraft Plans Styles */
        .site_title h2 {
            color: var(--white);
            font-weight: 700;
            font-size: 32px;
            position: relative;
            display: inline-block;
        }

        .site_title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .site_title p {
            color: var(--light);
        }

        .plans-section {
            padding: 80px 0;
        }

        .location-tabs {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .location-tabs .nav-pills .nav-link {
            color: var(--light);
            background: transparent;
            border-radius: 50px;
            padding: 10px 24px;
            margin: 0 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .location-tabs .nav-pills .nav-link.active {
            background: var(--gradient-primary);
            color: var(--white);
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        }

        .location-tabs .nav-pills .nav-link:hover:not(.active) {
            background: rgba(255, 255, 255, 0.05);
        }
.plan-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.plan-image img {
    height: 100px;        /* fixed height */
    width: 100px;          /* keep aspect ratio */
    margin: 0 auto;
    display: block;
    object-fit: contain;  /* safe scaling */
}


        /* Enhanced Plan Cards with Images */
           .plan-card {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://wallpapercave.com/wp/wp4872111.png');
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

        .plan-card.popular {
            border: 2px solid var(--yellow);
            background: linear-gradient(135deg, var(--light-dark) 0%, var(--semi-dark) 100%);
        }

        .plan-card.popular:before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images3.alphacoders.com/133/thumb-1920-1333794.jpeg');
            color: var(--dark);
            padding: 5px 40px;
            font-size: 12px;
            font-weight: 700;
            transform: rotate(45deg);
            box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
        }






        .plan-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .plan-name {
            color: var(--white);
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .plan-price {
            color: var(--white);
            font-weight: 800;
            font-size: 36px;
            margin-bottom: 5px;
        }

        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--gray);
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }

        .plan-features li {
            color: var(--light);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            padding-left: 25px;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 700;
        }

        .plan-btn {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
        }

        .plan-btn:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-2px);
        }

        .plan-btn.popular {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images3.alphacoders.com/133/thumb-1920-1333794.jpeg');
            color: var(--dark);
            box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
        }

        .plan-btn.popular:hover {
            box-shadow: 0 6px 20px rgba(255, 209, 102, 0.5);
        }

        .location-info {
            text-align: center;
            margin-bottom: 40px;
        }

        .location-flag {
            width: 60px;
            height: 40px;
            border-radius: 8px;
            margin: 0 auto 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            background-size: cover;
            background-position: center;
        }

        .location-name {
            color: var(--white);
            font-weight: 700;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .location-description {
            color: var(--light);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-section {
            padding: 80px 0;
            background: linear-gradient(0deg, rgba(10, 14, 23, 0.2) 0%, rgba(26, 34, 56, 0.6) 100%);
        }

        .feature-box {
            background: var(--light-dark);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
        }

        .feature-icon i {
            font-size: 30px;
            color: var(--white);
        }

        .feature-title {
            color: var(--white);
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--gray);
            font-size: 14px;
        }

        .faq-section {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images3.alphacoders.com/132/thumb-1920-1329100.png');

    background-size: 120%; /* ZOOM EFFECT */
    background-position: center; 
    background-repeat: no-repeat;
    
    padding: 60px 0;
    position: relative;
    overflow: hidden;
        }

        .faq-item {
            background: rgba(156, 163, 175, 0.03);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background: var(--semi-dark);
            color: var(--white);
            padding: 20px 30px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(42, 54, 87, 0.8);
        }

        .faq-question:after {
            content: '+';
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: 300;
        }

        .faq-question.active:after {
            content: '-';
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px 30px;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--light);
            margin-bottom: 0;
        }

        /* Coming Soon Styles */
        .coming-soon-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
            padding: 40px 20px;
        }

        .coming-soon-content {
            text-align: center;
            background: var(--light-dark);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 500px;
            width: 100%;
        }

        .coming-soon-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 30px rgba(76, 201, 240, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
            }
        }

        .coming-soon-icon i {
            font-size: 40px;
            color: var(--white);
        }

        .coming-soon-title {
            color: var(--white);
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 15px;
        }

        .coming-soon-description {
            color: var(--light);
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .notify-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .notify-form .form-control {
            background: var(--semi-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--light);
            padding: 12px 20px;
            flex: 1;
            transition: all 0.3s ease;
        }

        .notify-form .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.2);
            outline: none;
        }

        .notify-form .form-control::placeholder {
            color: var(--gray);
        }

        .notify-btn {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
            white-space: nowrap;
        }

        .notify-btn:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-2px);
        }

        /* Responsive Styles */
        @media (max-width: 576px) {
            .coming-soon-content {
                padding: 40px 25px;
            }
            
            .coming-soon-icon {
                width: 80px;
                height: 80px;
            }
            
            .coming-soon-icon i {
                font-size: 30px;
            }
            
            .coming-soon-title {
                font-size: 26px;
            }
            
            .notify-form {
                flex-direction: column;
            }
            
            .notify-btn {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .location-tabs .nav-pills .nav-link {
                margin-bottom: 10px;
                width: 100%;
                text-align: center;
            }
            
            .plan-card {
                padding: 20px;
            }
        }
        
        /* VPS Section Styles */
        .vps-section {
            position: relative;
            width: 100%;
            height: 100vh;
            color: #fff;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Background Image */
        .bg-image {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: url('https://images6.alphacoders.com/139/1394586.jpg') center/cover no-repeat;
            filter: brightness(0.3) blur(2px);
            z-index: -1;
        }

        /* Content */
        .slide {
            animation: fadeIn 1s ease forwards;
            max-width: 700px;
            margin: auto;
            padding: 0 15px;
        }

        @keyframes fadeIn {
            from {opacity: 0; transform: translateY(30px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 25px;
            background: rgba(120, 50, 255, 0.6);
            font-size: 14px;
            margin-bottom: 12px;
            text-shadow: 0 0 8px #9f7bff;
        }

        .title {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 0 0 15px rgba(138,43,226,0.9);
        }

        .brand {
            font-size: 2rem;
            font-weight: 600;
            color: #9f7bff;
            text-shadow: 0 0 15px #7b4dff;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #dcdcdc;
            margin-bottom: 10px;
        }

        .price {
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .price span {
            color: #a470ff;
            font-weight: bold;
            text-shadow: 0 0 10px #6f3fff;
        }

        /* Buttons */
        .buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            background: linear-gradient(90deg, #5b00d4, #8a2be2);
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            box-shadow: 0 0 15px rgba(155, 80, 255, 0.7);
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(160, 70, 255, 1);
        }

        .btn.free {
            background: linear-gradient(90deg, #007bff, #00c6ff);
            box-shadow: 0 0 15px rgba(0, 195, 255, 0.8);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .title {
                font-size: 2.2rem;
            }
            .brand {
                font-size: 1.5rem;
            }
            .subtitle {
                font-size: 1rem;
            }
            .price {
                font-size: 1.1rem;
            }
        }

        /* Fixed Footer Styles */
        .ggnodes-footer {
            background: var(--light-dark);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--gradient-primary);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-cta {
            text-align: center;
            margin-bottom: 50px;
        }

        .footer-cta h2 {
            color: var(--white);
            font-weight: 700;
            font-size: 32px;
            margin-bottom: 15px;
        }

        .footer-cta p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
            margin-bottom: 20px;
        }

        .cta-button:hover {
            box-shadow: 0 6px 20px rgba(76, 201, 240, 0.5);
            transform: translateY(-2px);
        }

        .trust-badge {
            color: var(--gray);
            font-size: 14px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .brand-section h3 {
            color: var(--white);
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 5px;
        }

        .brand-section .tm {
            font-size: 14px;
            vertical-align: super;
        }

        .brand-tagline {
            color: var(--gray);
            font-size: 14px;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .links-column h4 {
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .links-column h4:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .links-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .links-column li {
            margin-bottom: 12px;
        }

        .links-column a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .links-column a:hover {
            color: var(--blue-light);
            padding-left: 5px;
        }

        .link-arrow {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }

        .contact-info .company-name {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-info .location {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .social-link {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .social-link:hover {
            color: var(--blue-light);
        }

        .email-address {
            color: var(--gray);
            font-size: 14px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .company-details {
            color: var(--gray);
            font-size: 14px;
            max-width: 500px;
        }

        .copyright {
            color: var(--gray);
            font-size: 14px;
        }

        /* Responsive Footer */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        /* New Currency Converter Styles */
        .currency-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 15px;
        }

        .currency-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--semi-dark);
            color: var(--gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 8px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 70px;
            text-align: center;
        }

        .currency-option:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--light);
            transform: translateY(-2px);
        }

        .currency-option.active {
            background: var(--gradient-primary);
            color: var(--white);
            border-color: transparent;
            box-shadow: 0 4px 10px rgba(76, 201, 240, 0.3);
        }

        .currency-flag {
            width: 30px;
            height: 20px;
            border-radius: 4px;
            margin-bottom: 5px;
            object-fit: cover;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .currency-options {
                gap: 8px;
            }
            
            .currency-option {
                min-width: 60px;
                padding: 10px 6px;
                font-size: 11px;
            }
            
            .currency-flag {
                width: 25px;
                height: 16px;
            }
        }
/* Budget vs Premium Comparison - Ultra Compact */
.comparison-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images3.alphacoders.com/133/thumb-1920-1333794.jpeg');

    background-size: 200%; /* ZOOM EFFECT */
    background-position: center; 
    background-repeat: no-repeat;
    
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #4cc9f0, #8be9fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #9ca3af;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Comparison Table */
.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Header */
.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-column, .plan-column {
    padding: 20px 15px;
    text-align: center;
}

.feature-column h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.plan-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.plan-badge.premium {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
}

.plan-badge.budget {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    color: white;
}

.plan-price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-price span {
    font-size: 0.8rem;
    color: #9ca3af;
}

.plan-recommended {
    color: #4cc9f0;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Feature Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.feature-item i {
    color: #4cc9f0;
    font-size: 1rem;
    width: 16px;
}

.feature-item span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 15px;
}

.feature-value i {
    color: #10b981;
    font-size: 0.9rem;
}

.feature-value.premium span {
    color: #4cc9f0;
    font-weight: 600;
    font-size: 0.85rem;
}

.feature-value.budget span {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Plan Styles */
.premium-plan {
    background: rgba(156, 163, 175, 0.03);
    border-left: 1px solid rgba(76, 201, 240, 0.15);
}

.budget-plan {
    background: rgba(156, 163, 175, 0.03);
    border-left: 1px solid rgba(156, 163, 175, 0.15);
}

/* CTA */
.comparison-cta {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.02);
    gap: 10px;
}

.btn-premium, .btn-budget {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-premium {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    color: white;
    box-shadow: 0 3px 10px rgba(76, 201, 240, 0.3);
}

.btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

.btn-budget {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-budget:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Animations */
.comparison-table {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.comparison-table.animate {
    opacity: 1;
    transform: translateY(0);
}

.comparison-row {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
}

.comparison-row.animate {
    opacity: 1;
    transform: translateX(0);
}

.comparison-row:nth-child(even) {
    transform: translateX(15px);
}

.comparison-row:nth-child(even).animate {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .comparison-header,
    .comparison-row,
    .comparison-cta {
        grid-template-columns: 1fr;
    }
    
    .plan-column {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 12px;
    }
    
    .feature-value {
        padding: 12px;
    }
    
    .btn-premium, .btn-budget {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .plan-price {
        font-size: 1.3rem;
    }
    
    .feature-item span,
    .feature-value span {
        font-size: 0.8rem;
    }
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}
/* Country Quick Select Styles */
.country-quick-select {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://4kwallpapers.com/images/walls/thumbs_3t/20896.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Optional: Add a pseudo-element for better overlay control */
.country-quick-select::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(155, 81, 224, 0.1));
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
}

.country-select-title {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.country-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.country-btn {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://4kwallpapers.com/images/walls/thumbs_3t/23769.jpg');
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.country-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: rgba(76, 201, 240, 0.3);
}

.country-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

.country-flag {
    width: 40px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.country-name {
    font-weight: 600;
    font-size: 14px;
}

.country-latency {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.country-badge {
    background: var(--pink);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 5px;
}

/* Location Info Enhancements */
.location-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    color: var(--blue-light);
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
}
        
/* Country Sub-Buttons System */
.country-sub-buttons {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-sub-btn {
    background: var(--semi-dark);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

.country-sub-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.country-sub-btn.budget {
    border-color: rgba(156, 163, 175, 0.3);
}

.country-sub-btn.budget:hover {
    border-color: rgba(156, 163, 175, 0.6);
}

.country-sub-btn.premium {
    border-color: rgba(76, 201, 240, 0.3);
}

.country-sub-btn.premium:hover {
    border-color: rgba(76, 201, 240, 0.6);
}

.country-btn.has-sub-buttons.active .country-sub-buttons {
    display: grid;
}

/* Enhanced country button for sub-button support */
.country-btn.has-sub-buttons {
    position: relative;
}

.country-btn.has-sub-buttons::after {
    content: '▼';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.country-btn.has-sub-buttons.active::after {
    transform: rotate(180deg);
}

/* Tab content fixes */
.tab-content {
    position: relative;
}

.tab-pane {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile responsive for sub-buttons */
@media (max-width: 768px) {
    .country-sub-buttons {
        grid-template-columns: 1fr;
    }
    
    .country-btn.has-sub-buttons::after {
        top: 10px;
        right: 10px;
    }
}
   /* Enhanced Country Sub-Buttons System */
.country-sub-buttons {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-sub-btn {
    background: var(--semi-dark);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.country-sub-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.country-sub-btn.budget {
    border-color: rgba(156, 163, 175, 0.3);
    background: linear-gradient(135deg, var(--semi-dark) 0%, rgba(156, 163, 175, 0.1) 100%);
}

.country-sub-btn.budget:hover {
    border-color: rgba(156, 163, 175, 0.6);
}

.country-sub-btn.premium {
    border-color: rgba(76, 201, 240, 0.3);
    background: linear-gradient(135deg, var(--semi-dark) 0%, rgba(76, 201, 240, 0.1) 100%);
}

.country-sub-btn.premium:hover {
    border-color: rgba(76, 201, 240, 0.6);
}

.country-btn.has-sub-buttons.active .country-sub-buttons {
    display: grid;
}

/* Enhanced country button for sub-button support */
.country-btn.has-sub-buttons {
    position: relative;
    padding-bottom: 20px;
}

.country-btn.has-sub-buttons::after {
    content: '▼';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    transition: transform 0.3s ease;
    color: var(--gray);
}

.country-btn.has-sub-buttons.active::after {
    transform: rotate(180deg);
    color: var(--blue-light);
}

/* Premium plan highlights */
.plan-card.premium-featured {
    border: 2px solid var(--blue);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://wallpapercave.com/wp/wp9531344.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.plan-card.premium-featured:before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--blue);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
    z-index: 3;
}

/* Mobile responsive for sub-buttons */
@media (max-width: 768px) {
    .country-sub-buttons {
        grid-template-columns: 1fr;
    }
    
    .country-btn.has-sub-buttons::after {
        top: 10px;
        right: 10px;
    }
}

/* Enhanced location tabs */
.location-tabs .nav-pills {
    flex-wrap: wrap;
}

.location-tabs .nav-pills .nav-link {
    margin-bottom: 10px;
}

/* Plan type badges */
.plan-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.plan-type-badge.budget {
    background: var(--gray);
    color: var(--dark);
}

.spacing-section {
    height: 40px;
    margin: 20px 0;
    border-bottom: 1px solid transparent; /* Line is now transparent */
}

.plan-type-badge.premium {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(76, 201, 240, 0.3);
}
.video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg iframe {
    width: 120%; height: 120%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: brightness(0.3) blur(2px);
}
