/* ==========================================
   CONTACT MODAL - PREMIUM LIGHT STYLE
   Header Blue + Body White (Matching Anexit Brand)
   ========================================== */

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 0, 158, 0.4);
    /* Subtle blue tint for overlay */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid var(--premium-border-dark);
    box-shadow: 0 25px 50px -12px rgba(13, 0, 158, 0.25);
    overflow: hidden;
    animation: contactModalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', sans-serif;
}

@keyframes contactModalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-modal-header {
    padding: 1.25rem 1.5rem 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--premium-primary);
    border-bottom: none;
}

.contact-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-modal-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.contact-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-modal-body {
    padding: 2.25rem 2rem;
}

.contact-modal-text {
    color: var(--premium-primary);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-option-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 1px solid var(--premium-border-dark);
    background: #ffffff;
    color: var(--premium-primary);
}

.contact-option-btn:hover {
    transform: translateY(-2px);
    background: var(--premium-accent-light);
    border-color: var(--premium-primary);
    box-shadow: 0 8px 24px rgba(13, 0, 158, 0.12);
}

.contact-option-btn svg {
    color: var(--premium-primary);
}

.contact-option-info {
    display: flex;
    flex-direction: column;
}

.contact-option-label {
    font-size: 0.75rem;
    color: var(--premium-text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-option-btn.whatsapp:hover {
    background: #f0fff4;
    /* Light green tint for whatsapp */
    border-color: #25d366;
    color: #128c7e;
}

.contact-option-btn.whatsapp:hover svg {
    color: #25d366;
}

.contact-modal-footer {
    padding: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--premium-text-light);
    border-top: 1px solid var(--premium-border-light);
}