/* Section common styles */
.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.section-title .accent {
    color: var(--red);
}




/* ===== VISION SECTION (dark background with text) ===== */
.vision-dark-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-dark-section .title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.vision-dark-section .title-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.vision-dark-section .description-text {
    color: #ccc;
    font-size: 0.94rem;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto;
}

/* optional play icon (if needed later) but kept minimal for matching */
.vision-play-wrap {
    margin-top: 2rem;
}

/* ===== PROGRESS SECTION (split layout with image + progress bars) ===== */
.progress-split-section {
    background: var(--light-bg);
    padding: 0;
    position: relative;
}

.split-container {
    display: flex;
    flex-wrap: wrap;
}

.split-image-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    transition: box-shadow 0.35s ease;
}

.split-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.75s ease, filter 0.45s ease;
}

.home-page .split-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 46%, transparent 62%);
    transform: translateX(-125%);
    transition: transform 0.75s ease;
}

.home-page .split-image-col:hover {
    box-shadow: 0 26px 60px rgba(26, 26, 26, 0.18);
}

.home-page .split-image-col:hover::after {
    transform: translateX(125%);
}

.home-page .split-image-col:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.split-content-col {
    flex: 0 0 50%;
    max-width: 50%;
    background: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
}



.split-content-inner {
    width: 100%;
}

.split-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.split-eyebrow h3{
    font-size: 0.7rem!important; 
    letter-spacing: 3px;
    padding-top: 10px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.split-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.split-title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.split-title-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
}

.split-desc {
    color: var(--grey);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.split-desc a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
}

.split-desc a:hover {
    color: #a52d20;
    border-bottom-color: #a52d20;
}

/* Progress bars styling */
.progress-item {
    margin-bottom: 1.8rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-label span:first-child {
    font-weight: 700;
}

.progress-label span:last-child {
    color: var(--red);
    font-weight: 800;
}

.progress-bar-bg {
    background: #e9ecef;
    border-radius: 30px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    background: var(--red);
    width: 0%;
    height: 100%;
    border-radius: 30px;
    transition: width 1.2s cubic-bezier(0.22, 0.97, 0.36, 1);
}

/* Responsive */
@media (max-width: 991px) {
    .vision-dark-section {
        padding: 60px 0;
    }

    .split-container {
        flex-direction: column;
    }

    .split-image-col,
    .split-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .split-image-col {
        min-height: 320px;
    }

    .split-content-col {
        padding: 2rem 1.5rem;
    }

    .split-title-main {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .vision-dark-section .description-text {
        font-size: 0.85rem;
    }

    .split-content-col {
        padding: 1.6rem;
    }

    .progress-label {
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .split-image-col,
    .home-page .split-image-col img {
        transition: none;
    }

    .home-page .split-image-col::after {
        display: none;
    }

    .home-page .split-image-col:hover img {
        transform: none;
    }
}
