/* ============================================================
   Contact Us — test.usamodwatch.com/contact-us/
   ============================================================ */

/* ---- CSS Variables (matching shopify-home.css) ---- */
:root {
    --sh-text: #171717;
    --sh-text-light: #555;
    --sh-text-body-soft: #444;
    --sh-text-muted: #999;
    --sh-white: #fff;
    --sh-bg-light: #fafafa;
    --sh-border: rgba(23,23,23,0.08);
    --sh-border-strong: rgba(23,23,23,0.1);
    --sh-font: 'Inter', sans-serif;
}

/* ---- Override Woodmart ---- */
body.sh-contact-us-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-family: var(--sh-font);
}
body.sh-contact-us-page .site-content,
body.sh-contact-us-page .wd-content-area,
body.sh-contact-us-page .main-page-wrapper,
body.sh-contact-us-page .website-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
body.sh-contact-us-page .container,
body.sh-contact-us-page .wd-content-area .container {
    max-width: 100% !important;
    padding: 0 !important;
}
body.sh-contact-us-page .wd-content-layout {
    display: block !important;
    gap: 0 !important;
}
body.sh-contact-us-page .wd-page-title {
    display: none !important;
}

/* ---- Container ---- */
.sh-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    color: #171717;
}

/* ---- Section Title ---- */
.sh-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #171717;
    margin: 0 0 2rem;
}
.sh-section-title--left { text-align: left; }

/* ============================================================
   1. Contact Information
   ============================================================ */
.sh-contact {
    padding: 80px 0 48px;
    background: #fff;
}

.sh-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.sh-contact__card {
    background: #fafafa;
    border: 1px solid rgba(23,23,23,0.08);
    border-radius: 16px;
    padding: 48px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.sh-contact__card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.sh-contact__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(23,23,23,0.08);
}

.sh-contact__info {
    margin: 0;
    padding: 0;
}

.sh-contact__info dt {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
}

.sh-contact__info dd {
    font-size: 14px;
    font-weight: 500;
    color: #171717;
    margin: 0 0 24px;
    line-height: 1.6;
}

.sh-contact__info dd:last-child {
    margin-bottom: 0;
}

.sh-contact__info dd a {
    color: #171717;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.sh-contact__info dd a:hover {
    opacity: 0.7;
}

/* ============================================================
   2. Map
   ============================================================ */
.sh-contact-map {
    padding: 0 0 80px;
    background: #fff;
}

.sh-contact-map__embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.sh-contact-map__embed iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ============================================================
   3. FAQ — matches shopify-home.css exactly
   ============================================================ */
.sh-faq {
    padding: 48px 0 80px;
    background: #fff;
}

.sh-faq__wrapper {
    border: 1px solid rgba(23,23,23,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.sh-faq__item {
    border-bottom: 1px solid rgba(23,23,23,0.08);
}
.sh-faq__item:last-child { border-bottom: none; }

.sh-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    transition: color 0.15s, background 0.15s;
}
.sh-faq__trigger:hover { color: #555; background: #fafafa !important; }
.sh-faq__trigger span { flex: 1; padding-right: 32px; line-height: 1.5; text-align: left; }
.sh-faq__icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.sh-faq__item.is-open .sh-faq__icon { transform: rotate(45deg); }

.sh-faq__panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 44px;
    background: #fff;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.sh-faq__item.is-open .sh-faq__panel { max-height: 600px; padding: 12px 44px 36px; }
.sh-faq__panel p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(23,23,23,0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .sh-contact {
        padding: 48px 0 32px;
    }
    .sh-contact-map {
        padding: 0 0 48px;
    }
    .sh-faq {
        padding: 32px 0 48px;
    }
    .sh-container { padding: 0 16px; }
    .sh-section-title { font-size: clamp(1.35rem, 4vw, 1.75rem); margin-bottom: 1.25rem; }

    .sh-contact__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sh-contact__card {
        padding: 32px;
    }

    .sh-contact-map__embed iframe {
        height: 320px;
    }

    .sh-faq__trigger { padding: 24px 28px; font-size: 16px; }
    .sh-faq__panel { padding: 0 28px; }
    .sh-faq__item.is-open .sh-faq__panel { padding: 10px 28px 28px; }
    .sh-faq__panel p { font-size: 14px; }
    .sh-faq__icon { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
    .sh-contact {
        padding: 36px 0 24px;
    }
    .sh-contact-map {
        padding: 0 0 36px;
    }
    .sh-faq {
        padding: 24px 0 36px;
    }
    .sh-contact__card { padding: 24px; }
    .sh-contact__card-title { font-size: 16px; margin-bottom: 20px; padding-bottom: 12px; }
    .sh-contact__info dt { font-size: 11px; }
    .sh-contact__info dd { font-size: 14px; margin-bottom: 18px; }

    .sh-contact-map__embed iframe {
        height: 260px;
    }
}
