/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    background: #111 url('hero-bg.png') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.72) 45%,
            rgba(10, 10, 10, 0.15) 75%,
            rgba(10, 10, 10, 0.0) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-breadcrumb {
    font-size: 14px;
    color: rgb(255 255 255);
    margin-bottom: 24px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.hero-breadcrumb a {
    color: rgb(255 255 255);
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: var(--color-secondary);
}

.hero-content {
    max-width: 560px;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-divider {
    width: 48px;
    height: 3px;
    background: var(--color-secondary);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 15px;
    color: rgb(255 255 255);
    line-height: 1.6;
}

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section {
    background: #cdcdcd0d;
    padding: 30px 0;
}

.stats-slider {
    display: flex;
    justify-content: center;
}

.stat-slide-item {
    flex: 1;
}

.stats-slider.slick-initialized {
    display: block;
}

.stats-slider.slick-initialized .stat-slide-item {
    outline: none;
    border-right: 1px solid #eee;
}

.stats-slider.slick-initialized .slick-slide:last-child {
    border-right: none;
}

.stat-item {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: translateY(-4px);
}

/* Stats Slider Dots */
.stats-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    gap: 8px;
}

.stats-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.stats-slider .slick-dots li.slick-active button {
    background: var(--color-third);
    width: 20px;
    border-radius: 4px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* background: rgba(201, 168, 76, 0.12); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--color-secondary);
    font-size: 18px;
}

.stat-value {
    font-size: 32px;
    margin-left: 10px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
    /* margin-bottom: 12px; */
}

.stat-label {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-family2);
}

@media (max-width: 575px) {
    .stat-label {
        height: 42px;
        padding: 0 15px;
    }
}

.stat-desc {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}

/* ============================================================
   SHARED SECTION LABELS & TITLES
============================================================ */
.section-eyebrow {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-align: center;
}

.section-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 30px;
}

/* ============================================================
   MISSION SECTION
============================================================ */
.mission-section {
    background: #fff;
    padding: 40px 0;
}

.mission-slider {
    display: flex;
    justify-content: center;
}

.mission-slide-item {
    flex: 1;
}

.mission-slider.slick-initialized {
    display: block;
}

.mission-slider.slick-initialized .mission-slide-item {
    outline: none;
    border-right: 1px solid #e8e5dc;
}

.mission-slider.slick-initialized .slick-slide:last-child {
    border-right: none;
}

.mission-card {
    width: 100%;
    background: #fff;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.2s;
}

.mission-card:hover {
    background: #fdfcf8;
}

@media (max-width: 575px) {
    .mission-card {
        padding: 20px 12px;
    }
}

/* Mission Slider Dots */
.mission-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    gap: 8px;
}

.mission-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.mission-slider .slick-dots li.slick-active button {
    background: var(--color-third);
    width: 20px;
    border-radius: 4px;
}

.mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-secondary);
    font-size: 22px;
}

.mission-card h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mission-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ============================================================
   VALUES SECTION
============================================================ */
.values-section {
    background: #0d0d0d;
    padding: 50px 0;
}

.values-section .section-title {
    color: #fff;
}

.values-slider {
    display: flex;
    justify-content: center;
}

.value-slide-item {
    flex: 1;
}

.values-slider.slick-initialized {
    display: block;
}

.values-slider.slick-initialized .value-slide-item {
    outline: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.values-slider.slick-initialized .slick-slide:last-child {
    border-right: none;
}

.value-card {
    width: 100%;
    padding: 0px 20px;
    text-align: center;
    background: transparent;
    transition: background 0.2s;
}

.value-card:hover {
    background: rgba(201, 168, 76, 0.05);
}

/* Values Slider Dots */
.values-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    gap: 8px;
}

.values-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.values-slider .slick-dots li.slick-active button {
    background: var(--color-third);
    width: 20px;
    border-radius: 4px;
}

.value-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-secondary);
    font-size: 20px;
}

.value-card h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 13px;
    color: rgb(255 255 255);
    line-height: 1.7;
}

/* ============================================================
   TIMELINE SECTION
============================================================ */
.timeline-section {
    background: #fff;
    padding: 30px 0;
}

.timeline-track {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), rgba(201, 168, 76, 0.2));
}

.timeline-items {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-slide-item {
    flex: 1;
}

.timeline-items.slick-initialized {
    display: block;
    margin: 0 -10px;
}

.timeline-items.slick-initialized .timeline-slide-item {
    padding: 0 10px;
    outline: none;
}

/* Timeline Slick Dots */
.timeline-items .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    gap: 8px;
}

.timeline-items .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.timeline-items .slick-dots li.slick-active button {
    background: var(--color-third);
    width: 20px;
    border-radius: 4px;
}

.timeline-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
}

.timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 18px;
    margin-bottom: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
    transition: background 0.2s, color 0.2s;
}

.timeline-dot img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.timeline-year {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.timeline-head {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeline-body {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    max-width: 195px;
}

/* ============================================================
   PRINCIPLES SECTION
============================================================ */
.principles-section {
    background: #fdfcf8;
    padding: 40px 0;
}

.principles-slider {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.principle-slide-item {
    flex: 1;
}

.principles-slider.slick-initialized {
    display: block;
    margin: 0 -10px;
}

.principles-slider.slick-initialized .principle-slide-item {
    padding: 0 10px;
    outline: none;
}

/* Dots Styling */
.principles-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    /* gap: 8px; */
}

.principles-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.principles-slider .slick-dots li.slick-active button {
    background: var(--color-third);
    /* width: 20px; */
    border-radius: 4px;
}

.principle-card {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 21px 10px;
    text-align: center;
    background: #fdfcf8;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

@media (max-width: 575px) {
    .principle-card h3 {
        height: 36px;
    }

    .principle-card p {
        height: 89px;
    }
}

.principle-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.principle-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-secondary);
    font-size: 20px;
}

.principle-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.principle-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
    background: #0d0d0d;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 100;
    color: #fff;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgb(255 255 255);
    margin-bottom: 25px;
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: var(--color-third);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-cta-gold:hover {
    background: var(--color-hover);
}

.value-icon img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
}

.values-slider .slick-dots li {
    background-color: #ffffff54;
}