/* ====== MOTAPAY — Contact Page Styles ====== */

.contact-page {
    --accent: #4a3aff;
    --accent-soft: #eeedff;
    padding-top: 64px; /* offset for fixed nav */
    background: var(--surface);
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--body);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-intro strong {
    color: var(--ink);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
}

.contact-card:hover {
    border-color: var(--accent);
}

.contact-card .card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-card .card-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.contact-card .card-value {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.5;
}

.contact-card .card-value a {
    color: var(--ink);
    text-decoration: none;
}

.contact-card .card-value a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-package-notice {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    font-size: 0.92rem;
    line-height: 1.65;
}

.contact-package-notice strong {
    color: var(--white);
}

.contact-package-notice a {
    color: rgba(255,255,255,0.95);
    text-decoration: underline;
}

.contact-package-notice a:hover {
    color: var(--white);
}

.contact-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

.contact-section {
    margin-bottom: 2.25rem;
}

.contact-section-number {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1.6rem;
    text-align: center;
    border-radius: 6px;
    margin-right: 0.5rem;
    position: relative;
    top: -1px;
}

.contact-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.85rem;
    font-weight: 400;
}

.contact-section p {
    margin-bottom: 0.85rem;
}

.contact-section ul {
    margin: 0.5rem 0 1rem 1.25rem;
}

.contact-section li {
    margin-bottom: 0.4rem;
}

.contact-section a {
    color: var(--accent);
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-callout {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
    font-size: 0.95rem;
}

.contact-callout strong {
    color: var(--ink);
}

.contact-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
}

.contact-hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.contact-hours-table td:first-child {
    font-weight: 600;
    color: var(--ink);
    width: 50%;
}

.contact-hours-table tr:last-child td {
    border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-container { padding: 1.75rem 1.25rem 3rem; }
    .contact-section h2 { font-size: 1.15rem; }
    .contact-grid { grid-template-columns: 1fr; }
}
