        /* ===== PREMIUM CONTACT SECTION TRANSFORMATION ===== */
        .contact {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #111827 100%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact .container {
            position: relative;
            z-index: 2;
        }

        /* Premium Section Headers */
        .contact .section__title {
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1.5rem;
            font-family: var(--font-secondary);
            letter-spacing: -0.02em;
        }

        .contact .section__subtitle {
            color: #94a3b8;
            font-size: 1.25rem;
            text-align: center;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 4rem;
            font-weight: 400;
        }

        /* Enhanced Contact Content Layout */
        .contact__content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        /* Premium Contact Form Container */
        .contact__form-container {
            background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(233, 181, 55, 0.2);
            border-radius: 24px;
            padding: 3.5rem;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact__form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                rgba(59, 130, 246, 0.8) 0%,
                rgba(16, 185, 129, 0.8) 50%,
                rgba(245, 158, 11, 0.8) 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Enhanced Form Groups */
        .form__group {
            position: relative;
            margin-bottom: 2rem;
        }

        /* Premium Form Inputs */
        .form__input {
            width: 100%;
            padding: 1.25rem 1.25rem 1.25rem 3.5rem;
            background: rgba(15, 23, 42, 0.6);
            border: 2px solid rgba(233, 181, 55, 0.2);
            border-radius: 16px;
            color: #f1f5f9;
            font-size: 1rem;
            font-weight: 500;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .form__input:focus {
            outline: none;
            border-color: #E9B537;
            box-shadow:
                0 0 0 4px rgba(233, 181, 55, 0.15),
                0 10px 25px rgba(233, 181, 55, 0.1);
            transform: translateY(-1px);
            background: rgba(15, 23, 42, 0.8);
        }

        .form__input::placeholder {
            color: #64748b;
            font-weight: 400;
        }

        /* Premium Form Icons */
        .form__icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .form__input:focus ~ .form__icon {
            color: #3b82f6;
            transform: translateY(-50%) scale(1.1);
        }

        /* Enhanced Textarea */
        .form__textarea {
            min-height: 120px;
            resize: vertical;
            padding-top: 1.25rem;
        }

        /* Premium Submit Button */
        .btn--primary {
            width: 100%;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
            border: none;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 10px 25px rgba(59, 130, 246, 0.3),
                0 4px 6px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn--primary::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;
        }

        .btn--primary:hover {
            transform: translateY(-2px);
            box-shadow:
                0 15px 35px rgba(59, 130, 246, 0.4),
                0 8px 16px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
        }

        .btn--primary:hover::before {
            left: 100%;
        }

        .btn--primary:active {
            transform: translateY(0);
        }

        /* Enhanced Contact Info Section */
        .contact__info {
            display: flex;
            flex-direction: column;
            gap: 2rem; /* Increased gap between cards */
        }

        /* Premium Contact Cards */
        .contact__card {
            background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(233, 181, 55, 0.15);
            border-radius: 20px;
            padding: 2rem;
            padding-bottom: 3rem; /* Extra bottom padding for buttons */
            position: relative;
            overflow: visible; /* Allow buttons to show fully */
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 10px 25px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            min-height: 280px; /* Ensure enough height for content */
        }

        .contact__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                rgba(59, 130, 246, 0.05) 0%,
                rgba(16, 185, 129, 0.05) 50%,
                rgba(245, 158, 11, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .contact__card:hover {
            transform: translateY(-8px);
            border-color: rgba(233, 181, 55, 0.3);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(233, 181, 55, 0.2);
        }

        .contact__card:hover::before {
            opacity: 1;
        }

        /* Urgent and Priority Cards */
        .contact__card--urgent {
            border: 2px solid rgba(239, 68, 68, 0.3);
            background: linear-gradient(145deg,
                rgba(239, 68, 68, 0.1) 0%,
                rgba(30, 41, 59, 0.8) 50%,
                rgba(15, 23, 42, 0.9) 100%);
        }

        .contact__card--priority {
            border: 2px solid rgba(16, 185, 129, 0.3);
            background: linear-gradient(145deg,
                rgba(16, 185, 129, 0.1) 0%,
                rgba(30, 41, 59, 0.8) 50%,
                rgba(15, 23, 42, 0.9) 100%);
        }

        /* Premium Card Icons */
        .contact__card i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            display: block;
        }

        .contact__card--urgent i {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact__card--priority i {
            background: linear-gradient(135deg, #10b981, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Premium Card Typography */
        .contact__card h4 {
            color: #f1f5f9;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: var(--font-secondary);
        }

        .contact__card p {
            color: #cbd5e1;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .contact__card span {
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .contact__card a {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        /* Phone number card styling */
        .contact__card a[href^="tel:"] {
            display: inline-block;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            margin: 0.5rem 0;
            border: 2px solid rgba(96, 165, 250, 0.3);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        /* Email address card styling */
        .contact__card a[href^="mailto:"] {
            display: inline-block;
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            margin: 0.5rem 0;
            border: 2px solid rgba(16, 185, 129, 0.3);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }

        .contact__card a[href^="tel:"]:before,
        .contact__card a[href^="mailto:"]: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;
        }

        .contact__card a[href^="tel:"]:hover:before,
        .contact__card a[href^="mailto:"]:hover:before {
            left: 100%;
        }

        .contact__card a[href^="tel:"]:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            border-color: #60a5fa;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }

        .contact__card a[href^="mailto:"]:hover {
            background: linear-gradient(135deg, #047857 0%, #065f46 100%);
            border-color: #34d399;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }

        .contact__card a:hover {
            color: #3b82f6;
            text-decoration: underline;
        }

        /* Premium Badges */
        .urgent-badge, .priority-badge {
            position: absolute;
            top: -8px;
            right: 1.5rem;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .priority-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }

        /* Premium Buttons in Cards */
        .live-chat-btn, .video-call-btn {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
            box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
            position: relative;
            overflow: visible;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 44px; /* Ensure minimum touch target */
            white-space: nowrap;
        }

        .live-chat-btn:hover, .video-call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
        }

        /* Ensure buttons don't get cut off in urgent/priority cards */
        .contact__card--urgent,
        .contact__card--priority {
            padding-bottom: 3.5rem; /* Extra space for buttons */
            min-height: 320px; /* More height for special cards */
        }

        /* Premium Response Time Indicators */
        .response-time {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem; /* Space above buttons */
            padding: 0.75rem;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 8px;
            border-left: 3px solid #3b82f6;
        }

        .response-time i {
            color: #3b82f6 !important;
            font-size: 1rem !important;
            background: none !important;
            -webkit-text-fill-color: #3b82f6 !important;
        }

        .response-time span {
            color: #cbd5e1;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Online Indicator Animation */
        .online-indicator {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            margin-left: 0.5rem;
            display: inline-block;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact__content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact .section__title {
                font-size: 2.75rem;
            }

            .contact__form-container {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .contact {
                padding: 4rem 0;
            }

            .contact .section__title {
                font-size: 2.25rem;
            }

            .contact .section__subtitle {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .contact__form-container {
                padding: 2rem;
                border-radius: 16px;
            }

            .form__input {
                padding: 1rem 1rem 1rem 3rem;
            }

            .btn--primary {
                padding: 1.25rem 1.5rem;
            }

            .contact__card {
                padding: 1.5rem;
                padding-bottom: 2.5rem; /* Extra bottom padding for mobile */
                min-height: 260px; /* Adequate height for mobile */
            }

            .contact__card--urgent,
            .contact__card--priority {
                padding-bottom: 3rem;
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .contact__form-container {
                padding: 1.5rem;
            }

            .form__input {
                padding: 0.875rem 0.875rem 0.875rem 2.5rem;
                font-size: 0.95rem;
            }

            .form__icon {
                left: 1rem;
                font-size: 1rem;
            }
        }
