/* =========================================================
   CONTACT PAGE — BURPEE SCHEDULING
   Matches index + privacy + setup guide
========================================================= */

/* Page base */
body {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;

    /* Prevent footer overlap */
    padding-bottom: 140px;
}

/* Page title */
h1 {
    max-width: 900px;
    margin: 3rem auto 1.5rem;
    padding: 0 1.25rem;

    font-size: 2.6rem;
    font-weight: 700;

    background-image: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact card (glass panel) */
.contact-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.25rem;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Section labels */
.contact-card h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.25rem;

    font-size: 1.1rem;
    font-weight: 600;

    background-image: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 6px 18px rgba(99, 102, 241, 0.25);
}

/* First heading spacing fix */
.contact-card h3:first-child {
    margin-top: 0;
}

/* Contact values */
.contact-card p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer spacing */
footer {
    margin-top: 4rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.1rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}
