/* ==================== CONTACT PAGE STYLES ==================== */

/* ---------- HERO ---------- */
.contact-hero {
    text-align: center;
    padding: 5rem 0 2.5rem;
    background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 100%);
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #003d4d;
    margin-bottom: 1rem;
}

.contact-hero .hero-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3.5rem;
    }
    .contact-hero .hero-sub {
        font-size: 1.1rem;
    }
}

/* ---------- CONTACT CARDS ---------- */
.contact-cards-section {
    padding: 2rem 0;
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #003d4d;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-bottom-color: var(--primary);
}

/* ---------- CONTACT FORM ---------- */
.contact-form-section {
    padding: 2.5rem 0;
    background: var(--gray-bg);
}

.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 500px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 60px;
    border: 1px solid #e0edf2;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    transition: border-color 0.2s;
    outline: none;
}

.contact-form textarea {
    border-radius: var(--border-radius-sm);
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,128,128,0.1);
}

.contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ---------- MAP PLACEHOLDER ---------- */
.map-section {
    padding: 2.5rem 0;
}

.map-placeholder {
    height: 200px;
    border-radius: var(--border-radius);
    background: #cfe3ea;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .map-placeholder {
        height: 280px;
    }
}

/* ---------- FINAL CTA (same as other pages) ---------- */
.final-cta {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 3.5rem 0;
    }
}