/* ========================================================
   KALEIIDO GROUP - CONTACT US PAGE STYLING
   ======================================================== */

/* --- 1. GLOBAL COLORS & SECTION PADDING --- */
:root {
    --primary-red: #ed2227;
    --dark-red: #990B0F;
    --light-red: #FF5257;
    --bg-light: #f5f5f5;
    --pure-black: #000000;
    --text-black: #111111;
    --pure-white: #FFFFFF;
    --border-color: #E2E8F0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.text-red {
    color: var(--primary-red) !important;
}

.py-120 {
    padding: 80px 0; /* Desktop Padding: 80px */
}

/* --- 2. PAGE HEADER BREADCRUMB BANNER --- */
.page-header-banner {
    background-color: var(--pure-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.header-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.contact-page-badge,
.contact-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.3);
}

.contact-page-badge .badge-dot,
.contact-section-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-red);
}

.contact-page-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pure-white) !important;
}

.contact-section-badge .badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black);
}

/* --- 3. THREE BRANDS CONTACT CARDS --- */
.brands-contact-section {
    background-color: var(--bg-light);
}

.brand-contact-card {
    background-color: var(--pure-white);
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(237, 34, 39, 0.12) !important;
    border-color: var(--primary-red) !important;
}

.brand-badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #F8F9FA;
    border: 1px solid var(--border-color);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-black);
}

.brand-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-black);
}

.brand-card-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #555555;
}

.brand-info-list {
    border-color: #EEEEEE !important;
}

.info-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #F8F9FA;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.brand-contact-card:hover .info-icon-box {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.brand-contact-card:hover .info-icon-box i {
    color: var(--pure-white) !important;
}

.brand-link {
    color: var(--text-black);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-all;
}

.brand-link:hover {
    color: var(--primary-red);
}

.brand-address-text {
    font-size: 13px;
    line-height: 1.55;
    color: #333333;
}

/* --- 4. CONTACT FORM & INFO SECTION --- */
.contact-form-section {
    background-color: var(--pure-white);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.25;
}

.lead-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #555555;
}

.general-contacts {
    background-color: #F8F9FA;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-red);
}

.general-contacts h5 {
    font-size: 18px;
    font-weight: 700;
}

.general-contacts p {
    font-size: 13.5px;
    line-height: 1.6;
}

.social-connect .font-12 {
    font-size: 12px;
    letter-spacing: 1px;
}

.social-box {
    width: 40px;
    height: 40px;
    background-color: var(--text-black);
    color: var(--pure-white) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-box:hover {
    background-color: var(--primary-red);
    color: var(--pure-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(237, 34, 39, 0.4);
}

/* --- 5. CONTACT FORM CARD & INPUTS --- */
.contact-form-card {
    background-color: #F8F9FA;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
}

.form-input-custom {
    background-color: var(--pure-white);
    border: 1px solid var(--border-color);
    padding: 13px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-black);
    transition: all 0.3s ease;
}

.form-input-custom:focus {
    background-color: var(--pure-white);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(237, 34, 39, 0.15);
    outline: none;
    color: var(--text-black);
}

.form-input-custom::placeholder {
    color: #999999;
    font-size: 13.5px;
}

/* --- 6. SUBMIT BUTTON (PURE RED GRADIENT & WHITE TEXT) --- */
.btn-submit-custom {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%) !important;
    color: var(--pure-white) !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(237, 34, 39, 0.35);
    cursor: pointer;
    text-decoration: none;
}

.btn-submit-custom:hover {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%) !important;
    color: var(--pure-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(237, 34, 39, 0.55);
}

.btn-submit-custom:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(237, 34, 39, 0.4);
}

/* --- 7. MOBILE RESPONSIVE OPTIMIZATIONS --- */
@media (max-width: 767.98px) {
    .py-120 {
        padding: 30px 0 !important; /* Mobile Padding: 30px */
    }

    .contact-form-card {
        padding: 24px 20px !important;
    }

    .form-title {
        font-size: 22px;
    }

    .brand-contact-card {
        padding: 20px !important;
    }

    .brand-card-title {
        font-size: 22px;
    }
}