/* ===== SKS SPLIT HERO V2 ===== */
.sks-hero-v2-section {
    width: 100%;
    background: #f5f5f5;
    padding: 40px 0;
}

.sks-hero-v2-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* --- Image Column --- */
.sks-hero-v2-img-col {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.sks-hero-v2-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.sks-hero-v2-img-col:hover .sks-hero-v2-main-img {
    transform: scale(1.04);
}

.sks-hero-v2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            transparent 50%,
            rgba(31, 77, 58, 0.25) 100%);
    pointer-events: none;
}

.sks-hero-v2-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #c9a227;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 3px;
}

/* --- Text Column --- */
.sks-hero-v2-text-col {
    background: #1f4d3a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px;
    overflow: hidden;
    position: relative;
}

.sks-hero-v2-text-col::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(201, 154, 46, 0.22);
  border-radius: 50%;
  top: -70px;
  right: -70px;
}

/* --- Breadcrumb --- */
.sks-hero-v2-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 22px;
    font-size: .9rem;
}

.sks-hero-v2-breadcrumb a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.2s;
}

.sks-hero-v2-breadcrumb a:hover {
    color: #c9a227;
    text-decoration: underline;
}

.sks-hero-v2-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.30);
    font-size: 14px;
    line-height: 1;
    margin: 0 2px;
}

.sks-hero-v2-breadcrumb-current {
    color: #c9a227;
    font-weight: 600;
}

/* --- Eyebrow & Heading --- */
.sks-hero-v2-eyebrow {
    color: #c9a227;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sks-hero-v2-heading {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.sks-hero-v2-accent {
    color: #c9a227;
}

.sks-hero-v2-divider {
    width: 52px;
    height: 3px;
    background: #c9a227;
    border-radius: 2px;
    margin-bottom: 22px;
}

.sks-hero-v2-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 420px;
}

/* --- Stats --- */
.sks-hero-v2-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
}

.sks-hero-v2-stat-item {
    display: flex;
    flex-direction: column;
}

.sks-hero-v2-stat-num {
    color: #c9a227;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.sks-hero-v2-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Buttons --- */
.sks-hero-v2-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sks-hero-v2-btn-primary {
    background: #c9a227;
    color: #ffffff;
    border: 2px solid #c9a227;
    padding: 13px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.sks-hero-v2-btn-primary:hover {
    background: #a8861e;
    border-color: #a8861e;
    color: #fff;
}

.sks-hero-v2-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    padding: 13px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s, background 0.3s;
}

.sks-hero-v2-btn-outline:hover {
    border-color: #c9a227;
    color: #c9a227;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .sks-hero-v2-split-wrap {
        grid-template-columns: 1fr;
    }

    .sks-hero-v2-img-col {
        min-height: 280px;
    }

    .sks-hero-v2-text-col {
        padding: 40px 36px;
    }

    .sks-hero-v2-section {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .sks-hero-v2-section {
        padding: 0;
    }

    .sks-hero-v2-text-col {
        padding: 32px 22px;
    }

    .sks-hero-v2-heading {
        font-size: 26px;
    }

    .sks-hero-v2-stats {
        gap: 20px;
    }

    .sks-hero-v2-btns {
        flex-direction: column;
    }

    .sks-hero-v2-btn-primary,
    .sks-hero-v2-btn-outline {
        text-align: center;
    }
}

/* ===== END SKS SPLIT HERO V2 ===== */