﻿/* Hero Section */
.hero {
    background: linear-gradient(120deg, rgba(0, 162, 138, 0.9), rgba(0, 140, 101, 0.85)), url('../imgs/contact.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 60px;
}

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        font-weight: 600;
        margin: 0 auto 30px;
    }

/* Contact Section */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-box {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .contact-info-box:hover {
        transform: translateY(-10px);
    }

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.info-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

.info-content a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

    .info-content a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark);
    }

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 162, 138, 0.2);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 162, 138, 0.3);
    }

/* Map Section */
.map-section {
    padding: 60px 0;
    background: rgba(0, 162, 138, 0.05);
    margin-top: 40px;
    text-align: center;
}

.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
