   :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #60a5fa;
            --secondary: #7c3aed;
            --accent: #f59e0b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #1e293b;
            --dark-2: #334155;
            --light: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.5;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* ==============================================
           ADVANCED BACKGROUND PSEUDO HOVER EFFECTS
        =============================================== */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            z-index: -2;
            animation: backgroundFloat 20s ease-in-out infinite alternate;
        }

        @keyframes backgroundFloat {
            0% {
                background-position: 0% 0%;
                background-size: 100% 100%;
            }

            50% {
                background-position: 50% 50%;
                background-size: 150% 150%;
            }

            100% {
                background-position: 100% 100%;
                background-size: 100% 100%;
            }
        }



        .animated-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            background-position: -25px -25px;
            z-index: -1;
            opacity: 0.5;
            animation: gridMove 30s linear infinite;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(25px, 25px);
            }
        }



        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
            position: relative;
            z-index: 1;

        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }



        /* ==============================================
           COMPACT BANNER
=============================================== */
        .compact-banner {
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-lg);
            padding: 1rem;
            margin-top: 20px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .compact-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.7s ease;
        }

        .compact-banner:hover::before {
            left: 100%;
        }

        .banner-content {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 1.5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* Surface Pro 7 / iPad Pro 11" (834px-912px) */
        @media (max-width: 912px) and (min-width: 769px) {
            .banner-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }

            .country-display {
                grid-column: 1;
            }

            .operator-display {
                grid-column: 2;
            }

            .quick-stats {
                grid-column: 1 / -1;
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
                margin-top: 0.75rem;
                width: 100%;
                min-width: auto;
            }

            .compact-banner {
                padding: 1.25rem;
            }
        }

        /* iPad Air / Standard Tablets (768px-820px) */
        @media (max-width: 820px) and (min-width: 641px) {
            .banner-content {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .country-display,
            .operator-display {
                width: 100%;
                min-width: auto;
            }

            .quick-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.625rem;
                min-width: auto;
                width: 100%;
            }

            .compact-banner {
                padding: 1.25rem;
            }

            .country-display,
            .operator-display {
                padding: 0.875rem;
            }
        }

        /* Tablet layout adjustments */
        @media (max-width: 1024px) and (min-width: 769px) {
            .banner-content {
                grid-template-columns: auto 1fr;
                gap: 1.25rem;
            }

            .quick-stats {
                grid-column: 1 / -1;
                margin-top: 0.75rem;
                min-width: 100%;
            }

            .country-display {
                min-width: 180px;
            }
        }

        /* Mobile layout (641px and below) */
        @media (max-width: 640px) {
            .banner-content {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .compact-banner {
                padding: 1.25rem;
                margin-bottom: 1.25rem;
            }

            .country-display,
            .operator-display {
                padding: 0.875rem;
                gap: 0.875rem;
            }
        }

        /* Small mobile (480px and below) */
        @media (max-width: 480px) {
            .compact-banner {
                padding: 1rem;
                border-radius: var(--radius);
            }

            .country-display,
            .operator-display {
                padding: 0.75rem;
                gap: 0.75rem;
            }

            .country-name,
            .operator-name {
                font-size: 1rem;
            }

            .country-details,
            .operator-type {
                font-size: 0.8rem;
            }
        }

        /* Fix for very narrow tablets (641px-768px) */
        @media (max-width: 768px) and (min-width: 641px) {
            .country-flag {
                width: 44px;
                height: 30px;
            }

            .operator-logo {
                width: 44px;
                height: 44px;
            }

            .quick-stats {
                gap: 0.5rem;
            }

            .stat-item {
                padding: 0.625rem 0.5rem;
            }

            .stat-value {
                font-size: 1rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }
        }

        .country-display {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-left: 4px solid var(--primary);
            padding: 0.75rem;
            background: rgba(241, 245, 249, 0.8);
            border-radius: var(--radius);
            min-width: 200px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        /* Ensure no overflow on tablets */
        @media (max-width: 1024px) {
            .country-display {
                min-width: 160px;
                max-width: 100%;
                overflow: hidden;
            }

            .country-name,
            .operator-name {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                display: block;
            }
        }

        .country-display::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            right: 50%;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .country-display:hover::after {
            left: 0;
            right: 0;
            width: 100%;
            transform: scaleX(1);
        }

        .country-display:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .country-flag {
            width: 48px;
            height: 32px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
            position: relative;
        }

        /* Responsive flag */
        @media (max-width: 768px) {
            .country-flag {
                width: 40px;
                height: 28px;
            }
        }

        @media (max-width: 480px) {
            .country-flag {
                width: 36px;
                height: 24px;
            }
        }

        .country-flag::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: inherit;
            background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .country-display:hover .country-flag::before {
            opacity: 1;
        }

        .country-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .country-display:hover .country-flag img {
            transform: scale(1.1);
        }

        .country-info {
            flex: 1;
            min-width: 0;
            /* Ensure text doesn't overflow */
            overflow: hidden;
        }

        .country-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.25rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        /* Fix text overflow on medium tablets */
        @media (max-width: 912px) and (min-width: 769px) {

            .country-name,
            .operator-name {
                max-width: 180px;
            }
        }

        .country-details {
            font-size: 0.85rem;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            /* Ensure it doesn't break layout */
            max-width: 100%;
            overflow: hidden;
        }

        @media (max-width: 480px) {
            .country-details {
                font-size: 0.8rem;
                gap: 0.375rem;
            }
        }

        .operator-display {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem;
            background: rgba(241, 245, 249, 0.8);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
            min-width: 0;
            /* Allow shrinking */
        }

        /* Responsive operator display */
        @media (max-width: 768px) {
            .operator-display {
                padding: 0.625rem;
                gap: 0.75rem;
                min-width: auto;
            }
        }

        .operator-display::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            right: 50%;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .operator-display:hover::after {
            left: 0;
            right: 0;
            width: 100%;
            transform: scaleX(1);
        }

        .operator-logo {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
            box-shadow: var(--shadow);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        /* Responsive operator logo */
        @media (max-width: 768px) {
            .operator-logo {
                width: 40px;
                height: 40px;
                padding: 0.375rem;
            }
        }

        @media (max-width: 480px) {
            .operator-logo {
                width: 36px;
                height: 36px;
            }
        }

        .operator-logo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 40%, rgba(37, 99, 235, 0.1) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .operator-display:hover .operator-logo::after {
            transform: translateX(100%);
        }

        .operator-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .operator-info {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .operator-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.25rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .operator-type {
            font-size: 0.85rem;
            color: var(--gray-500);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .quick-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            min-width: 280px;
        }

        /* Fix quick stats for medium tablets */
        @media (max-width: 912px) {
            .quick-stats {
                min-width: auto;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .quick-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.5rem;
                min-width: auto;
                width: 100%;
            }
        }

        /* Small mobile: 2 items per row */
        @media (max-width: 480px) {
            .quick-stats {
                grid-template-columns: repeat(3, 1fr);
            }


        }

        /* Very small mobile: single column */
        @media (max-width: 375px) {
            .quick-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .quick-stats .stat-item {
                scale: 0.8;
            }
        }

        .stat-item {
            text-align: center;
            padding: 0.75rem;
            background: rgba(241, 245, 249, 0.8);
            border-left: 3px solid var(--primary);
            border-radius: var(--radius-sm);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            min-width: 0;
            /* Allow shrinking */
        }

        /* Ensure stat items don't overflow */
        @media (max-width: 768px) {
            .stat-item {
                padding: 0.625rem 0.5rem;
                min-width: 0;
                overflow: hidden;
            }
        }

        .stat-item::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            right: 50%;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .stat-item:hover::after {
            left: 0;
            right: 0;
            width: 100%;
            transform: scaleX(1);
        }

        .stat-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(37, 99, 235, 0.2);
        }

        .stat-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Prevent text overflow in stats */
        @media (max-width: 768px) {
            .stat-value {
                font-size: 0.95rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        .stat-item:hover .stat-value {
            color: var(--primary-dark);
            text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray-500);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            z-index: 1;
        }

        /* Touch device optimization */
        @media (hover: none) and (pointer: coarse) {
            .compact-banner::before {
                display: none;
            }

            .country-display:active,
            .operator-display:active,
            .stat-item:active {
                transform: translateY(-2px);
                box-shadow: var(--shadow-md);
            }
        }

        /* Fix for horizontal overflow */
        .compact-banner {
            box-sizing: border-box;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .banner-content {
            width: 100%;
            box-sizing: border-box;
        }

        /* ==============================================
           MAIN CONTENT
        =============================================== */
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 992px) {
            .main-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            height: 100%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .form-card {
                padding: 1.5rem;
                border-radius: var(--radius-lg);
            }
        }

        @media (max-width: 480px) {
            .form-card {
                padding: 1.25rem;
            }
        }



        .form-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5);
        }

        .form-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        @media (max-width: 768px) {
            .form-title {
                font-size: 1.2rem;
                margin-bottom: 1.25rem;
            }
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .form-card:hover .form-title::after {
            width: 80px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-2);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Country Selector */
        .country-selector {
            position: relative;
        }

        .country-selected {
            background: rgba(241, 245, 249, 0.8);
            border: 2px solid rgba(226, 232, 240, 0.5);
            border-radius: var(--radius);
            padding: 0.875rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .country-selected::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .country-selected:hover::before {
            opacity: 1;
        }

        .country-selected:hover {
            border-color: var(--primary-light);
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(37, 99, 235, 0.2);
        }

        .country-selected .country-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
            min-width: 0;
            position: relative;
            z-index: 1;
        }

        .country-selected .country-flag {
            width: 40px;
            height: 28px;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
            position: relative;
        }

        .country-selected .country-flag::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: inherit;
            background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .country-selected:hover .country-flag::before {
            opacity: 1;
        }

        .country-selected .country-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .country-selected:hover .country-flag img {
            transform: scale(1.1);
        }

        .country-selected .country-details {
            flex: 1;
            min-width: 0;
        }

        .country-selected .country-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.125rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .country-selected .country-code {
            font-size: 0.85rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        .country-dropdown-icon {
            color: var(--gray-400);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .country-selected.active .country-dropdown-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .country-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5);
            max-height: 350px;
            overflow: hidden;
            z-index: 1000;
            display: none;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .country-search {
            padding: 0.875rem;
            border-bottom: 1px solid rgba(241, 245, 249, 0.5);
            background: rgba(255, 255, 255, 0.95);
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .country-search input {
            width: 100%;
            padding: 0.625rem 0.875rem;
            border: 2px solid rgba(226, 232, 240, 0.5);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.9);
        }

        .country-search input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .country-list {
            max-height: 280px;
            overflow-y: auto;
        }

        .country-list::-webkit-scrollbar {
            width: 6px;
        }

        .country-list::-webkit-scrollbar-track {
            background: rgba(241, 245, 249, 0.5);
        }

        .country-list::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 3px;
        }

        .country-option {
            padding: 0.75rem 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 1px solid rgba(241, 245, 249, 0.5);
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.9);
        }

        .country-option:last-child {
            border-bottom: none;
        }

        .country-option .country-flag {
            width: 30px;
            height: 23px;
        }

        .country-option::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            bottom: 50%;
            height: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transform: scaleY(0);

            transition: transform 0.5s ease;
        }

        .country-option:not(.selected):hover::before {
            top: 0;
            bottom: 0;
            height: 100%;
            transform: scaleY(1);
        }

        .country-option:hover {
            background: rgba(241, 245, 249, 0.5);
            padding-left: 1rem;
        }

        .country-option.selected {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
            border-left: 4px solid var(--primary);

        }

        .no-results {
            padding: 1.5rem;
            text-align: center;
            color: var(--gray-500);
        }

        .no-results i {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            opacity: 0.5;
        }

        .no-results p {
            font-size: 0.9rem;
        }

        /* Phone Input */
        .phone-input-wrapper {
            position: relative;
            margin-bottom: 7px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            border: 2px solid rgba(225, 229, 233, 0.5);
            transition: all 0.3s ease;

            backdrop-filter: blur(5px);
        }

        .phone-input-wrapper:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .phone-input-wrapper.valid {
            border-color: var(--success);
        }

        .phone-input-wrapper.invalid {
            border-color: var(--danger);
        }

        .phone-input {
            width: 100%;
            padding: 14px 15px;
            font-size: 16px;
            background: transparent;
            border: none;
            outline: none;
            color: transparent;
            caret-color: transparent;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            z-index: 2;
        }

        .phone-display {
            padding: 14px 15px;
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            display: flex;
            align-items: center;
            letter-spacing: 0.5px;
            position: relative;
            min-height: 52px;
            cursor: text;
        }

        .phone-display .country-code {
            color: var(--primary);
            font-size: 1rem;
            font-weight: 600;
            margin-right: 7px;
            user-select: none;
        }

        .phone-display .placeholder-digit {
            color: #ddd;
            transition: color 0.2s ease;
        }

        .phone-display .user-digit {
            color: var(--dark);
            font-weight: 600;
        }

        .phone-display .format-char {
            color: var(--gray-400);
            user-select: none;
        }

        .cursor {
            display: inline-block;
            width: 2px;
            height: 20px;
            background: var(--primary);
            animation: blink 1s infinite;
            position: relative;
            top: -1px;
            vertical-align: middle;
        }

        @keyframes blink {

            0%,
            50% {
                opacity: 1;
            }

            51%,
            100% {
                opacity: 0;
            }
        }

        .phone-input-wrapper:not(:focus-within) .cursor {
            display: none !important;
        }

        /* Extra Info */
        .extra-info {
            margin-top: 1rem;
            background: rgba(241, 245, 249, 0.8);
            border-radius: var(--radius);
            padding: 1rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .extra-info-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .extra-info-title i {
            color: var(--accent);
        }

        .extra-info-content {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        .extra-info-content span {
            display: block;
            margin-bottom: 0.5rem;
        }

        #exampleButton {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .example-btn {
            background: rgba(226, 232, 240, 0.8);
            border: none;
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.8rem;
            color: var(--gray-500);
            cursor: pointer;
            transition: var(--transition);
        }

        .example-btn:hover {
            background: rgba(203, 213, 225, 0.8);
            color: var(--dark);
        }

      
       .amount-section {
    margin-top: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

        .amount-grid {
            display: grid;
            gap: 0.75rem;
            margin-top: 0.75rem;
            padding-left:6px ;
        }
.amount-received {
    color: #10b981;   /* Green */
    font-weight: 600;
}

.amount-cost {
  
    color: #374151;   /* Dark gray */
}
        /* BIG SCREENS (1025px+): 4 items per row */
        @media (min-width: 1025px) {
            .amount-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .amount-option {
                padding: 1.25rem 1rem;
            }

            .amount-received {
                font-size: 1.1rem;
                margin-bottom: 0.3rem;
            }

            .amount-cost {
                font-size: 0.9rem;
            }
        }

        /* MEDIUM SCREENS (Tablets: 769px-1024px): 3 items per row */
        @media (max-width: 1024px) and (min-width: 769px) {
            .amount-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.875rem;
            }

            .amount-option {
                padding: 1rem 0.875rem;
            }

            .amount-received {
                font-size: 1rem;
                margin-bottom: 0.25rem;
            }

            .amount-cost {
                font-size: 0.85rem;
            }
        }

        /* SMALL TABLETS (641px-768px): 3 items per row (compact) */
        @media (max-width: 768px) and (min-width: 641px) {
            .amount-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.625rem;
            }

            .amount-option {
                padding: 0.875rem 0.625rem;
            }

            .amount-received {
                font-size: 0.95rem;
                margin-bottom: 0.2rem;
            }

            .amount-cost {
                font-size: 0.8rem;
            }
        }

        /* MOBILE (481px-640px): 2 items per row */
        @media (max-width: 640px) and (min-width: 481px) {
            .amount-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .amount-option {
                padding: 1rem 0.875rem;
            }

            .amount-received {
                font-size: 0.95rem;
                margin-bottom: 0.25rem;
            }

            .amount-cost {
                font-size: 0.82rem;
            }
        }

        /* SMALL MOBILE (376px-480px): 2 items per row (compact) */
        @media (max-width: 480px) and (min-width: 376px) {
            .amount-grid {
                grid-template-columns: repeat(2 , 1fr);
                gap: 0.625rem;
            }

            .amount-option {
                padding: 0.875rem 0.5rem;
            }

            .amount-received {
                font-size: 0.9rem;
                margin-bottom: 0.2rem;
            }

            .amount-cost {
                font-size: 0.78rem;
            }
        }

        /* VERY SMALL MOBILE (≤375px): 2 items per row (more compact) */
        @media (max-width: 375px) {
            .amount-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .amount-option {
                padding: 0.75rem 0.375rem;
            }

            .amount-received {
                font-size: 0.85rem;
                margin-bottom: 0.15rem;
            }

            .amount-cost {
                font-size: 0.75rem;
            }
        }

        /* Amount option styling */
        .amount-option {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(226, 232, 240, 0.5);
            border-radius: var(--radius);
            padding: 1rem 0.875rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
            z-index: 1;
        }

        .amount-option::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .amount-option:hover::before {
            opacity: 1;
        }

        .amount-option:hover {
            border-color: var(--primary);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 20px rgba(37, 99, 235, 0.1);
            z-index: 10;
        }

        .amount-option.selected {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
            transform: translateY(-3px) scale(1.02);
            z-index: 20;
        }

        /* Selected animation */
        @keyframes pulseSelected {

            0%,
            100% {
                box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2), 0 0 30px rgba(37, 99, 235, 0.3);
            }

            50% {
                box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3), 0 0 40px rgba(37, 99, 235, 0.4);
            }
        }

        .amount-option.selected {
            animation: pulseSelected 2s infinite;
        }

        .amount-received {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            position: relative;
            z-index: 2;
            color: var(--dark);
        }

        .amount-cost {
            font-size: 0.85rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            color: var(--gray-600);
        }

        /* Special offer badge */
        .amount-option.has-offer::after {
            content: 'OFFER';
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary);
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            transform: rotate(15deg);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* Fix: Ensure all amount options have consistent hover behavior */
        .amount-grid>* {
            position: relative;
            z-index: 1;
        }

        .amount-grid>*:hover {
            z-index: 100;
        }

        /* Fix: Touch device optimization for amount options */
        @media (hover: none) and (pointer: coarse) {
            .amount-option:hover {
                transform: none;
                box-shadow: none;
            }

            .amount-option:active:not(.selected) {
                border-color: var(--primary);
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
            }

            .amount-option.selected:active {
                transform: translateY(-3px) scale(1.02);
            }
        }

        /* Custom amount input */
        .custom-amount-input {
            margin-top: 1rem;
        }

        .custom-amount-input input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid rgba(226, 232, 240, 0.5);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.9);
        }

        .custom-amount-input input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        /* Amount grid loading skeleton */
        .amount-grid.loading .amount-option {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            min-height: 80px;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .amount-input-container {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(241, 245, 249, 0.8);
            border-radius: var(--radius);
            border: 2px solid rgba(226, 232, 240, 0.5);
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        /* .amount-input-container:focus-within {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.9);
        } */

        .amount-input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid rgba(226, 232, 240, 0.5);
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 480px) {
            .amount-input {
                padding: 0.75rem;
            }
        }

        .amount-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .amount-range-info {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .submit-btn {
                padding: 0.875rem;
                font-size: 0.95rem;
                margin-top: 1.25rem;
            }
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3), 0 0 20px rgba(37, 99, 235, 0.2);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }

        .submit-btn:disabled {
            background: var(--gray-300);
            cursor: not-allowed;
            transform: none !important;
            box-shadow: var(--shadow-sm);
        }

        /* Operators Card - UPDATED FOR TAB SYSTEM */
        .operators-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            box-shadow: var(--shadow-lg);
            height: 100%;
            backdrop-filter: blur(10px);

            position: relative;
            overflow: hidden;
        }

        .operators-card .operator-card-name {
            font-size: 0.74rem;
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .operators-card {
                padding: 1.5rem;
                border-radius: var(--radius-lg);
            }
        }

        @media (max-width: 480px) {
            .operators-card {
                padding: 1.25rem;
            }
        }

        .operators-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }

        .operators-card:hover::after {
            opacity: 1;
        }

        .operators-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 768px) {
            .operators-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                margin-bottom: 1.25rem;
            }
        }

        .operators-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @media (max-width: 768px) {
            .operators-title {
                font-size: 1.2rem;
            }
        }

        .operators-tabs {
            display: flex;
            background: rgba(241, 245, 249, 0.8);
            border-radius: var(--radius);
            padding: 0.25rem;
            flex-wrap: wrap;
        }

        .operator-tab {
            padding: 0.5rem 0.875rem;
            margin-right: 5px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-500);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            background: transparent;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .operator-tab {
                padding: 0.375rem 0.75rem;
                font-size: 0.8rem;
            }
        }

        .operator-tab.active {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .operator-tab:not(.active):hover {
            color: var(--dark);
        }

        /* Small Corner Badge Styles */
        .operator-tab {
            position: relative;
            padding: 0.5rem 0.875rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--gray-500);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            background: transparent;
            white-space: nowrap;
        }

        .tab-badge-corner {
            position: absolute;
            top: -5px;
            right: -5px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 14px;
            height: 14px;
            padding: 0 3px;
            background: var(--primary);
            color: white;
            border-radius: 8px;
            font-size: 0.70rem;
            font-weight: 700;
            transition: var(--transition);
            z-index: 1;
        }

        /* Active tab badge */
        .operator-tab.active .tab-badge-corner {
            background: var(--dark-2);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3);
        }

        /* Hover state */
        .operator-tab:hover .tab-badge-corner {
            transform: scale(1.15);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tab-badge-corner {
                min-width: 14px;
                height: 14px;
                font-size: 0.55rem;
                top: -4px;
                right: -4px;
            }
        }

        @media (max-width: 480px) {
            .tab-badge-corner {
                min-width: 12px;
                height: 12px;
                font-size: 0.5rem;
                top: -3px;
                right: -3px;
            }

            .operator-tab {
                font-size: 0.80rem;
            }
        }

        /* Badge animation */
        @keyframes badgeBounce {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-2px) scale(1.1);
            }
        }

        .operator-tab.active .tab-badge-corner {
            animation: badgeBounce 0.5s ease;
        }

        /* Tab Content Sections */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        /* UPDATED GRID: 4 on big, 3 on medium, 2 on mobile */
        .operators-grid {
            display: grid;
            max-height: 400px;
            overflow-y: auto;
            padding: 0.75rem;
            position: relative;
        }

        /* Big Screens (Desktop & Large Tablets): 4 cards per row */
        @media (min-width: 1025px) {
            .operators-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
            }

            .operator-card-item {
                padding: 1.25rem 1rem;
            }

            .operator-card-logo {
                width: 52px;
                height: 52px;
                margin-bottom: 0.875rem;
            }

            .operator-card-name {
                font-size: 0.95rem;
            }
        }

        /* Medium Screens (Tablets): 3 cards per row */
        @media (max-width: 1024px) and (min-width: 769px) {
            .operators-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.875rem;
            }

            .operator-card-item {
                padding: 1.15rem 0.875rem;
            }

            .operator-card-logo {
                width: 48px;
                height: 48px;
                margin-bottom: 0.75rem;
            }

            .operator-card-name {
                font-size: 0.9rem;
            }
        }

        /* Small Tablets: 3 cards per row (compact) */
        @media (max-width: 768px) and (min-width: 641px) {
            .operators-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
                max-height: 350px;
            }

            .operator-card-item {
                padding: 1rem 0.75rem;
            }

            .operator-card-logo {
                width: 45px;
                height: 45px;
                margin-bottom: 0.625rem;
            }

            .operator-card-name {
                font-size: 0.85rem;
            }
        }

        /* Mobile & Small Tablets: 2 cards per row */
        @media (max-width: 640px) {
            .operators-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                max-height: 400px;
            }

            .operator-card-item {
                padding: 1.25rem 0.875rem;
            }

            .operator-card-logo {
                width: 50px;
                height: 50px;
                margin-bottom: 0.75rem;
            }

            .operator-card-name {
                font-size: 0.9rem;
            }
        }

        /* Very Small Mobile: 2 cards per row (more compact) */
        @media (max-width: 480px) {
            .operators-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.625rem;
                max-height: 350px;
            }

            .operator-card-item {
                padding: 1rem 0.625rem;
            }

            .operator-card-logo {
                width: 44px;
                height: 44px;
                margin-bottom: 0.5rem;
                padding: 0.375rem;
            }

            .operator-card-name {
                font-size: 0.82rem;
            }
        }

        /* Extra Small Mobile: 2 cards per row (most compact) */
        @media (max-width: 375px) {
            .operators-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
                max-height: 320px;
            }

            .operator-card-item {
                padding: 0.875rem 0.5rem;
            }

            .operator-card-logo {
                width: 40px;
                height: 40px;
                margin-bottom: 0.375rem;
                padding: 0.25rem;
            }

            .operator-card-name {
                font-size: 0.78rem;
                line-height: 1.2;
            }
        }

/* Style scrollbars for both elements */
.amount-option::-webkit-scrollbar,
.amount-section::-webkit-scrollbar {
    width: 6px;
}

.amount-option::-webkit-scrollbar-track,
.amount-section::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.5);
}

.amount-option::-webkit-scrollbar-thumb,
.amount-section::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 4px;
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);  
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);  
    border-radius: var(--radius-sm); 
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark); 
}
#phoneInput {
  
    scroll-margin-top: 20px; 
}

        .operator-card-item {
            background: rgba(241, 245, 249, 0.8);
            border-radius: var(--radius);
            padding: 1.10rem 0.875rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            isolation: isolate;
        }

        .operator-card-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            right: 50%;
            width: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .operator-card-item:not(.selected):hover::after {
            left: 0;
            right: 0;
            width: 100%;
            transform: scaleX(1);
        }

        .operator-card-item:hover:not(.selected) {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
            z-index: 100;
        }

        .operator-card-item.selected {
            border-color: var(--primary);
            border: 1.5px solid var(--primary);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(37, 99, 235, 0.2);
            z-index: 101;
        }

        .operators-grid>* {
            position: relative;
            z-index: 1;
        }

        .operators-grid>*:hover {
            z-index: 100;
        }

        .operator-card-logo {
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-sm);
            padding: 0.5rem;
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 1;
        }

        .operator-card-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .operator-card-name {
            font-weight: 600;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Fix: Touch device optimization */
        @media (hover: none) and (pointer: coarse) {
            .operator-card-item:hover:not(.selected) {
                transform: none;
            }

            .operator-card-item:active:not(.selected) {
                border-color: var(--primary-light);
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
            }
        }

        /* Helper Message */
        .helper-message {
            background: linear-gradient(135deg, rgba(240, 249, 255, 0.9), rgba(254, 252, 232, 0.9));
            border-radius: var(--radius);
            padding: 1.25rem;
            text-align: center;
            margin-top: 1.5rem;
            border-left: 4px solid var(--primary);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .helper-message {
                padding: 1rem;
                margin-top: 1.25rem;
            }
        }

        .helper-message::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .helper-message:hover::before {
            transform: translateX(100%);
        }

        .helper-message h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .helper-message p {
            color: var(--gray-500);
            font-size: 0.9rem;
        }
        /* Loading Spinner */
        .spinner {
            width: 32px;
            height: 32px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Dropdown Overlay */
        .dropdown-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
            display: none;
        }

        /* Mobile Adjustments */
        @media (max-width: 640px) {
            .compact-banner .banner-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .country-display,
            .operator-display {
                justify-content: center;
                text-align: center;
            }

            .quick-stats {

                display: none;
            }


        }

        /* Loading Animation */
        .fa-spinner {
            font-size: 2rem;
            color: var(--primary);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
