
        /* ============================================
           COMPLETE CONTACT PAGE STYLES
           ============================================ */
        
        /* Base */
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        /* ✅ FIXED: Skip to main content link */
        .skip-link {
            position: absolute;
            top: -9999px;
            left: 50%;
            transform: translateX(-50%);
            padding: 12px 24px;
            background: #f97316;
            color: #ffffff;
            border-radius: 0 0 8px 8px;
            z-index: 9999;
            font-weight: 600;
            text-decoration: none;
        }
        
        .skip-link:focus {
            top: 0;
        }
        
        /* ✅ FIXED: Main landmark */
        main {
            outline: none;
        }
        
        /* Toast animations */
        .toast {
            animation: slide-in 0.5s ease forwards;
        }
        
        @keyframes slide-in {
            from { opacity: 0; transform: translateX(100%); }
            to   { opacity: 1; transform: translateX(0); }
        }
        
        .toast-success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }
        
        .toast-error {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
        }
        
        .toast-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            margin-right: 10px;
            font-size: 14px;
            flex-shrink: 0;
        }

        /* Spinner animation */
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .animate-spin-custom {
            animation: spin 1s linear infinite;
        }
        
        /* ✅ FIXED: Focus indicators for accessibility */
        *:focus-visible {
            outline: 3px solid #f97316;
            outline-offset: 2px;
        }
        
        input:focus, 
        select:focus, 
        textarea:focus {
            outline: none;
            border-color: #f97316;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }

        /* Honeypot field - hide from users */
        .hp-field {
            position: absolute;
            left: -9999px;
            top: -9999px;
        }

        /* Location card styles */
        .location-card {
            transition: all 0.3s ease;
            border: 1px solid #f3f4f6;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .location-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            transform: translateY(-4px);
            border-color: #f97316;
        }

        .location-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .location-header .city-badge {
            background: linear-gradient(135deg, #f97316, #ec4899);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        /* Contact info items */
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: #f8fafc;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .contact-info-item:hover {
            background: #f1f5f9;
        }
        
        .contact-info-item .icon-wrapper {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
        }
        
        .icon-wrapper.phone-icon {
            background: #fef3c7;
            color: #f59e0b;
        }
        
        .icon-wrapper.whatsapp-icon {
            background: #d1fae5;
            color: #10b981;
        }
        
        .icon-wrapper.map-icon {
            background: #dbeafe;
            color: #3b82f6;
        }
        
        .contact-info-item .info-text {
            font-size: 13px;
            font-weight: 500;
            color: #1e293b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-info-item .info-text:hover {
            color: #f97316;
        }
        
        .contact-info-item .info-label {
            font-size: 10px;
            color: #94a3b8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .whatsapp-link .info-text {
            color: #059669 !important;
        }
        
        .whatsapp-link .info-text:hover {
            color: #047857 !important;
        }
        
        /* Action buttons */
        .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-top: 12px;
        }
        
        .action-btn {
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            min-height: 38px;
        }
        
        .action-btn.btn-call {
            background: #fef3c7;
            color: #d97706;
            border: 1px solid #fde68a;
        }
        
        .action-btn.btn-call:hover {
            background: #f59e0b;
            color: white;
            transform: scale(1.02);
        }
        
        .action-btn.btn-whatsapp {
            background: #d1fae5;
            color: #059669;
            border: 1px solid #a7f3d0;
        }
        
        .action-btn.btn-whatsapp:hover {
            background: #10b981;
            color: white;
            transform: scale(1.02);
        }
        
        .action-btn.btn-map {
            background: #dbeafe;
            color: #2563eb;
            border: 1px solid #bfdbfe;
            grid-column: 1 / -1;
        }
        
        .action-btn.btn-map:hover {
            background: #2563eb;
            color: white;
            transform: scale(1.02);
        }
        
        /* ✅ FIXED: Higher contrast text */
        .text-gray-400 {
            color: #6b7280 !important;
        }
        
        .info-label {
            color: #4b5563 !important;
            font-weight: 500;
        }
        
        /* ✅ FIXED: Responsive buttons */
        @media (max-width: 640px) {
            #submitBtn {
                width: 100%;
                justify-content: center;
                font-size: 0.9rem;
                padding: 0.75rem 1.5rem;
            }
            
            .action-btn {
                font-size: 0.8rem;
                padding: 0.5rem 0.75rem;
                min-height: 38px;
            }
            
            .action-buttons {
                grid-template-columns: 1fr;
                gap: 6px;
            }
            
            .action-btn.btn-map {
                grid-column: 1;
            }
            
            .location-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
            
            .contact-info-item {
                padding: 6px 10px;
            }
            
            .contact-info-item .info-text {
                font-size: 12px;
            }
        }
        
        @media (max-width: 400px) {
            .action-btn {
                font-size: 0.7rem;
                padding: 0.4rem 0.6rem;
                min-height: 34px;
            }
            
            .location-header h3 {
                font-size: 1rem;
            }
            
            .location-header .city-badge {
                font-size: 9px;
                padding: 2px 10px;
            }
        }
        
        /* ✅ FIXED: Respect user preferences */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
  