/* =============================================
    CONTACT PAGE — contact.css
============================================= */
@import "./productpage.css";

body {
    margin: 0;
}

/* ===== PRODUCT-STYLE BREADCRUMB BANNER ===== */
.product-breadcrumb-banner {
    background: #EC3237;
    margin-top: 80px;
    padding: 28px 24px;
    text-align: center;
}
@media (min-width: 768px) {
    .product-breadcrumb-banner {
        padding: 48px 24px;
    }
}
.product-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.breadcrumb-trail {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.breadcrumb-title {
    color: #ffffff !important;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700 !important;
    line-height: 1.2;
    margin: 0;
}
@media (max-width: 767px) {
    .product-breadcrumb-banner {
        padding: 16px 24px;
    }
    .product-breadcrumb-inner br {
        display: none;
    }
}

/* ===== LOGO OVERRIDE ===== */
.desktop-logo-wrap {
    width: 64px !important;
    height: 64px !important;
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
@media (min-width: 768px) {
    .desktop-logo-wrap {
        width: 104px !important;
        height: 104px !important;
    }
}

/* ===== BREADCRUMB BANNER ===== */
.contact-banner {
    background: #EC3237;
    margin-top: 96px;
    padding: 18px 24px;
    text-align: center;
}
.contact-banner-trail {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.contact-banner-title {
    color: #ffffff;
    font-size: clamp(1.2rem, 2.6vw, 1.65rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* ===== PAGE CONTENT WRAPPER ===== */
/* ===== PAGE SECTION ===== */
.contact-page {
    padding: 60px 32px 80px;
    background: #fcf9f8;
}

/* ===== INTRO ===== */
.contact-intro {
    text-align: center;
    margin-bottom: 44px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
}
.contact-intro h2 {
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: -0.3px;
}
.contact-intro h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: #EC3237;
    border-radius: 99px;
}
.contact-intro p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.1rem;
    color: #000000;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
    letter-spacing: 0;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-intro p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #000000;
}

/* ===== CONTENT LAYOUT ===== */
.contact-content {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: stretch;
}

/* ===== LEFT — INFO CARDS ===== */
.contact-cards {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid rgba(236,50,55,0.10);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.info-card:hover {
    border-color: rgba(236,50,55,0.30);
    box-shadow: 0 10px 32px rgba(236,50,55,0.10);
    transform: translateY(-3px);
}
.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(236, 50, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EC3237;
    font-size: 20px;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.info-card h4 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #EC3237;
    margin-bottom: 8px;
}
.info-card p,
.info-card a {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.65;
    letter-spacing: 0;
    text-decoration: none;
    margin: 0;
}
.info-card a:hover { color: #EC3237; }
.contact-phone-line {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
    letter-spacing: 0;
}

/* ===== RIGHT — MAP ===== */
.contact-map {
    flex: 1;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    border: 1.5px solid rgba(236,50,55,0.10);
    min-height: 460px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}

/* Address overlay card on map */
.map-address-card {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    max-width: 260px;
    border-left: 3px solid #EC3237;
    z-index: 10;
}
.map-address-card strong {
    display: block;
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}
.map-address-card span {
    display: block;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    letter-spacing: 0;
}
.map-open-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px;
    font-weight: 700;
    color: #EC3237;
    text-decoration: none;
    letter-spacing: 0;
}
.map-open-link:hover {
    color: #c41e23;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .contact-content { max-width: 100%; }
    .contact-cards { flex: 0 0 300px; }
}
@media (max-width: 900px) {
    .contact-content { max-width: 100%; gap: 20px; }
    .contact-cards { flex: 0 0 260px; }
}
@media (max-width: 760px) {
    .contact-page { padding: 40px 16px 60px; }
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    .contact-cards {
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    .info-card {
        flex: 1 1 calc(50% - 6px);
        min-width: 150px;
    }
    .contact-map { flex: 0 0 auto; min-height: 380px; }
    .contact-map iframe { min-height: 380px; }
}
@media (max-width: 480px) {
    .contact-cards { flex-direction: column; }
    .info-card { flex: 0 0 auto; width: 100%; padding: 22px 18px 20px; }
    .contact-phone-line {
        white-space: normal;
        font-size: 0.9rem;
    }
    .contact-map { min-height: 360px; }
    .contact-map iframe { min-height: 360px; }
    .map-address-card {
        max-width: 185px;
        padding: 12px 13px;
    }
}
