/* ==========================================================================
   ADONAI MACKENZY INC - CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero Section Specifics */
.contact-hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-section .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.contact-hero-section .hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--muted);
    font-weight: 400;
}

/* Contact Cards & Icon Boxes */
.contact-info-card {
    border-color: var(--border-color) !important;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--accent) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.contact-icon-box {
    width: 46px;
    height: 46px;
    background: rgba(184, 135, 70, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hover-link {
    transition: var(--transition);
}

.contact-hover-link:hover {
    color: var(--accent) !important;
}

/* Form Styles */
.contact-form-card {
    border-color: var(--border-color) !important;
}

.custom-input {
    border-color: var(--border-color);
    border-radius: 2px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--text);
    background-color: var(--light-bg);
    transition: var(--transition);
}

.custom-input:focus {
    background-color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(184, 135, 70, 0.15);
    outline: none;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(184, 135, 70, 0.15);
}

/* Map Responsive Frame */
.map-container iframe {
    display: block;
    width: 100%;
}

/* Contact Strip Border Breakpoints */
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid var(--border-color);
    }
}

@media (max-width: 991.98px) {
    .contact-hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
}


/* =========================================================
   ADDRESS RESPONSIVE FONT SIZE
   ========================================================= */

#address {
    font-weight: 800;
    color: black;
    font-size: 15px;
}

/* Tablet */
@media (max-width: 991.98px) {
    #address {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    #address {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    #address {
        font-size: 9px;
    }
}