/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, #4A3428 0%, #8B593E 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    color: #FDF5E6;
    padding: 2rem;
}

.contact-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.contact-hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Help Center Section */
.help-center {
    padding: 5rem 0;
    background-color: #FDF5E6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #4A3428;
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #4A3428;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-circle i {
    font-size: 2rem;
    color: #FDF5E6;
}

.contact-card h3 {
    color: #4A3428;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: #fff;
}

.form-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: #FDF5E6;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.form-wrapper h2 {
    text-align: center;
    color: #4A3428;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #D4B08C;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 200px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A3428;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #4A3428;
    color: #FDF5E6;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #8B593E;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content p {
        font-size: 1.2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        margin: 0 1rem;
    }
}

/* Map and Contact Form Section */
.map-contact-section {
    padding: 5rem 0;
    background-color: #fff;
}

.map-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

@media (max-width: 768px) {
    .map-contact-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        order: 2;
    }

    .form-wrapper {
        order: 1;
    }
}
