    /* ===== CONTACT PAGE OPTIMIZED ===== */

    /* Hero Section */
    .contact-hero {
        background: linear-gradient(135deg, #0a2540 0%, #1a365d 50%, #2d4a6f 100%);
        padding: 6rem 2rem 4rem;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
        margin-top: 70px;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }

    .contact-hero-content {
        position: relative;
        z-index: 1;
        max-width: 700px;
        margin: 0 auto;
    }

    .contact-hero-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
        }
    }

    .contact-hero-icon svg {
        width: 40px;
        height: 40px;
        color: var(--color-accent, #ff6b6b);
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 1rem;
        line-height: 1.2;
    }

    .contact-hero p {
        font-size: 1.15rem;
        opacity: 0.9;
        margin: 0;
        line-height: 1.6;
    }

    /* Main Layout */
    .contact-layout {
        max-width: 1200px;
        margin: -3rem auto 0;
        padding: 0 2rem 4rem;
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 2rem;
        position: relative;
        z-index: 2;
    }

    /* Info Card - Glassmorphism */
    .contact-info-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .contact-info-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0a2540;
        margin: 0 0 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .contact-info-title::before {
        content: '';
        width: 4px;
        height: 24px;
        background: var(--color-accent, #ff6b6b);
        border-radius: 2px;
    }

    /* Contact Items */
    .contact-item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .contact-item:hover {
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transform: translateX(5px);
    }

    .contact-item-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--color-accent, #ff6b6b) 0%, #e85555 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-item-icon svg {
        width: 22px;
        height: 22px;
        color: #fff;
    }

    .contact-item-content h3 {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #6c757d;
        margin: 0 0 0.25rem;
    }

    .contact-item-content p,
    .contact-item-content a {
        font-size: 0.95rem;
        font-weight: 600;
        color: #0a2540;
        margin: 0;
        text-decoration: none;
        line-height: 1.5;
    }

    .contact-item-content a:hover {
        color: var(--color-accent, #ff6b6b);
    }

    /* Hours Badge */
    .contact-hours {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: #fff;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .contact-hours svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .contact-hours span {
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* Social Links */
    .contact-social {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }

    .contact-social-title {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #6c757d;
        margin: 0 0 1rem;
    }

    .contact-social-links {
        display: flex;
        gap: 0.75rem;
    }

    .contact-social-link {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
    }

    .contact-social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .contact-social-link svg {
        width: 18px;
        height: 18px;
    }

    .social-facebook {
        background: #1877f2;
    }

    .social-twitter {
        background: #14171a;
    }

    .social-linkedin {
        background: #0077b5;
    }

    .social-instagram {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    /* Form Card */
    .contact-form-card {
        background: #fff;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }

    .contact-form-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0a2540;
        margin: 0 0 0.5rem;
    }

    .contact-form-subtitle {
        color: #6c757d;
        margin: 0 0 2rem;
        font-size: 1rem;
    }

    /* Form Styles - Works with WPForms, CF7, and native */
    .contact-form-container .wpforms-container,
    .contact-form-container .wpcf7,
    .contact-form-native {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    /* Native Form Styles */
    .form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #0a2540;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--color-accent, #ff6b6b);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 140px;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #adb5bd;
    }

    /* Submit Button */
    .btn-contact-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--color-accent, #ff6b6b) 0%, #e85555 100%);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 0.5rem;
    }

    .btn-contact-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    }

    .btn-contact-submit svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .btn-contact-submit:hover svg {
        transform: translateX(5px);
    }

    /* WPForms & CF7 Overrides */
    .contact-form-container .wpforms-submit-container,
    .contact-form-container .wpcf7-submit {
        margin-top: 1rem;
    }

    .contact-form-container .wpforms-submit,
    .contact-form-container .wpcf7-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem !important;
        background: linear-gradient(135deg, var(--color-accent, #ff6b6b) 0%, #e85555 100%) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .contact-form-container .wpforms-field input,
    .contact-form-container .wpforms-field textarea,
    .contact-form-container .wpcf7-form-control {
        padding: 0.875rem 1rem !important;
        border: 2px solid #e9ecef !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
        background: #f8f9fa !important;
    }

    .contact-form-container .wpforms-field input:focus,
    .contact-form-container .wpforms-field textarea:focus,
    .contact-form-container .wpcf7-form-control:focus {
        border-color: var(--color-accent, #ff6b6b) !important;
        background: #fff !important;
        box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1) !important;
    }

    /* Trust Badges */
    .contact-trust {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: #6c757d;
    }

    .trust-item svg {
        width: 18px;
        height: 18px;
        color: #28a745;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .contact-layout {
            grid-template-columns: 1fr;
            margin-top: -2rem;
        }

        .contact-info-card {
            position: static;
            order: 2;
        }

        .contact-form-card {
            order: 1;
        }
    }

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

        .contact-hero h1 {
            font-size: 1.75rem;
        }

        .contact-layout {
            padding: 0 1rem 3rem;
        }

        .contact-form-card {
            padding: 1.5rem;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-trust {
            flex-direction: column;
            gap: 0.75rem;
        }
    }
