/* CONTACT PAGE */
.contact-main {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

/* 1. Image Hero Banner (Synced Style) */
.contact-hero-banner {
    position: relative;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    background-image: url('../../images/banners/banner-contact.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: -6rem; 
    margin-bottom: 3rem;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 31, 63, 0.65), rgba(0, 31, 63, 0.85));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 56rem;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: "Manrope", sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.contact-hero-title .highlight {
    color: #f28c1b;
}

.contact-hero-desc {
    font-size: 1.125rem;
    color: #e8f0ff;
    font-weight: 400;
    line-height: 1.625;
}

.contact-hero-divider {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.divider-line {
    height: 0.25rem;
    width: 4rem;
background-color: #f28c1b;
    border-radius: 9999px;
}



/* Page Content Spacing */
.contact-content-body {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.contact-hero-image-container {
    width: 100%;
    height: 20rem;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: #e8f0ff;
    transform: rotate(3deg);
}



.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.contact-hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #b2fef6;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    display: none;
}



.badge-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #00201e;
    font-size: 1.5rem;
}

.badge-subtitle {
    color: rgba(0, 32, 30, 0.8);
    font-size: 0.875rem;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    gap: 2rem;
}



.contact-form-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 2.5rem;
    box-shadow: 0px 20px 40px rgba(0, 97, 164, 0.04);
}



.form-header { margin-bottom: 2.5rem; }
.form-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.form-subtitle { color: #43474a; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}



.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #43474a;
    padding: 0 0.25rem;
}

.form-input {
    width: 100%;
    background-color: #f2f4f6;
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    color: #191c1e;
    font-family: 'Inter', sans-serif;
}
.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 97, 164, 0.2);
}

.concern-select {
    background-color: #f1f5f9;
}

.btn-submit {
    width: 100%;
    background-color: #0061a4;
    color: #ffffff;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { box-shadow: 0 10px 15px -3px rgba(0, 97, 164, 0.2); }
.btn-submit:active { transform: scale(0.95); }

/* SIDEBAR */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-card {
    background-color: rgba(232, 240, 255, 0.4);
    padding: 2rem;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00497d;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #ffffff;
    padding: 1.25rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    color: #191c1e;
}
.support-link.call-link:hover {
    background-color: #0061a4;
    color: #ffffff;
}
.support-link.whatsapp-link:hover {
    background-color: #059669;
    color: #ffffff;
}

.support-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-icon { background-color: rgba(0, 97, 164, 0.1); color: #0061a4; }
.whatsapp-icon { background-color: #d1fae5; color: #059669; }

.support-link:hover .call-icon,
.support-link:hover .whatsapp-icon { background-color: rgba(255, 255, 255, 0.2); color: #ffffff; }

.support-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.6;
}
.support-value {
    font-size: 1.125rem;
    font-weight: 700;
}

/* EMERGENCY CARD */
.emergency-card {
    background-color: rgba(255, 218, 214, 0.3);
    border: 1px solid rgba(186, 26, 26, 0.1);
    padding: 2rem;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
}

.emergency-content { position: relative; z-index: 10; }
.emergency-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.emergency-icon-small { color: #ba1a1a; }
.emergency-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #93000a;
}

.emergency-desc {
    color: rgba(147, 0, 10, 0.8);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.btn-emergency {
    width: 100%;
    background-color: #ba1a1a;
    color: #ffffff;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}
.btn-emergency:hover { opacity: 0.9; }

.emergency-bg-icon {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    opacity: 0.05;
}
.emergency-bg-icon span { font-size: 120px; }

/* ADDRESS SECTION */
.address-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.address-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}
.address-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.address-desc { color: #43474a; }

.section-header-block.centered {
    text-align: center;
}

.section-header-subtitle.accent {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #f28c1b;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header-title.large {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header-desc.constrained {
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 800px;
    margin: 0 auto;
}

.detail-text.large {
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-card.enhanced {
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15);
    min-height: 450px;
}

.map-iframe {
    border: 0;
}

.address-grid {
    display: grid;
    gap: 2rem;
}



.address-details-card {
    background-color: #f2f4f6;
    padding: 2.5rem;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.details-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-icon {
    color: #136964;
    margin-bottom: 0.5rem;
}

.detail-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.detail-text {
    color: #43474a;
    line-height: 1.625;
}
.address-detail-item { margin-top: 1rem; }

.btn-directions {
    margin-top: 2rem;
    color: #0061a4;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: none;
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: gap 0.2s;
    padding: 0;
    text-decoration: none;
}
.btn-directions:hover { gap: 1rem; }

/* MAP CARD */
.map-card {
    min-height: 400px;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
}

.map-bg {
    position: absolute;
    inset: 0;
    background-color: #e2e8f0;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s;
}

.map-card:hover .map-img { filter: grayscale(0%); }

.map-pin-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin-wrapper { position: relative; }

.map-pin-pulse {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 97, 164, 0.2);
    border-radius: 9999px;
    position: absolute;
    inset: -0.5rem;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.map-pin-core {
    width: 3rem;
    height: 3rem;
    background-color: #0061a4;
    border-radius: 9999px;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}
.map-pin-core span { color: #ffffff; }

.map-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.map-label p {
    font-size: 0.875rem;
    font-weight: 700;
    color: #191c1e;
    margin: 0;
}


.footer-spacing { height: 6rem; }

/* Responsive Settings */
@media (min-width: 768px) {
    .contact-hero-banner {
        padding: 3rem;
        min-height: 100vh;
    }
    .contact-hero-title {
        font-size: 4.5rem;
    }
    .contact-hero-desc {
        font-size: 1.5rem;
    }
    .contact-hero-image-container { 
        height: 24rem; 
    }
    .contact-hero-badge { 
        display: block; 
    }
    .contact-form-card { 
        padding: 3rem; 
    }
    .form-row { 
        grid-template-columns: 1fr 1fr; 
    }
}

@media (min-width: 1024px) {
    .contact-grid { 
        grid-template-columns: 7fr 5fr; 
    }
    .address-grid { 
        grid-template-columns: 1fr 2fr; 
    }
}

