/* ============================================================
   CONTACT US STYLES (Page 18)
   ============================================================ */

.m-contact-page {
    background: #FFFFFF;
    min-height: 100vh;
    padding-bottom: 90px;
}

/* TOP BAR */
.m-contact-top-bar {
    height: 52px;
    background: white;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid #F3F4F6;
}

.m-contact-top-bar .back-btn {
    color: #111827;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 12px;
}

.m-contact-top-bar .back-btn svg {
    width: 22px; height: 22px;
}

.m-contact-top-bar .title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

/* HERO BANNER */
.m-contact-hero {
    margin-top: 52px;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
}

.m-contact-hero .hero-bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 200px;
    object-fit: contain;
}

.m-contact-hero .hero-content {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 55%;
}

.m-contact-hero h1 {
    font-size: 26px;
    font-weight: 900;
    color: #111827;
    margin: 0 0 4px;
    line-height: 1.2;
}

.m-contact-hero p {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.5;
    margin: 0 0 12px;
}

.m-contact-hero .pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.m-contact-hero .pill {
    background: white;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* CONTACT INFO CARDS */
.m-contact-info-section {
    padding: 20px 0 12px;
}

.m-contact-info-section h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    padding: 0 16px 12px;
    margin: 0;
}

.info-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
}
.info-scroll::-webkit-scrollbar { display: none; }

.info-card {
    flex-shrink: 0;
    width: 160px;
    background: white;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card .icon-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #EDE9FE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.info-card .icon-circle svg {
    width: 16px; height: 16px; color: #7C3AED;
}

.info-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.info-card p {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.info-card .sub {
    display: block;
    font-size: 11px;
    color: #6B7280;
    line-height: 1.5;
    margin-top: 4px;
}

/* CONTACT FORM */
.m-contact-form-section {
    padding: 0 16px 16px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input {
    flex: 1;
    height: 46px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 13px;
    width: 100%;
}

.form-row input:focus {
    border-color: #7C3AED;
    outline: none;
}

.submit-btn {
    width: 100%;
    height: 52px;
    margin-top: 4px;
    background: linear-gradient(135deg, #7C3AED, #9F67F5);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(124,58,237,0.3);
}

/* GOOGLE MAP EMBED */
.m-contact-map {
    margin: 0 16px 16px;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    position: relative;
    background: #F3F4F6;
}

.m-contact-map iframe {
    position: absolute;
    inset: 0;
}

.store-hours-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 140px;
    background: #7C3AED;
    border-radius: 0 16px 0 12px;
    padding: 12px;
    z-index: 2;
}

.store-hours-overlay h4 {
    font-size: 12px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
}

.hours-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
}
.hours-row:last-child { margin-bottom: 0; }

.hours-row .day {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.hours-row .time {
    font-size: 10px;
    color: rgba(255,255,255,0.9);
}

/* FAQ SECTION */
.m-contact-faq {
    padding: 0 0 16px;
}

.m-contact-faq h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    padding: 0 16px 12px;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}

.faq-q svg {
    width: 18px; height: 18px; color: #7C3AED; flex-shrink: 0;
}
.faq-q svg.hidden { display: none; }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faq-a p {
    padding: 0 14px 14px;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* STILL HAVE QUESTIONS CARD */
.m-contact-still-qs {
    margin: 0 16px 16px;
    background: #1F1F3D;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.m-contact-still-qs h3 {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
    position: relative; z-index: 2;
}

.m-contact-still-qs p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0 0 16px;
    position: relative; z-index: 2;
}

.call-btn {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: white;
    color: #111827;
    border: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative; z-index: 2;
}

.call-btn svg { width: 16px; height: 16px; color: #111827; }

.email-btn {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: #7C3AED;
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    position: relative; z-index: 2;
}

.email-btn svg { width: 16px; height: 16px; color: white; }


/* Form Validation Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.invalid-shake {
    animation: shake 0.3s ease-in-out;
    border-color: #EF4444 !important;
}

/* Toast */
.m-contact-toast {
    position: fixed;
    bottom: 80px;
    left: 16px; right: 16px;
    background: #10B981;
    color: white;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.m-contact-toast.show {
    transform: translateY(0);
    opacity: 1;
}
