/* Contact Us Popup Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.contact-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-left {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 50px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px 0 0 16px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-icon i {
    font-size: 40px;
    color: white;
}

.contact-left h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.contact-left p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item div h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-info-item div p {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

.contact-info-item div a {
    color: white;
    text-decoration: none;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-links a:hover {
    background: white;
    color: #e91e63;
    transform: translateY(-3px);
}

.contact-right {
    padding: 50px 40px;
}

.contact-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-close:hover {
    background: #e91e63;
    color: white;
    transform: rotate(90deg);
}

.contact-close i {
    font-size: 20px;
}

.contact-right h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Outfit', sans-serif;
}

.contact-right p {
    color: #666;
    margin-bottom: 30px;
}

.contact-map {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-hours {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
}

.contact-hours h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.contact-hours p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        max-width: 95%;
    }

    .contact-left {
        border-radius: 16px 16px 0 0;
        padding: 40px 30px;
    }

    .contact-right {
        padding: 40px 30px;
    }

    .contact-left h2 {
        font-size: 26px;
    }
}