/* ================== CONTACT PAGE STYLES ================== */

.contact-section {
    padding: 80px 6%;
    background: white;
}

.contact_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.left h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.left p {
    font-size: 1.1rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icons a {
    font-size: 1.8rem;
    margin-right: 15px;
    color: #555;
    transition: 0.3s;
}

.icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Form */
.right form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.right input,
.right textarea {
    padding: 14px 18px;
    border: 2px solid #e5d9c9;
    border-radius: 8px;
    font-size: 1.05rem;
    outline: none;
}

.right input:focus,
.right textarea:focus {
    border-color: var(--accent);
}

.right button {
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.right button:hover {
    background: var(--hover);
}

/* Team Section */
.team-section {
    padding: 80px 6%;
    background: #F8F4ED;
    text-align: center;
}

.team-head {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.team-card h2 { margin: 10px 0 5px; color: var(--accent); }
.team-card h3 { color: #666; margin-bottom: 10px; }

/* Map */
#map-cont {
    height: 500px;
    margin-top: 78px;
}

#map {
    height: 100%;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .contact_wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}