/* ===================================================
   DYORE EXPERIENCES - CONTACT US PAGE STYLESHEET
   Scoped component styles for contact-us.html
   (All base, typography, layout, header, map & footer
    styles are globally inherited from style.css)
   =================================================== */

/* ==========================================
   1. CONTACT US HERO BANNER
   ========================================== */
.contact-hero-banner {
    background: url('../images/contact-page/contact-page-banner.png') no-repeat center center / cover;
}

/* Atmospheric contrast overlay */
.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.22) 0%,
            rgba(0, 0, 0, 0.08) 35%,
            rgba(0, 0, 0, 0.12) 70%,
            rgba(0, 0, 0, 0.28) 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-hero-title {
    color: var(--color-white);
    margin: 0;
}

.hero-content {
    margin-bottom: 0 !important;
}

/* ==========================================
   2. GET IN TOUCH / CONTACT INFO SECTION
   ========================================== */
.contact-info-section {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    padding: 100px 0 50px;
    box-sizing: border-box;
}

.contact-info-container {
    width: 100%;
    max-width: var(--site-max-width, 1440px);
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Header Stack */
.contact-info-header {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.contact-info-header .sub-title {
    margin-bottom: 14px;
    color: var(--color-dark);
}

.contact-info-title {
    line-height: 1.28;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    margin: 0 auto;
    max-width: 1000px;
}

/* 2-Column Layout Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Left Featured Image */
.contact-info-img-col {
    width: 100%;
}

.contact-img-wrap {
    width: 100%;
    aspect-ratio: 428 / 560;
    overflow: hidden;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.contact-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-img-wrap:hover .contact-featured-img {
    transform: scale(1.025);
}

/* Right Details Column */
.contact-info-details-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 24px 0;
}

.contact-detail-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.contact-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.contact-detail-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8C8885;
}

.contact-detail-divider {
    width: 100%;
    height: 1px;
    background-color: #ECE7DE;
    margin: 0;
}

/* ==========================================
   LUXURY SUB-CARDS & ICON BADGES
   ========================================== */
.contact-sub-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.contact-sub-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 16px;
    background-color: #FAF8F5;
    border: 1px solid #EBE6DC;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-sub-card:hover {
    background-color: #FFFFFF;
    border-color: #97033C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(151, 3, 60, 0.08);
}

.contact-sub-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(151, 3, 60, 0.07);
    color: #97033C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-sub-card:hover .contact-sub-badge {
    background-color: #97033C;
    color: #FFFFFF;
}

.contact-sub-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-sub-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8C8885;
    line-height: 1.2;
}

.contact-sub-value {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--color-dark, #151312);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.contact-sub-value:hover {
    color: #97033C;
}

.contact-email-val {
    font-size: 16px;
    word-break: break-all;
}

.contact-address-text {
    font-size: 15.5px;
    line-height: 1.4;
    color: var(--color-dark, #151312);
    margin: 0;
}

/* ==========================================
   3. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .contact-hero-banner {
        min-height: 80vh;
    }

    .contact-info-section {
        padding: 80px 0 50px;
    }

    .contact-info-container {
        padding: 0 24px;
    }

    .contact-info-header {
        margin-bottom: 50px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-sub-card {
        padding: 10px 14px;
        gap: 14px;
    }

    .contact-sub-value {
        font-size: 17px;
    }

    .contact-email-val {
        font-size: 15.5px;
    }

    .contact-address-text {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .contact-hero-banner {
        min-height: 70vh;
        padding: 0 16px;
    }

    .contact-info-section {
        padding: 40px 0 45px !important;
    }

    .contact-info-container {
        padding: 0 16px;
    }

    .contact-info-header {
        margin-bottom: 24px;
    }

    .contact-info-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .contact-detail-item {
        gap: 16px;
        padding: 18px 0;
    }

    .contact-icon-img {
        width: 26px;
        height: 26px;
    }

    .contact-sub-card {
        padding: 10px 12px;
        gap: 12px;
        border-radius: 8px;
    }

    .contact-sub-badge {
        width: 32px;
        height: 32px;
    }

    .contact-sub-badge svg {
        width: 15px;
        height: 15px;
    }

    .contact-sub-title {
        font-size: 10px;
    }

    .contact-sub-value {
        font-size: 15.5px;
    }

    .contact-email-val {
        font-size: 14px;
    }

    .contact-address-text {
        font-size: 14px;
    }
}