/* ==========================================================================
   🧱 CNT-CONTACT SECTION - HYBRID GRID ROUTER ENGINE
   ========================================================================== */

.cnt-section-light {
    width: 100%;
    /* background-color: #ffffff; */
    position: relative;
}

.cnt-split-dashboard-wrapper {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* Left Panel Control Base */
.cnt-data-hub-panel {
    padding: 80px 60px !important;
    /* background-color: #ffffff; */
}

/* ==========================================================================
   🖥️ DESKTOP VIEW STYLING (Gaya ng image_d90c8d.jpg)
   ========================================================================== */
@media (min-width: 992px) {
    /* Pinipilit ang mapa na luluwa palabas sa kanan ng screen bilang standalone section window */
    .cnt-map-panel-wrapper {
        position: absolute !important;
        top: 0;
        right: 0;
        width: 50% !important;
        height: 100% !important;
        z-index: 5;
        background-color: #f5f5f5;
        
        /* 🔥 FIX: I-convert sa Flexbox para mai-stretch ang laman pababa */
        display: flex !important;
        flex-direction: column;
    }

    /* Sticky handling habang nag-e-scroll sa mahabang dashboard ang desktop user */
    .cnt-map-sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        
        /* 🔥 FIX: Flex settings para mapilit ang iframe na mapuno ang sticky block */
        display: flex !important;
        flex-direction: column;
        flex-grow: 1;
    }
}

/* 🔥 FIX: In-update ang iframe custom class para awtomatikong sakupin ang lahat ng height */
.cnt-iframe-custom {
    width: 100%;
    height: 100% !important;
    min-height: 100% !important;
    display: block;
    flex-grow: 1; /* Pinupuno ang natitirang space */
    border: none;
}

/* ==========================================================================
   📱 MOBILE & TABLET RESPONSIVE ENGINE (Gaya ng image_d8aed3.png)
   ========================================================================== */
@media (max-width: 991px) {
    .cnt-data-hub-panel {
        width: 100% !important;
        padding: 50px 24px !important;
    }

    /* Ginagawa nating Flexbox column ang parent box upang magamit ang real-time sorting sequence */
    .cnt-detailed-info-box {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 🌟 THE MAGIC FIX: Ipinapasok muli ang mapa sa normal flow ng text card layout */
    .cnt-map-panel-wrapper {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        
        /* 🔥 Sisingit sa ikalawang pwesto (Kasunod ng Location Finder form) */
        order: 2 !important; 
        margin-bottom: 24px;
        display: flex !important;
        flex-direction: column;
    }

    .cnt-map-sticky-wrapper {
        position: relative !important;
        top: auto !important;
        height: 45vh !important; /* Sakto at malinis na taas ng map block sa phone screen ninyo */
        display: flex !important;
        flex-direction: column;
        flex-grow: 1;
    }

    /* Sequence Orders Setup Control */
    .cnt-order-form { order: 1 !important; }   /* Una ang Location Finder */
    /* Ang Map Wrapper ay Order 2 */
    .cnt-order-cards { order: 3 !important; }  /* Lahat ng Address/Email Blocks ay bababa pagkatapos ng mapa */
}

/* ==========================================================================
   🖋️ TYPOGRAPHY & VISUAL COMPONENTS CONTROL
   ========================================================================== */
.cnt-arch-header {
    margin-bottom: 40px;
}

.cnt-main-title-tech {
    font-family: "Montserrat", sans-serif;
    /* color: #051c3d; */
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 !important;
}

.cnt-accent-glow {
    /* color: #ff5e14; */
    font-weight: 800;
    text-shadow: 
        0 0 4px rgba(255, 94, 20, 0.3),
        0 0 10px rgba(255, 94, 20, 0.5),
        0 0 20px rgba(255, 94, 20, 0.3);
}

@media (max-width: 768px) {
    .cnt-main-title-tech { font-size: 2.5rem; }
}

.cnt-dashboard-module {
    border-color: rgba(5, 28, 61, 0.08) !important;
    /* background-color: #ffffff; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.cnt-module-title-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    /* color: #051c3d; */
    font-size: 0.9rem;
}

.cnt-site-card p {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    letter-spacing: 0.5px;
    /* color: #051c3d; */
}

.cnt-input-custom,
.cnt-select-custom {
    border: 1px solid rgba(5, 28, 61, 0.15) !important;
    font-family: "Montserrat", sans-serif;
}

.cnt-input-custom:focus,
.cnt-select-custom:focus {
    border-color: #ff5e14 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 94, 20, 0.1) !important;
}

.cnt-execute-btn {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s ease !important;
    /* Tinanggal na ang background at text color dahil CMS na ang magbibigay nito */
}

.cnt-execute-btn:hover {
    opacity: 0.8; /* Pinalitan ang hover effect para hindi bumangga sa CMS dynamic colors */
}

.cnt-mail-link {
    color: #ff5e14 !important;
}