/* contact.css */

main {
    padding-top: 80px;
}

/* Hero banner */
.page-hero {
    background: linear-gradient(rgba(0, 77, 64, 0.85), rgba(0, 77, 64, 0.85)),
                url('contact-hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 130px 20px 90px;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.35rem;
    opacity: 0.95;
}

/* Contact info cards */
.contact-section {
    padding: 40px 0 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    color: #004d40;
}

.contact-card h3 {
    color: #004d40;
    margin-bottom: 1rem;
}

.contact-card p {
    margin: 0.4rem 0;
}

/* Map section */
.map-container {
    text-align: center;
    margin: 60px 0;
}

.map-container h2 {
    color: #004d40;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background: #e0f2f1;
    border-radius: 12px;
    padding: 60px 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
}

/* Visit us section */
.visit-us {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.visit-us h2 {
    color: #004d40;
    margin-bottom: 1.2rem;
}

/* Final CTA */
.final-cta {
    background: #004d40;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.final-cta h2 {
    margin-bottom: 1.2rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    background: #ffab00;
    color: #004d40;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #ffb74d;
    transform: translateY(-3px);
}

.cta-button.secondary {
    background: #00695c;
    color: white;
}

.cta-button.secondary:hover {
    background: #00897b;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 110px 20px 70px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

