/* ═══════════════════════════════════ CONTACT US PAGE STYLES ═══════════════════════════════════ */

/* Animations */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 142, 61, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 142, 61, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 142, 61, 0);
    }
}

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 140px 20px 80px;
    background: linear-gradient(to bottom, #fcfaf4 0%, #fff 100%);
    text-align: center;
    overflow: hidden;
}

.contact-hero-title {
    font-size: 3.5rem;
    color: var(--dark-brown, #3b2a1a);
    font-family: 'Cinzel Decorative', serif;
    margin-bottom: 20px;
    animation: fadeInSlideUp 0.8s ease-out;
}

.contact-hero-sub {
    font-size: 1.25rem;
    color: var(--text-dark, #555);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Crimson Pro', serif;
    line-height: 1.8;
    animation: fadeInSlideUp 0.8s ease-out 0.2s both;
}

/* Contact Content Section */
.contact-section {
    padding: 80px 20px 100px;
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Contact Info Cards */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #f9f6f0;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(212, 142, 61, 0.2);
    transition: all 0.4s ease;
    animation: fadeInSlideUp 0.8s ease-out 0.4s both;
}

.contact-card:nth-child(2) {
    animation-delay: 0.5s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-card:nth-child(4) {
    animation-delay: 0.7s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(212, 142, 61, 0.1);
    border-color: var(--saffron, #D48E3D);
}

.contact-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--maroon, #6B1A1A);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon-wrap {
    animation: pulseGlow 1.5s infinite;
    transform: scale(1.1);
    color: var(--saffron, #D48E3D);
}

.contact-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--maroon, #6B1A1A);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--saffron, #D48E3D);
}

/* Contact Form */
.contact-form-wrap {
    flex: 1.2;
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeInSlideUp 0.8s ease-out 0.6s both;
    border-top: 5px solid var(--saffron, #D48E3D);
}

.contact-form-heading {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--dark-brown, #3b2a1a);
    margin-bottom: 10px;
}

.contact-form-sub {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--saffron, #D48E3D);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 142, 61, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--saffron), var(--maroon));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 26, 26, 0.2);
}

/* Map Section */
.map-section {
    padding: 0 20px 100px;
    background-color: #fff;
    animation: fadeInSlideUp 0.8s ease-out 0.8s both;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
    position: relative;
    height: 500px;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--saffron, #D48E3D);
    border-radius: 14px;
    pointer-events: none;
    z-index: 1;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    /* Slight artistic touch for luxury feel */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column-reverse;
        /* Form on top, info below on tablet */
    }

    .contact-form-wrap,
    .contact-info {
        width: 100%;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 40px 25px;
    }

    .map-container {
        height: 350px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .contact-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map-container {
        height: 250px;
    }
}