  :root {
            --primary-navy: #003285;
            --deep-teal: #F7EEDD;
            --rich-gold: #F7EEDD;
            --warm-bronze: #F7EEDD;
            --sage-green: #8b9b6b;
            --cream-elegant: #f8f6f1;
            --pearl-luxury: #fefcf7;
            --charcoal-deep: #003285;
            --warm-gray: #6c757d;
            --light-sand: #f5f3ee;
            --success-green: #28a745;
            --error-red: #dc3545;


            
            --gradient-hero: linear-gradient(135deg, #003285 0%, #1a4b66 50%, #2c3e50 100%);
            --gradient-gold: linear-gradient(135deg, #c5955b 0%, #b8860b 100%);
            --gradient-elegant: linear-gradient(135deg, #f8f6f1 0%, #fefcf7 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(28, 50, 92, 0.9) 0%, rgba(26, 75, 102, 0.8) 100%);
            --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            --gradient-error: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
            
            --shadow-subtle: 0 4px 20px rgba(28, 50, 92, 0.08);
            --shadow-medium: 0 8px 32px rgba(28, 50, 92, 0.12);
            --shadow-dramatic: 0 16px 48px rgba(28, 50, 92, 0.15);
            --shadow-gold: 0 6px 25px rgba(197, 149, 91, 0.3);
            --shadow-success: 0 6px 25px rgba(40, 167, 69, 0.3);
            
            --border-radius-lg: 20px;
            --border-radius-xl: 25px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--gradient-elegant);
            color: var(--charcoal-deep);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
            font-size: clamp(0.9rem, 1.6vw, 1rem); /* Base responsive font size */
        }

        /* Animated Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(197, 149, 91, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(28, 50, 92, 0.05) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundFlow 20s ease-in-out infinite;
        }

        @keyframes backgroundFlow {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        /* Hero Section */
        .contact-hero {
            background: var(--gradient-hero);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.15)"/></svg>') repeat-x;
            opacity: 0.6;
            animation: waveFlow 8s ease-in-out infinite;
        }

        @keyframes waveFlow {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-20px); }
        }

        .contact-hero::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(197, 149, 91, 0.1) 0%, transparent 70%);
            animation: rotateGlow 30s linear infinite;
        }

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out;
            padding: 0;
        }

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

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4.5vw, 4rem); /* Updated responsive sizing */
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.2vw, 1.4rem); /* Updated responsive sizing */
            opacity: 0.95;
            margin-bottom: 50px;
            line-height: 1.8;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .hero-stat {
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(197, 149, 91, 0.3);
            transition: var(--transition-smooth);
        }

        .hero-stat:hover {
            transform: translateY(-5px);
            background: rgba(197, 149, 91, 0.2);
            box-shadow: var(--shadow-gold);
        }

        .hero-stat i {
            font-size: clamp(2.2rem, 4vw, 3rem); /* Updated responsive sizing */
            color: var(--rich-gold);
            margin-bottom: 15px;
            display: block;
        }

        .hero-stat h4 {
            font-size: clamp(1rem, 1.8vw, 1.2rem); /* Updated responsive sizing */
            margin-bottom: 8px;
            font-weight: 600;
        }

        .hero-stat p {
            font-size: clamp(0.85rem, 1.5vw, 1rem); /* Updated responsive sizing */
            opacity: 0.9;
            margin: 0;
        }

        /* Main Contact Section */
        .contact-main-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .contact-main-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, var(--gradient-elegant) 0%, white 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-navy);
            font-size: clamp(1.8rem, 3.2vw, 2.5rem); /* Updated responsive sizing */
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--warm-gray);
            font-size: clamp(1rem, 1.8vw, 1.2rem); /* Updated responsive sizing */
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Contact Methods Grid */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .contact-method {
            background: var(--light-sand);
            border-radius: var(--border-radius-xl);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-medium);
            border: 2px solid rgba(197, 149, 91, 0.1);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .contact-method::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(197, 149, 91, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .contact-method:hover::before {
            left: 100%;
        }

        .contact-method:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dramatic);
            border-color: var(--rich-gold);
        }

        .contact-method-icon {
            width: clamp(70px, 10vw, 80px); /* Updated responsive sizing */
            height: clamp(70px, 10vw, 80px); /* Updated responsive sizing */
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: clamp(1.6rem, 2.8vw, 2rem); /* Updated responsive sizing */
            color: var(--primary-navy);
            box-shadow: var(--shadow-gold);
            transition: var(--transition-smooth);
        }

        .contact-method:hover .contact-method-icon {
            transform: scale(1.1);
        }

        .contact-method-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-navy);
            font-size: clamp(1.2rem, 2.2vw, 1.4rem); /* Updated responsive sizing */
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-method-info {
            color: var(--charcoal-deep);
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: clamp(0.9rem, 1.6vw, 1rem); /* Updated responsive sizing */
        }

        .contact-method-link {
            color: var(--rich-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(1rem, 1.8vw, 1.1rem); /* Updated responsive sizing */
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .contact-method-link:hover {
            color: var(--warm-bronze);
            transform: translateX(5px);
        }

        /* Contact Form */
        .contact-form-section {
            background: var(--light-sand);
            border-radius: var(--border-radius-xl);
            padding: 60px;
            box-shadow: var(--shadow-dramatic);
            border: 3px solid rgba(197, 149, 91, 0.2);
            position: relative;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-gold);
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-navy);
            font-size: clamp(1.6rem, 2.8vw, 2.2rem); /* Updated responsive sizing */
            font-weight: 600;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            color: var(--primary-navy);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
            font-size: clamp(0.9rem, 1.6vw, 1rem); /* Updated responsive sizing */
        }

        .form-control {
            width: 100%;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 18px 20px;
            font-size: clamp(0.9rem, 1.6vw, 1rem); /* Updated responsive sizing */
            transition: var(--transition-smooth);
            background: white;
            font-family: 'Inter', sans-serif;
            box-shadow: var(--shadow-subtle);
        }

        .form-control:focus {
            border-color: var(--rich-gold);
            box-shadow: 0 0 0 0.25rem rgba(197, 149, 91, 0.15);
            outline: none;
            transform: translateY(-2px);
        }

        .form-control::placeholder {
            color: #adb5bd;
        }

        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c5955b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px 12px;
            cursor: pointer;
        }

        .form-textarea {
            min-height: 140px;
            resize: vertical;
            font-family: 'Inter', sans-serif;
        }

        .submit-btn {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            border: none;
            padding: clamp(16px, 2.5vw, 20px) clamp(30px, 6vw, 50px); /* Updated responsive padding */
            border-radius: clamp(25px, 4vw, 50px); /* Updated responsive border-radius */
            font-weight: 700;
            font-size: clamp(1rem, 1.8vw, 1.2rem); /* Updated responsive sizing */
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-gold);
            position: relative;
            overflow: hidden;
            width: 100%;
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 56px;
            max-width: 400px;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

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

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(197, 149, 91, 0.4);
            background: linear-gradient(135deg, #d4a574 0%, #c5955b 100%);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .submit-btn i {
            font-size: clamp(1.1rem, 1.8vw, 1.3rem); /* Updated responsive sizing */
        }

        /* reCAPTCHA styling */
        .recaptcha-container {
            display: flex;
            justify-content: center;
            margin: 25px 0;
        }

        /* Error Messages */
        .error-container {
            background: rgba(220, 53, 69, 0.1);
            border: 2px solid rgba(220, 53, 69, 0.3);
            color: var(--error-red);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .error-container h4 {
            margin-bottom: 15px;
            font-weight: 600;
            font-size: clamp(1rem, 1.8vw, 1.1rem); /* Updated responsive sizing */
        }

        .error-container ul {
            margin-bottom: 0;
            padding-left: 20px;
        }

        .field-error {
            color: var(--error-red);
            font-size: clamp(0.8rem, 1.4vw, 0.875rem); /* Updated responsive sizing */
            margin-top: 8px;
            padding: 5px 0;
            font-weight: 500;
        }

        /* Office Info Section */
        .office-info-section {
            padding: 80px 0;
            background: var(--gradient-elegant);
        }

        .office-card {
            background: white;
            border-radius: var(--border-radius-xl);
            padding: 50px;
            text-align: center;
            box-shadow: var(--shadow-medium);
            border: 2px solid rgba(197, 149, 91, 0.2);
            max-width: 900px;
            margin: 0 auto;
        }

        .office-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-navy);
            font-size: clamp(1.6rem, 2.8vw, 2rem); /* Updated responsive sizing */
            font-weight: 600;
            margin-bottom: 30px;
        }

        .office-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .office-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 25px;
            background: var(--light-sand);
            border-radius: 15px;
            border: 2px solid rgba(197, 149, 91, 0.2);
            transition: var(--transition-smooth);
        }

        .office-detail:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            border-color: var(--rich-gold);
        }

        .office-detail i {
            color: var(--rich-gold);
            font-size: clamp(1.5rem, 2.5vw, 1.8rem); /* Updated responsive sizing */
            width: 40px;
        }

        .office-detail-text {
            color: var(--charcoal-deep);
            font-weight: 500;
            text-align: left;
            line-height: 1.5;
            font-size: clamp(0.9rem, 1.6vw, 1rem); /* Updated responsive sizing */
        }

        /* Mobile Responsive */

@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Fix container overflow */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-hero {
        padding: 130px 0 60px;
        min-height: 60vh;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .office-info-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .office-card {
        padding: 40px 20px;
        margin: 0 10px;
        border-radius: 15px;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .office-details {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .office-detail {
        justify-content: flex-start;
        padding: 20px 15px;
        margin: 0;
        box-sizing: border-box;
        width: 100%;
        border-radius: 12px;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    
    .office-detail i {
        color: var(--rich-gold);
        font-size: 1.6rem;
        width: 30px;
        flex-shrink: 0;
        text-align: center;
    }
    
    .office-detail-text {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
        font-size: 0.95rem;
        text-align: left;
    }
    
    .office-detail-text strong {
        color: var(--primary-navy);
        font-size: 1rem;
        display: block;
        margin-bottom: 5px;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
        padding: 16px 24px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-form-section {
        padding: 30px 15px;
        margin: 0 5px;
    }
    
    .office-card {
        padding: 30px 15px;
        margin: 0 5px;
        width: calc(100% - 10px);
    }
    
    .office-detail {
        padding: 18px 12px;
        gap: 10px;
    }
    
    .office-detail i {
        font-size: 1.4rem;
        width: 25px;
    }
    
    .office-detail-text {
        font-size: 0.9rem;
    }
    
    .office-detail-text strong {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
        border-radius: 20px;
        max-width: 100%;
    }
}

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(28, 50, 92, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .loading-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .spinner {
            width: clamp(50px, 8vw, 60px); /* Updated responsive sizing */
            height: clamp(50px, 8vw, 60px); /* Updated responsive sizing */
            border: 4px solid rgba(197, 149, 91, 0.3);
            border-top: 4px solid var(--rich-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Accessibility Improvements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus states for better accessibility */
        .submit-btn:focus,
        .submit-btn:focus-visible {
            outline: 3px solid rgba(197, 149, 91, 0.5);
            outline-offset: 2px;
        }

        .form-control:focus {
            outline: 2px solid rgba(197, 149, 91, 0.3);
            outline-offset: 2px;
        }