/* ========================================================
   KALEIIDO GROUP - ABOUT US PAGE STYLING
   ======================================================== */

:root {
    --primary-red: #ed2227;
    --dark-red: #990B0F;
    --light-red: #FF5257;
    --bg-light: #F8F9FA;
    --pure-black: #000000;
    --text-black: #111111;
    --pure-white: #FFFFFF;
    --border-color: #E2E8F0;
}

.text-red {
    color: var(--primary-red) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.py-80 {
    padding: 80px 0; /* Standard Desktop Padding: 80px */
}

/* --- 1. PAGE HEADER BANNER --- */
.about-page-banner {
    background-color: var(--pure-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.about-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.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.about-page-badge,
.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);
}

.about-page-badge .badge-dot,
.section-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
}

.about-page-badge .badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pure-white) !important;
}

.section-badge .badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black);
}

.section-heading {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.25;
}

/* --- 2. OVERVIEW & STORY SECTION --- */
.about-story-media {
    border: 1px solid var(--border-color);
}

.story-img {
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story-media:hover .story-img {
    transform: scale(1.03);
}

.story-floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-exp-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.story-lead-text {
    font-size: 15.5px;
    line-height: 1.75;
}

.story-sub-text {
    font-size: 14.5px;
    line-height: 1.7;
}

/* --- 3. VISION & MISSION DUAL CARDS --- */
.vm-card {
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(237, 34, 39, 0.12) !important;
    border-color: var(--primary-red) !important;
}

.vm-icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--pure-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 15px rgba(237, 34, 39, 0.3);
}

.vm-title {
    font-size: 24px;
    font-weight: 700;
}

.vm-desc {
    font-size: 14.5px;
    line-height: 1.7;
}

.vm-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--light-red) 100%);
    transition: width 0.4s ease;
}

.vm-card:hover .vm-bottom-line {
    width: 100%;
}

/* --- 4. VERTICALS SHOWCASE --- */
.vertical-box {
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vertical-box:hover {
    transform: translateX(8px); /* Subtle X-Axis Shift */
    background-color: var(--pure-white) !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 12px 30px rgba(237, 34, 39, 0.1);
}

.vertical-badge {
    background-color: var(--pure-white);
    border: 1px solid var(--border-color);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-black);
}

.vertical-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.2);
}

.vertical-title {
    font-size: 22px;
    font-weight: 700;
}

.vertical-desc {
    font-size: 14px;
    line-height: 1.65;
}

.vertical-action-link {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.vertical-action-link:hover {
    color: var(--dark-red);
    transform: translateX(4px);
}

/* --- 5. STATS RIBBON --- */
.stat-count {
    font-size: 38px;
    font-weight: 800;
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }
}

/* --- 6. CTA BANNER --- */
.btn-cta-custom {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--pure-white) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(237, 34, 39, 0.35);
    text-decoration: none;
}

.btn-cta-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 34, 39, 0.5);
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
}

/* --- 7. MOBILE RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 767.98px) {
    .py-80 {
        padding: 30px 0 !important; /* Mobile Padding: 30px */
    }

    .story-img {
        height: 300px;
    }

    .story-floating-card {
        bottom: 15px;
        left: 15px;
        padding: 10px 16px;
    }

    .story-exp-num {
        font-size: 28px;
    }

    .vm-card {
        padding: 24px 20px !important;
    }

    .btn-cta-custom {
        width: 100%;
    }
}