 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #f093fb;
            --dark-color: #1a1a2e;
            --light-color: #f5f7fa;
            --text-color: #333;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--light-color);
        }

        /* ===== HEADER/NAVIGATION ===== */
        /* ===== UPPER NAVBAR ===== */
        .upper-navbar {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            padding: 12px 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .upper-navbar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-media {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .follow-label {
            color: #d1d5db;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-media a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .social-media a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .upper-nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .contact-link {
            color: #a5b4fc;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: color 0.25s ease;
        }

        .contact-link:hover {
            color: white;
        }

        .language-btn {
            padding: 8px 16px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .language-btn:hover {
            background: var(--accent-color);
            transform: scale(1.05);
        }
        .social-login {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

        .social-btn {
            flex: 1;
            padding: 11px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 10px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #333;
        }

        .social-btn:hover {
            border-color: var(--primary-color);
            background: #f5f7fa;
            transform: translateY(-2px);
        }

        header {
            background: white;
            padding: 15px 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            
        }
        

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

       

        .logo:hover {
            transform: scale(1.05);
        }
        .logo {
            display: flex;
            align-items: center;   /* vertical alignment */
            gap: 10px;             /* space between logo & text */
            font-size: 24px;
            font-weight: 700;
            cursor: pointer;
        }

        .logo img {
            height: 45px;
            width: auto;
            display: block;
        }

        .logo span {
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .nav-btn {
            padding: 9px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .nav-login {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .nav-login:hover {
            background: var(--primary-color);
            color: white;
        }

        .nav-signup {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
        }

        .nav-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
                flex-wrap: wrap;
            }

            .nav-links {
                gap: 15px;
                font-size: 12px;
            }

            .nav-buttons {
                gap: 10px;
            }

            .nav-btn {
                padding: 8px 15px;
                font-size: 12px;
            }
        }

        /* ===== SLIDER/BANNER ===== */
        .slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }
         
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 50px;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-1 {
            background: cover;
        
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            
        }

        .slide-2 {
            background: cover;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .slide-3 {
            background: cover;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .slide-content h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 700;
            animation: slideInDown 0.6s ease forwards;
        }

        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: slideInUp 0.6s ease 0.2s forwards;
            opacity: 0;
        }

        .slide-btn {
            padding: 14px 40px;
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease 0.4s forwards;
            opacity: 0;
            display: inline-block;
        }

        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }

            .slide-content h1 {
                font-size: 32px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .slide-btn {
                padding: 12px 30px;
                font-size: 13px;
            }
        }

        /* ===== SEARCH SECTION ===== */
        .search-section {
            margin: -60px 50px 60px;
            position: relative;
            z-index: 100;
        }

        .search-section::before {
            content: '';
            position: absolute;
            inset: 0;
            transform: translateY(-10px);
            background: radial-gradient(circle at top, rgba(102, 126, 234, 0.14), transparent 45%);
            pointer-events: none;
            border-radius: 30px;
            z-index: -1;
        }

        .search-box {
            background: rgba(255, 255, 255, 0.98);
            padding: 34px;
            border-radius: 28px;
            border: 1px solid rgba(102, 126, 234, 0.14);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
        }

        .search-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            color: var(--dark-color);
        }

        .search-inputs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .search-keyword-group {
            grid-column: 1 / -1;
        }

        .search-input-group {
            display: flex;
            flex-direction: column;
        }

        .search-input-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #555;
            font-size: 13px;
        }

        .search-input-group input,
        .search-input-group select {
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 14px;
            font-size: 14px;
            transition: all 0.25s ease;
            background: white;
        }

        .search-input-group input[type="search"] {
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
        }

        .search-input-group input:focus,
        .search-input-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
        }

        .search-btn {
            padding: 12px 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-end;
            font-size: 15px;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        @media (max-width: 1024px) {
            .search-inputs {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .search-section {
                margin: -50px 20px 40px;
            }

            .search-box {
                padding: 20px;
            }

            .search-title {
                font-size: 20px;
            }

            .search-inputs {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .search-btn {
                align-self: stretch;
                margin-top: 10px;
            }
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 80px 50px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .section-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
        }

        .service-icon {
            font-size: 50px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--dark-color);
        }

        .service-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== TOGGLER STYLES ===== */
        .plan-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 50px;
        }

        .toggle-label {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark-color);
            transition: color 0.3s ease;
        }

        .toggle-label.active {
            color: var(--primary-color);
        }

        .toggle-switch {
            position: relative;
            width: 80px;
            height: 40px;
            background: #e0e0e0;
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .toggle-switch.active {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 34px;
            height: 34px;
            background: white;
            border-radius: 50%;
            transition: left 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active .toggle-slider {
            left: 43px;
        }

        /* ===== PLAN DETAILS STYLES ===== */
        .plan-details-container {
            margin-top: 40px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            display: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .plan-details-container.active {
            display: block;
            animation: slideInUp 0.5s ease;
        }

        .plan-details-header {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }

        .detail-stat {
            text-align: center;
        }

        .detail-stat-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .detail-stat-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        .plan-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 25px;
        }

        .feature-item-detail {
            padding: 15px;
            background: #f9f9f9;
            border-left: 4px solid var(--primary-color);
            border-radius: 5px;
        }

        .feature-item-detail h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .feature-item-detail p {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }

        /* ===== KYC DETAILS STYLES ===== */
        .kyc-section {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            border-radius: 15px;
            border: 2px solid rgba(102, 126, 234, 0.1);
        }

        .kyc-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .kyc-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .kyc-toggle-icon {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .kyc-toggle-icon.open {
            transform: rotate(180deg);
        }

        .kyc-content {
            display: none;
            margin-top: 25px;
            animation: slideInUp 0.3s ease;
        }

        .kyc-content.active {
            display: block;
        }

        .kyc-requirements {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .kyc-requirement {
            padding: 20px;
            background: white;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }

        .kyc-requirement h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .kyc-requirement p {
            font-size: 12px;
            color: #666;
            line-height: 1.6;
        }

        .kyc-process {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }

        .kyc-process h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .kyc-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .kyc-step {
            text-align: center;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 10px;
        }

        .kyc-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .kyc-step-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--dark-color);
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 50px 20px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 25px;
            }

            .plan-toggle-container {
                flex-direction: column;
                gap: 20px;
            }

            .plan-details-header {
                grid-template-columns: 1fr;
            }

            .plan-features {
                grid-template-columns: 1fr;
            }

            .kyc-requirements {
                grid-template-columns: 1fr;
            }

            .kyc-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            opacity: 0.3;
        }

        .feature-item h3 {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .feature-item p {
            font-size: 14px;
            opacity: 0.95;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 50px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-number {
                font-size: 36px;
            }
        }

        /* ===== PRICING SECTION ===== */
        .pricing-section {
            padding: 80px 50px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .pricing-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
            border-color: var(--primary-color);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .pricing-card.featured:hover {
            border-color: white;
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-color);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-name {
            font-size: 20px;
            font-weight: 700;
            margin: 20px 0 15px;
        }

        .pricing-price {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .pricing-duration {
            font-size: 13px;
            opacity: 0.8;
            margin-bottom: 30px;
        }

        .pricing-features {
            text-align: left;
            margin: 30px 0;
            font-size: 13px;
        }

        .pricing-features li {
            list-style: none;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured .pricing-features li {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-features li::before {
            content: "✓ ";
            color: var(--primary-color);
            font-weight: 700;
            margin-right: 8px;
        }

        .pricing-card.featured .pricing-features li::before {
            color: var(--accent-color);
        }

        .pricing-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            font-size: 14px;
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .pricing-card.featured .pricing-btn {
            background: white;
            color: var(--primary-color);
        }
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .shop-container {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }

            .filters-sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .hero {
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .search-bar {
                flex-direction: column;
            }

            .sorting-bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 50px 20px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
            color: white;
            padding: 60px 50px;
            text-align: center;
            margin: 40px 50px;
            border-radius: 15px;
        }

        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-btn {
            padding: 14px 50px;
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .cta-section {
                margin: 30px 20px;
                padding: 40px 20px;
            }

            .cta-section h2 {
                font-size: 24px;
            }
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 50px 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto 30px;
        }

        .footer-section h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom p {
            margin: 0;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            footer {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* ===== COUNTRY PLANS SECTION ===== */
        .country-plans-section {
            padding: 40px 50px;
            background-image: url('https://images.unsplash.com/photo-1559628376-f2b5d2f93896?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .country-plans-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            z-index: 1;
        }

        .country-plans-section > * {
            position: relative;
            z-index: 2;
        }

        .country-plans-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .country-card {
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .country-card:nth-child(1) { animation-delay: 0.1s; }
        .country-card:nth-child(2) { animation-delay: 0.2s; }
        .country-card:nth-child(3) { animation-delay: 0.3s; }
        .country-card:nth-child(4) { animation-delay: 0.4s; }
        .country-card:nth-child(5) { animation-delay: 0.5s; }
        .country-card:nth-child(6) { animation-delay: 0.6s; }
        .country-card:nth-child(7) { animation-delay: 0.7s; }
        .country-card:nth-child(8) { animation-delay: 0.8s; }

        .country-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 20px rgba(102, 126, 234, 0.3);
        }

        .country-card-header {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .country-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            z-index: 0;
        }

        .country-flag {
            font-size: 36px;
            margin-bottom: 5px;
            z-index: 1;
            position: relative;
        }

        .country-name {
            font-size: 14px;
            font-weight: 700;
            z-index: 1;
            position: relative;
            text-align: center;
        }

        .country-card-body {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .country-description {
            font-size: 13px;
            color: #666;
            margin-bottom: 15px;
            min-height: 40px;
        }

        .country-features {
            list-style: none;
            padding: 0;
            margin: 15px 0;
            flex-grow: 1;
        }

        .country-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 13px;
            color: #333;
            display: flex;
            align-items: center;
        }

        .country-features li::before {
            content: "✓";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            color: #667eea;
            margin-right: 10px;
            font-weight: 700;
            font-size: 12px;
        }

        .country-features li:last-child {
            border-bottom: none;
        }

        .country-pricing {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 2px solid #f0f0f0;
        }

        .country-price-original {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
            margin-right: 10px;
        }

        .country-price {
            display: flex;
            align-items: baseline;
            gap: 5px;
        }

        .country-price-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .country-price-duration {
            font-size: 12px;
            color: #666;
        }

        .country-discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            z-index: 2;
        }

        .country-card-footer {
            padding: 10px 15px;
            border-top: 1px solid #f0f0f0;
        }

        .country-btn {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #667eea;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .country-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .country-card.featured .country-card-header {
            height: 102px;
            box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
        }

        .country-card.featured .country-discount-badge {
            background: linear-gradient(135deg, #FFD700, #FFA500);
        }

        @media (max-width: 1440px) {
            .country-plans-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .country-plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .country-plans-section {
                padding: 30px 20px;
            }

            .country-plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .country-card-header {
                height: 72px;
            }

            .country-flag {
                font-size: 24px;
            }

            .country-name {
                font-size: 12px;
            }
        }

        /* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f5f7fa;
    color: var(--primary-color);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
    