/* ============================================================
   AAROGYOM - Contact Page Styles
   contact.css
   ============================================================ */

.contact-hero {
    background: linear-gradient(135deg, rgba(10,35,81,0.93) 0%, rgba(230,93,10,0.88) 100%),
                url('https://images.unsplash.com/photo-1504439468489-c8920d796a29?auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    min-height: 48vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(248,249,250,0.3));
}

.contact-main { padding: 80px 0; background: linear-gradient(135deg, #f8f9fa 0%, var(--light-bg) 100%); }

/* ── Info Cards ───────────────────────────────────────── */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(230,93,10,0.13);
    border-color: rgba(230,93,10,0.15);
}
.info-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(230,93,10,0.12), rgba(255,133,52,0.08));
    color: var(--primary-orange);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
}
.info-card h6 { font-weight: 700; color: var(--dark-blue); margin: 0; font-size: 0.95rem; }
.info-card p { color: var(--text-muted-custom); font-size: 0.87rem; margin: 0; }
.info-card a { color: var(--text-muted-custom); text-decoration: none; }
.info-card a:hover { color: var(--primary-orange); }

/* ── Working Hours ────────────────────────────────────── */
.hours-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow-card);
    margin-top: 1.5rem;
}
.hours-card h6 { font-weight: 700; color: var(--dark-blue); margin-bottom: 1rem; }
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.87rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-dark); font-weight: 500; }
.hours-time { color: var(--primary-orange); font-weight: 600; }
.hours-closed { color: #e74c3c; font-weight: 600; }

/* ── Appointment Form ─────────────────────────────────── */
.appointment-card {
    background: white;
    border-radius: 24px;
    padding: 2.8rem;
    box-shadow: 0 25px 70px rgba(0,0,0,0.09);
    position: relative;
    overflow: hidden;
}
.appointment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
}

/* Success Alert */
.form-success {
    display: none;
    background: #d1fae5;
    border: 2px solid #6ee7b7;
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    color: #065f46;
    font-weight: 600;
    font-size: 0.9rem;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.form-success.show { display: flex; }

/* ── Map Section ──────────────────────────────────────── */
.map-section { padding: 0 0 80px; background: #f8f9fa; }
.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-hero { min-height: 38vh; padding: 60px 0; }
    .appointment-card { padding: 1.8rem; }
}
