﻿/* ----------------------------------------------
    RADHA AAMRAI CONTACT PAGE
    Amravati, Maharashtra | Mobile Responsive Design
----------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefaf5;
    color: #2e241f;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #1e3a2f 0%, #2c5f2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    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 1440 320"><path fill="rgba(0,0,0,0.1)" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffd966;
}

    .hero-badge i {
        margin-right: 8px;
    }

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ffd966;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Contact Main Section */
.contact-main {
    padding: 5rem 0;
    background: #fefaf5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
    }

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .info-header i {
        font-size: 3rem;
        color: #2c5f2d;
        margin-bottom: 1rem;
    }

    .info-header h2 {
        font-size: 1.8rem;
        color: #1e3a2f;
        margin-bottom: 0.5rem;
    }

    .info-header p {
        color: #7e6b5c;
        font-size: 0.9rem;
    }

.info-details {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: background 0.3s ease;
}

    .info-item:hover {
        background: #fef5e8;
    }

.info-icon {
    width: 50px;
    height: 50px;
    background: #e8f0e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        font-size: 1.3rem;
        color: #2c5f2d;
    }

.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2e241f;
    margin-bottom: 0.25rem;
}

.info-text p {
    color: #7e6b5c;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-text a {
    color: #7e6b5c;
    text-decoration: none;
    transition: color 0.2s;
}

    .info-text a:hover {
        color: #2c5f2d;
    }

.coordinates {
    font-family: monospace;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #e8b86b;
}

.holiday-note {
    font-size: 0.75rem;
    color: #e8b86b;
}

/* Social Links */
.social-links {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0e3d4;
}

    .social-links h4 {
        margin-bottom: 1rem;
        color: #2e241f;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f0e3d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f2d;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: #2c5f2d;
        color: white;
        transform: translateY(-3px);
    }

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .form-header i {
        font-size: 2.5rem;
        color: #e8b86b;
        margin-bottom: 0.5rem;
    }

    .form-header h2 {
        font-size: 1.8rem;
        color: #1e3a2f;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: #7e6b5c;
        font-size: 0.9rem;
    }

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #2e241f;
        font-size: 0.9rem;
    }

        .form-group label i {
            margin-right: 6px;
            color: #e8b86b;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1.5px solid #f0e3d4;
        border-radius: 0.75rem;
        font-size: 0.9rem;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s ease;
        background: white;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c5f2d;
            box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
        }

        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: #e74c3c;
        }

.error-message {
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 0.25rem;
    display: block;
}

.form-note {
    font-size: 0.75rem;
    color: #7e6b5c;
    margin: 1rem 0;
    text-align: center;
}

    .form-note i {
        margin-right: 5px;
        color: #2c5f2d;
    }

/* Alert Messages */
.alert-message {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.5s ease;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e3a2f 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(44, 95, 45, 0.2);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #fff7ef;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .map-header h2 {
        font-size: 2rem;
        color: #1e3a2f;
        margin-bottom: 0.5rem;
    }

        .map-header h2 i {
            color: #e8b86b;
            margin-right: 0.5rem;
        }

    .map-header p {
        color: #7e6b5c;
    }

.map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.map-directions {
    text-align: center;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .directions-btn:hover {
        background: #1e3a2f;
        transform: translateY(-2px);
    }

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #fefaf5;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .faq-header h2 {
        font-size: 2rem;
        color: #1e3a2f;
        margin-bottom: 0.5rem;
    }

        .faq-header h2 i {
            color: #e8b86b;
            margin-right: 0.5rem;
        }

    .faq-header p {
        color: #7e6b5c;
    }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #fef5e8;
    }

    .faq-question i:first-child {
        color: #e8b86b;
        font-size: 1.2rem;
    }

    .faq-question h3 {
        flex: 1;
        font-size: 1rem;
        font-weight: 600;
        color: #2e241f;
        margin: 0;
    }

    .faq-question .fa-chevron-down {
        color: #7e6b5c;
        transition: transform 0.3s ease;
    }

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.25rem;
    border-top-color: #f0e3d4;
}

.faq-answer p {
    color: #7e6b5c;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-left {
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 20px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .hero-location {
        font-size: 0.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .info-text {
        text-align: center;
    }

    .map-header h2 {
        font-size: 1.5rem;
    }

    .faq-header h2 {
        font-size: 1.5rem;
    }
}
