/* ══════════════════════════════════════════════════
       GLOBAL OVERFLOW FIX — horizontal scroll band karo
       ══════════════════════════════════════════════════ */
.hero-carousel,
.stats-section,
.hiw-section,
.container-xxl {
    max-width: 100%;
}

/* ── GLOBAL CURSOR ───────────────────────────────── */
a,
button,
[role="button"],
.btn,
.nav-link,
.dropdown-item,
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators button,
.owl-prev,
.owl-next,
.back-to-top,
.hiw-card,
.bia-socials a,
.bstrip-socials a,
.team-social a,
.hiw-cta-btn,
.bia-enroll-btn,
.bstrip-enroll {
    cursor: pointer !important;
}

/* ══════════════════════════════════════════════════
       HERO CAROUSEL — Responsive height via aspect-ratio
       ══════════════════════════════════════════════════ */

/* Desktop default */
.carousel-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .carousel-img {
        height: 500px;
    }
}

/* Large mobile */
@media (max-width: 767px) {
    .carousel-img {
        height: 420px;
    }

    .carousel-caption {
        bottom: 20px;
        left: 8px;
        right: 8px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .carousel-img {
        height: 320px;
        /* Mobile pe center crop better lagti hai */
        object-position: center 30%;
    }

    .carousel-caption {
        bottom: 12px;
        left: 4px;
        right: 4px;
    }
}

/* Very small (320px) */
@media (max-width: 360px) {
    .carousel-img {
        height: 260px;
    }
}

.slide-content-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Badge */
.hero-badge {
    color: var(--gold-light);
    font-family: 'Amiri', serif;
    letter-spacing: 4px;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 7px 26px;
    border: 1px solid rgba(174, 130, 37, 0.5);
}

/* Heading */
.slide-title {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: clamp(20px, 5.5vw, 70px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

/* Subtitle */
.slide-sub {
    font-family: 'Amiri', serif;
    font-size: clamp(11px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

/* Button row */
.slide-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.slide-btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 2px solid var(--gold);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(174, 130, 37, 0.35);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

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

.slide-btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.slide-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Tablet adjustments */
@media (max-width: 767px) {
    .hero-badge {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 5px 14px;
        margin-bottom: 10px;
    }

    .slide-sub {
        margin-bottom: 14px;
    }

    .slide-btn-gold,
    .slide-btn-outline {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 9px 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .slide-btns {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .slide-btn-gold,
    .slide-btn-outline {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 9px 14px;
    }
}

/* ══════════════════════════════════════════════════
       STATS — Row negative margin fix
       ══════════════════════════════════════════════════ */
.stats-section {
    background: var(--navy);
    padding: 60px 0;
}

/* Override Bootstrap's row negative margin inside stats */
.stats-section .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.5s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.7s;
}

.stat-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Cinzel', serif;
}

/* Mobile stats: smaller font */
@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* ══════════════════════════════════════════════════
       COURSE IMAGES — responsive height
       ══════════════════════════════════════════════════ */
.course-img {
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

@media (max-width: 575px) {
    .course-img {
        height: 200px;
    }
}

/* ══════════════════════════════════════════════════
       TRIAL IMAGE — responsive height
       ══════════════════════════════════════════════════ */
.trial-img {
    height: 480px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .trial-img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .trial-img {
        height: 260px;
    }
}

/* Trial badge — on mobile it was going off left edge */
@media (max-width: 575px) {
    .trial-img+div[style*="top: 24px"] {
        left: 8px !important;
        top: 12px !important;
    }
}

/* ══════════════════════════════════════════════════
       TEAM FULL IMAGE — responsive
       ══════════════════════════════════════════════════ */
.team-full-img {
    height: 550px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767px) {
    .team-full-img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .team-full-img {
        height: 220px;
    }
}

/* =====================================================
       HOW IT WORKS
       ===================================================== */
.hiw-section {
    position: relative;
    padding: 100px 0 90px;
    overflow: hidden;
    /* ← ye horizontal scroll band karta hai */
    width: 100%;
    max-width: 100%;
}

.hiw-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hiw-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hiw-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(13, 27, 42, 0.97) 0%,
            rgba(13, 27, 42, 0.92) 40%,
            rgba(13, 27, 42, 0.80) 65%,
            rgba(13, 27, 42, 0.70) 100%);
}

.hiw-header {
    text-align: center;
    margin-bottom: 60px;
}

.hiw-eyebrow {
    font-family: 'Amiri', serif;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 14px;
    opacity: 0.9;
}

.hiw-heading {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}

.hiw-heading span {
    color: var(--gold);
}

.hiw-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
    font-family: 'Amiri', serif;
    font-style: italic;
}

/* Steps row */
.hiw-steps-row {
    display: flex;
    align-items: stretch;
    gap: 14px;
    position: relative;
    width: 100%;
}

.hiw-step-col {
    flex: 1;
    position: relative;
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.hiw-arrow {
    position: absolute;
    top: 44px;
    right: -22px;
    width: 44px;
    height: 16px;
    z-index: 3;
    opacity: 0.55;
}

.hiw-arrow svg {
    width: 100%;
    height: 100%;
}

/* Card */
.hiw-card {
    position: relative;
    background: rgba(13, 27, 42, 0.65);
    border-radius: 0;
    border: 1px solid rgba(174, 130, 37, 0.28);
    border-left: 3px solid rgba(174, 130, 37, 0.55);
    padding: 30px 16px 26px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    transition: all 0.38s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hiw-card:hover {
    background: rgba(13, 27, 42, 0.82);
    border-color: var(--gold);
    border-left-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(174, 130, 37, 0.2);
}

.hiw-wm {
    position: absolute;
    bottom: -12px;
    right: 4px;
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(174, 130, 37, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.38s;
    overflow: hidden;
    max-width: 100%;
}

.hiw-card:hover .hiw-wm {
    color: rgba(174, 130, 37, 0.14);
}

.hiw-icon-ring {
    width: 62px;
    height: 62px;
    border-radius: 0;
    border: 1px solid rgba(174, 130, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.38s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.hiw-card:hover .hiw-icon-ring {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(174, 130, 37, 0.12), 0 0 20px rgba(174, 130, 37, 0.2);
}

.hiw-icon-inner {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: rgba(174, 130, 37, 0.12);
    border: 1px solid rgba(174, 130, 37, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.38s;
}

.hiw-card:hover .hiw-icon-inner {
    background: var(--gold);
    border-color: var(--gold);
}

.hiw-icon-inner i {
    color: #e8b84b;
    font-size: 17px;
    transition: color 0.38s;
    filter: drop-shadow(0 0 4px rgba(232, 184, 75, 0.6));
}

.hiw-card:hover .hiw-icon-inner i {
    color: var(--navy);
    filter: none;
}

.hiw-step-badge {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(174, 130, 37, 0.18);
    position: relative;
    z-index: 1;
    transition: color 0.38s, border-color 0.38s;
    text-shadow: 0 0 12px rgba(174, 130, 37, 0.5);
}

.hiw-card:hover .hiw-step-badge {
    color: #f0c040;
    border-bottom-color: rgba(174, 130, 37, 0.4);
}

.hiw-card-divider {
    width: 32px;
    height: 2px;
    background: rgba(174, 130, 37, 0.3);
    margin: 0 auto 10px;
    transition: width 0.38s ease, background 0.38s;
    position: relative;
    z-index: 1;
}

.hiw-card:hover .hiw-card-divider {
    width: 56px;
    background: var(--gold);
}

.hiw-card-title {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.38s;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hiw-card:hover .hiw-card-title {
    color: var(--gold);
}

.hiw-card-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
    flex: 1;
    transition: color 0.38s, background 0.38s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(174, 130, 37, 0.12);
}

.hiw-card:hover .hiw-card-desc {
    color: #fff;
    background: rgba(0, 0, 0, 0.30);
    border-top-color: rgba(174, 130, 37, 0.28);
}

.hiw-teams-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    font-size: 10px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.38s;
    flex-shrink: 0;
}

.hiw-card:hover .hiw-teams-badge {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(174, 130, 37, 0.1);
}

.hiw-cta {
    text-align: center;
    margin-top: 60px;
}

.hiw-cta-text {
    font-family: 'Amiri', serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hiw-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 2px solid var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
}

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

.hiw-cta-btn i {
    font-size: 11px;
    transition: transform 0.3s;
}

.hiw-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── HIW Mobile ──────────────────────────────────── */
@media (max-width: 991px) {
    .hiw-section {
        overflow: hidden;
        padding: 70px 0 60px;
    }

    .hiw-steps-row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .hiw-step-col {
        flex: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hiw-arrow {
        display: none;
    }

    .hiw-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 18px 16px 16px;
        border-left: 3px solid var(--gold);
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        /* No hover transform on touch — prevents layout shift */
        transition: background 0.3s, border-color 0.3s;
    }

    /* Disable translateY on touch devices — causes scroll jitter */
    @media (hover: none) {
        .hiw-card:hover {
            transform: none;
        }
    }

    .hiw-icon-ring {
        display: flex;
        width: 44px;
        height: 44px;
        border-radius: 0;
        margin: 0 0 12px 0;
        flex-shrink: 0;
    }

    .hiw-icon-inner {
        width: 32px;
        height: 32px;
    }

    .hiw-icon-inner i {
        font-size: 13px;
    }

    .hiw-step-badge {
        display: block;
        width: 100%;
        margin-bottom: 6px;
        font-size: 9px;
    }

    .hiw-card-divider {
        display: block;
        margin: 0 0 8px 0;
        width: 28px;
    }

    .hiw-card-title {
        display: block;
        width: 100%;
        font-size: 12px;
    }

    .hiw-card-desc {
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin-top: 8px;
        padding: 10px 12px;
        font-size: 12px;
        text-align: left;
    }

    .hiw-wm {
        font-size: 46px;
        bottom: -6px;
        right: 4px;
    }

    .hiw-teams-badge {
        margin-top: 10px;
        align-self: flex-start;
    }
}

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

    .hiw-steps-row,
    .hiw-step-col,
    .hiw-card {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}


/* ====== FEATURES ICONS ====== */
.feat-section {
    background: var(--navy);
    padding: 80px 0 70px;
    position: relative;
}

.feat-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.feat-header {
    text-align: center;
    margin-bottom: 52px;
}

.feat-eyebrow {
    display: block;
    font-family: 'Amiri', serif;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    opacity: 0.85;
}

.feat-title {
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.feat-title span {
    color: var(--gold-light);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media (max-width: 991px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

.feat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(174, 130, 37, 0.15);
    padding: 40px 28px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gold);
    transition: height 0.35s;
}

.feat-card:hover::before {
    height: 3px;
}

.feat-card:hover {
    background: rgba(174, 130, 37, 0.07);
    border-color: rgba(174, 130, 37, 0.35);
    transform: translateY(-5px);
}

.feat-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(174, 130, 37, 0.3);
    background: rgba(174, 130, 37, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all 0.35s;
}

.feat-card:hover .feat-icon-box {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(174, 130, 37, 0.1);
}

.feat-icon-box i {
    font-size: 24px;
    color: var(--gold);
    transition: color 0.35s;
}

.feat-card:hover .feat-icon-box i {
    color: var(--navy);
}

.feat-name {
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    transition: color 0.35s;
}

.feat-card:hover .feat-name {
    color: var(--gold-light);
}

.feat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    margin: 0;
    transition: color 0.35s;
}

.feat-card:hover .feat-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ====== AYAH BANNER ====== */
.ayah-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.ayah-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ayah-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.ayah-veil {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 32, 0.93);
}

.ayah-body {
    position: relative;
    z-index: 2;
}

.ayah-ornament {
    font-family: 'Amiri', serif;
    font-size: 30px;
    color: var(--gold);
    opacity: 0.7;
    display: block;
    margin-bottom: 24px;
    letter-spacing: 8px;
}

.ayah-arabic {
    font-family: 'Amiri', serif;
    font-size: clamp(24px, 4.5vw, 46px);
    color: var(--white);
    direction: rtl;
    line-height: 1.8;
    margin-bottom: 24px;
}

.ayah-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 22px;
    opacity: 0.6;
}

.ayah-english {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: clamp(14px, 2.2vw, 20px);
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.ayah-ref {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.ayah-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1.5px solid rgba(174, 130, 37, 0.55);
    text-decoration: none;
    transition: all 0.3s;
}

.ayah-cta:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ====== COUNTRIES STRIP ====== */
.countries-section {
    background: var(--white);
    padding: 36px 0;
    border-top: 1px solid rgba(174, 130, 37, 0.12);
    border-bottom: 1px solid rgba(174, 130, 37, 0.12);
}

.countries-label {
    text-align: center;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
}

.countries-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.country-chip {
    font-size: 13px;
    color: var(--text-mid);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding: 6px 20px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.country-chip:hover {
    color: var(--gold);
}

.country-divider {
    width: 1px;
    height: 16px;
    background: rgba(174, 130, 37, 0.25);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .countries-row {
        gap: 4px 0;
    }

    .country-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}


.lj-section {
    background: var(--off-white);
    padding: 70px 0 60px;
    cursor: pointer;
}

.lj-eyebrow {
    font-family: 'Amiri', serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.lj-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.lj-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin: 48px auto 0;
}

.lj-track::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 0;
}

.lj-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.lj-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(174, 130, 37, 0.08);
    border: 2.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.35s;
}

.lj-circle i {
    font-size: 28px;
    color: var(--navy);
    transition: color 0.35s;
}

.lj-step:hover .lj-circle {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 0 0 6px rgba(174, 130, 37, 0.15);
}

.lj-step:hover .lj-circle i {
    color: var(--gold);
}

.lj-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
    text-align: center;
}

.lj-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.6;
    text-align: center;
    max-width: 110px;
    margin: 0 auto;
}

.lj-btn {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 2px solid var(--navy);
    text-decoration: none;
    transition: all 0.3s;
}

.lj-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

@media (max-width: 767px) {
    .lj-track {
        flex-wrap: wrap;
        gap: 20px;
    }

    .lj-track::before {
        display: none;
    }

    .lj-step {
        flex: 0 0 45%;
    }
}

@media (max-width: 480px) {
    .lj-step {
        flex: 0 0 100%;
    }
}
