/* ==========================================================================
   ✨ LUXURY 2026 REDESIGN - PREMIUM TOURISM BOOKING EXPERIENCE
   Brand: النخبة للسياحة | Style: Emirates / Hilton / Marriott level
   ========================================================================== */

:root {
    --lx-navy: #0A1F3A;
    --lx-navy-2: #0F2D4F;
    --lx-gold: #C9A227;
    --lx-gold-soft: #D4B23A;
    --lx-gold-deep: #B8911F;
    --lx-bg: #F8F6F1;
    --lx-white: #FFFFFF;
    --lx-text: #0A1F3A;
    --lx-muted: #5A6577;
    --lx-border: rgba(10, 31, 58, 0.08);
    --lx-shadow-sm: 0 4px 12px rgba(7, 26, 53, 0.06);
    --lx-shadow-md: 0 10px 30px rgba(7, 26, 53, 0.08);
    --lx-shadow-lg: 0 20px 50px rgba(7, 26, 53, 0.12);
    --lx-shadow-xl: 0 30px 70px rgba(7, 26, 53, 0.18);
    --lx-radius-sm: 12px;
    --lx-radius-md: 20px;
    --lx-radius-lg: 24px;
    --lx-radius-xl: 32px;
    --lx-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL RESETS & OVERRIDES FOR THE DETAILS PAGE
   ========================================================================== */
body.rtl,
html[dir="rtl"] body {
    font-family: "Alexandria", "Cairo", "Tajawal", sans-serif;
    background: var(--lx-bg);
    color: var(--lx-text);
}

/* Hide the old section elements that we are replacing */
.lx-old-tour-header,
.lx-old-position,
.lx-old-margin-60 {
    display: none !important;
}

/* Override parallax background of old hero so it does not leak */
.parallax-window {
    display: none !important;
}

/* Force container max width */
.lx-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

/* ==========================================================================
   SECTION 1 — LUXURY HERO (500px)
   ========================================================================== */
.lx-hero {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
    background: var(--lx-navy);
    isolation: isolate;
}

.lx-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.lx-hero:hover .lx-hero-bg {
    transform: scale(1.08);
}

.lx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 26, 53, 0.85) 0%, rgba(13, 44, 84, 0.6) 50%, rgba(7, 26, 53, 0.85) 100%);
    z-index: 2;
}

.lx-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 162, 76, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.lx-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.lx-hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lx-hero-info {
    color: #fff;
    text-align: right;
}

.lx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 162, 76, 0.15);
    border: 1px solid rgba(212, 162, 76, 0.4);
    border-radius: 50px;
    color: var(--lx-gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
}

.lx-hero-badge i {
    font-size: 14px;
}

.lx-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 24px 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.lx-hero-title .lx-hero-title-accent {
    display: block;
    color: var(--lx-gold);
    font-size: 0.7em;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0;
}

.lx-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lx-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.lx-hero-meta-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 162, 76, 0.15);
    color: var(--lx-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid rgba(212, 162, 76, 0.25);
    flex-shrink: 0;
}

.lx-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lx-hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--lx-radius-md);
    padding: 20px 22px;
    transition: all var(--lx-transition);
    position: relative;
    overflow: hidden;
}

.lx-hero-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.lx-hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 162, 76, 0.4);
    transform: translateY(-4px);
}

.lx-hero-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-deep));
    color: var(--lx-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(212, 162, 76, 0.3);
}

.lx-hero-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.lx-hero-stat-value {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.lx-hero-stat-value small {
    font-size: 12px;
    color: var(--lx-gold);
    font-weight: 600;
    margin-right: 4px;
}

/* Breadcrumb bar under hero */
.lx-breadcrumb {
    background: var(--lx-white);
    border-bottom: 1px solid var(--lx-border);
    padding: 18px 0;
}

.lx-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--lx-muted);
    font-size: 14px;
    font-weight: 500;
}

.lx-breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lx-breadcrumb-list a {
    color: var(--lx-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lx-breadcrumb-list a:hover {
    color: var(--lx-gold);
}

.lx-breadcrumb-list .lx-bc-sep {
    color: var(--lx-border);
    font-size: 12px;
}

.lx-breadcrumb-list .lx-bc-current {
    color: var(--lx-navy);
    font-weight: 700;
}

/* ==========================================================================
   SECTION 2 — STICKY BOOKING CARD
   ========================================================================== */
.lx-main-grid {
    padding: 80px 0 100px 0;
}

.lx-main-grid-row {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: stretch;
}

.lx-content-col {
    min-width: 0;
}

.lx-sidebar-col {
    position: relative;
}

.lx-booking-card {
    position: sticky;
    top: 24px;
    background: var(--lx-white);
    border-radius: var(--lx-radius-lg);
    box-shadow: var(--lx-shadow-lg);
    padding: 32px 28px;
    border: 1px solid var(--lx-border);
    overflow: hidden;
}

.lx-booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lx-gold) 0%, var(--lx-gold-soft) 50%, var(--lx-gold) 100%);
}

.lx-booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lx-border);
}

.lx-booking-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--lx-navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lx-booking-title i {
    color: var(--lx-gold);
    font-size: 22px;
}

.lx-booking-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #16a34a;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
}

.lx-booking-trust::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: lx-pulse 2s infinite;
}

@keyframes lx-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.lx-form-group {
    margin-bottom: 18px;
}

.lx-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--lx-navy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.lx-form-label i {
    color: var(--lx-gold);
    margin-left: 4px;
}

.lx-input-wrap {
    position: relative;
}

.lx-input-wrap > i {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--lx-muted);
    font-size: 16px;
    pointer-events: none;
}

.lx-form-control {
    width: 100%;
    padding: 14px 44px 14px 16px;
    background: var(--lx-bg);
    border: 1.5px solid var(--lx-border);
    border-radius: var(--lx-radius-sm);
    color: var(--lx-text);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    height: auto;
    line-height: 1.4;
}

.lx-form-control:focus {
    outline: none;
    border-color: var(--lx-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.12);
}

.lx-form-control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.lx-counter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lx-counter {
    background: var(--lx-bg);
    border: 1.5px solid var(--lx-border);
    border-radius: var(--lx-radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.lx-counter:hover {
    border-color: var(--lx-gold);
}

.lx-counter-label {
    font-size: 12px;
    color: var(--lx-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lx-counter-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lx-counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    color: var(--lx-navy);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.lx-counter-btn:hover {
    background: var(--lx-gold);
    color: #fff;
    border-color: var(--lx-gold);
}

.lx-counter-value {
    min-width: 28px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--lx-navy);
}

.lx-summary {
    background: linear-gradient(135deg, rgba(7, 26, 53, 0.04) 0%, rgba(212, 162, 76, 0.05) 100%);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-sm);
    padding: 18px 20px;
    margin: 22px 0;
}

.lx-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--lx-muted);
    font-weight: 500;
}

.lx-summary-row strong {
    color: var(--lx-navy);
    font-weight: 700;
}

.lx-summary-divider {
    height: 1px;
    background: var(--lx-border);
    margin: 10px 0;
}

.lx-summary-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 6px;
}

.lx-summary-total-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--lx-navy);
}

.lx-summary-total-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--lx-gold-deep);
    line-height: 1;
}

.lx-summary-total-value small {
    font-size: 13px;
    color: var(--lx-muted);
    font-weight: 600;
    margin-right: 4px;
}

.lx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--lx-radius-sm);
    font-size: 16px;
    font-weight: 800;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--lx-transition);
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}

.lx-btn-primary {
    background: linear-gradient(135deg, var(--lx-gold) 0%, var(--lx-gold-deep) 100%);
    color: var(--lx-navy);
    box-shadow: 0 8px 25px rgba(212, 162, 76, 0.35);
}

.lx-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: right 0.6s ease;
}

.lx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 162, 76, 0.5);
    color: var(--lx-navy);
}

.lx-btn-primary:hover::before {
    right: 100%;
}

.lx-btn-primary i {
    font-size: 18px;
}

.lx-btn-secondary {
    background: var(--lx-white);
    color: var(--lx-navy);
    border: 1.5px solid var(--lx-border);
    margin-top: 10px;
}

.lx-btn-secondary:hover {
    border-color: var(--lx-gold);
    color: var(--lx-gold-deep);
    background: rgba(212, 162, 76, 0.04);
}

.lx-btn-secondary i {
    color: #ef4444;
    font-size: 16px;
}

.lx-booking-trust-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--lx-border);
    gap: 10px;
}

.lx-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--lx-muted);
    font-weight: 600;
}

.lx-trust-badge i {
    color: var(--lx-gold);
    font-size: 14px;
}

/* ==========================================================================
   SECTION 3 — PROGRAM SHOWCASE (TWO COLUMN)
   ========================================================================== */
.lx-showcase {
    background: var(--lx-white);
    border-radius: var(--lx-radius-lg);
    box-shadow: var(--lx-shadow-md);
    overflow: hidden;
    border: 1px solid var(--lx-border);
    margin-bottom: 40px;
}

.lx-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 480px;
}

.lx-showcase-media {
    position: relative;
    background: var(--lx-navy);
    overflow: hidden;
    min-height: 400px;
}

.lx-showcase-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.lx-showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lx-showcase-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.lx-showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lx-showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--lx-navy);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.lx-showcase-nav:hover {
    background: var(--lx-gold);
    color: var(--lx-navy);
}

.lx-showcase-nav.prev {
    right: 16px;
}

.lx-showcase-nav.next {
    left: 16px;
}

.lx-showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-deep));
    color: var(--lx-navy);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(212, 162, 76, 0.4);
    letter-spacing: 0.03em;
}

.lx-showcase-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.lx-showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lx-showcase-dot.is-active {
    width: 30px;
    border-radius: 5px;
    background: var(--lx-gold);
    border-color: var(--lx-gold);
}

.lx-showcase-info {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lx-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lx-gold-deep);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.lx-showcase-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--lx-gold);
}

.lx-showcase-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--lx-navy);
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.lx-showcase-sub {
    font-size: 16px;
    color: var(--lx-muted);
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.lx-showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.lx-showcase-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lx-text);
    font-weight: 600;
}

.lx-showcase-feature i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(212, 162, 76, 0.1);
    color: var(--lx-gold-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.lx-showcase-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--lx-border);
}

.lx-showcase-price-label {
    font-size: 13px;
    color: var(--lx-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.lx-showcase-price-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--lx-navy);
    line-height: 1;
    background: linear-gradient(135deg, var(--lx-gold) 0%, var(--lx-gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lx-showcase-price-value small {
    font-size: 14px;
    color: var(--lx-muted);
    font-weight: 600;
    -webkit-text-fill-color: var(--lx-muted);
    margin-right: 4px;
}

/* ==========================================================================
   SECTION 4 — PROGRAM DETAILS (ACCORDION)
   ========================================================================== */
.lx-details {
    margin-bottom: 40px;
}

.lx-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--lx-border);
}

.lx-section-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--lx-navy);
    margin: 0;
    position: relative;
    padding-right: 18px;
}

.lx-section-head h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: linear-gradient(180deg, var(--lx-gold), var(--lx-gold-deep));
    border-radius: 3px;
}

.lx-section-head p {
    color: var(--lx-muted);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.lx-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lx-accordion-item {
    background: var(--lx-white);
    border-radius: var(--lx-radius-md);
    border: 1px solid var(--lx-border);
    overflow: hidden;
    transition: all var(--lx-transition);
}

.lx-accordion-item:hover {
    box-shadow: var(--lx-shadow-sm);
    border-color: rgba(212, 162, 76, 0.3);
}

.lx-accordion-item.is-open {
    box-shadow: var(--lx-shadow-md);
    border-color: var(--lx-gold);
}

.lx-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
    transition: background 0.3s ease;
}

.lx-accordion-header:hover {
    background: rgba(212, 162, 76, 0.03);
}

.lx-accordion-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.lx-accordion-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 162, 76, 0.1), rgba(212, 162, 76, 0.18));
    color: var(--lx-gold-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lx-accordion-item.is-open .lx-accordion-icon {
    background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-deep));
    color: var(--lx-navy);
    transform: rotate(360deg);
}

.lx-accordion-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--lx-navy);
    margin: 0;
    line-height: 1.3;
}

.lx-accordion-sub {
    font-size: 13px;
    color: var(--lx-muted);
    margin: 2px 0 0 0;
    font-weight: 500;
}

.lx-accordion-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lx-bg);
    color: var(--lx-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--lx-border);
}

.lx-accordion-item.is-open .lx-accordion-toggle {
    background: var(--lx-navy);
    color: var(--lx-gold);
    transform: rotate(180deg);
    border-color: var(--lx-navy);
}

.lx-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lx-accordion-item.is-open .lx-accordion-body {
    max-height: 2000px;
}

.lx-accordion-content {
    padding: 0 28px 28px 28px;
    color: var(--lx-text);
    font-size: 15px;
    line-height: 1.85;
}

.lx-accordion-content p {
    margin: 0 0 12px 0;
    color: #475569;
}

.lx-accordion-content p:last-child {
    margin-bottom: 0;
}

.lx-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lx-accordion-content ul li {
    position: relative;
    padding-right: 32px;
    color: #334155;
    font-size: 14.5px;
    line-height: 1.7;
    font-weight: 500;
}

.lx-accordion-content ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lx-accordion-content ul.lx-excludes li::before {
    content: "✕";
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

/* ==========================================================================
   SECTION 5 — WHY CHOOSE THIS PROGRAM (DARK NAVY)
   ========================================================================== */
.lx-why {
    position: relative;
    background: linear-gradient(135deg, var(--lx-navy) 0%, var(--lx-navy-2) 100%);
    border-radius: var(--lx-radius-xl);
    padding: 80px 50px;
    margin-bottom: 100px;
    overflow: hidden;
    isolation: isolate;
}

.lx-why::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.lx-why::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.lx-why-head {
    text-align: center;
    margin-bottom: 60px;
}

.lx-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lx-gold);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}

.lx-why-eyebrow::before,
.lx-why-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--lx-gold);
}

.lx-why-title {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.lx-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.lx-why-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--lx-radius-md);
    padding: 32px 22px;
    text-align: center;
    transition: all var(--lx-transition);
    position: relative;
    overflow: hidden;
}

.lx-why-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lx-gold), var(--lx-gold-soft));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.lx-why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 162, 76, 0.4);
}

.lx-why-card:hover::before {
    transform: scaleX(1);
}

.lx-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-deep));
    color: var(--lx-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(212, 162, 76, 0.3);
}

.lx-why-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.lx-why-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================================================
   SECTION 6 — RELATED PROGRAMS
   ========================================================================== */
.lx-related {
    padding: 0 0 100px 0;
}

.lx-related-head {
    text-align: center;
    margin-bottom: 50px;
}

.lx-related-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lx-gold-deep);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.lx-related-eyebrow::before,
.lx-related-eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--lx-gold);
}

.lx-related-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--lx-navy);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.lx-related-sub {
    color: var(--lx-muted);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.lx-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.lx-related-card {
    background: var(--lx-white);
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    box-shadow: var(--lx-shadow-sm);
    border: 1px solid var(--lx-border);
    transition: all var(--lx-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.lx-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lx-shadow-xl);
    border-color: transparent;
}

.lx-related-media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--lx-navy);
}

.lx-related-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lx-related-card:hover .lx-related-media img {
    transform: scale(1.08);
}

.lx-related-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-deep));
    color: var(--lx-navy);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(212, 162, 76, 0.4);
}

.lx-related-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(7, 26, 53, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lx-related-duration i {
    color: var(--lx-gold);
}

.lx-related-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lx-related-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lx-muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lx-related-loc i {
    color: var(--lx-gold-deep);
}

.lx-related-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--lx-navy);
    line-height: 1.4;
    margin: 0 0 14px 0;
    min-height: 50px;
}

.lx-related-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lx-related-card:hover .lx-related-card-title a {
    color: var(--lx-gold-deep);
}

.lx-related-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.lx-related-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--lx-gold);
    font-size: 14px;
}

.lx-related-rating-num {
    font-size: 13px;
    color: var(--lx-muted);
    font-weight: 600;
}

.lx-related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--lx-border);
    gap: 12px;
}

.lx-related-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lx-related-price-label {
    font-size: 11px;
    color: var(--lx-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lx-related-price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--lx-navy);
    line-height: 1;
}

.lx-related-price-value small {
    font-size: 11px;
    color: var(--lx-muted);
    font-weight: 600;
    margin-right: 2px;
}

.lx-related-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lx-navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lx-related-cta:hover {
    background: var(--lx-gold);
    color: var(--lx-navy);
}

.lx-related-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

html[dir="rtl"] .lx-related-cta i {
    transform: rotate(180deg);
}

.lx-related-cta:hover i {
    transform: translateX(-3px);
}

html[dir="rtl"] .lx-related-cta:hover i {
    transform: rotate(180deg) translateX(-3px);
}

.lx-related-cta-wrap {
    text-align: center;
    margin-top: 12px;
}

/* ==========================================================================
   SECTION 7 — TRUST COUNTERS
   ========================================================================== */
.lx-trust {
    background: linear-gradient(135deg, var(--lx-navy) 0%, var(--lx-navy-2) 100%);
    border-radius: var(--lx-radius-xl);
    padding: 70px 40px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.lx-trust::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 162, 76, 0.5), transparent);
}

.lx-trust::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 162, 76, 0.5), transparent);
}

.lx-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.lx-trust-item {
    text-align: center;
    color: #fff;
    padding: 20px 10px;
    position: relative;
}

.lx-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(212, 162, 76, 0.3), transparent);
}

.lx-trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 162, 76, 0.12);
    color: var(--lx-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 162, 76, 0.25);
}

.lx-trust-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--lx-gold);
    font-family: 'Tajawal', sans-serif;
}

.lx-trust-num::after {
    content: "+";
    margin-right: 4px;
}

.lx-trust-num.lx-no-plus::after {
    content: "";
    margin: 0;
}

.lx-trust-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    line-height: 1.3;
}

/* ==========================================================================
   SECTION 8 — FAQ
   ========================================================================== */
.lx-faq {
    margin-bottom: 100px;
}

.lx-faq-head {
    text-align: center;
    margin-bottom: 50px;
}

.lx-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lx-gold-deep);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.lx-faq-eyebrow::before,
.lx-faq-eyebrow::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--lx-gold);
}

.lx-faq-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--lx-navy);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.lx-faq-sub {
    color: var(--lx-muted);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.lx-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

/* ==========================================================================
   SECTION 9 — NEWSLETTER (PREMIUM CTA BANNER)
   ========================================================================== */
.lx-newsletter {
    background: linear-gradient(135deg, var(--lx-navy) 0%, var(--lx-navy-2) 100%);
    border-radius: var(--lx-radius-xl);
    padding: 70px 60px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    isolation: isolate;
}

.lx-newsletter::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 162, 76, 0.12) 0%, transparent 60%);
    z-index: -1;
}

.lx-newsletter::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.lx-newsletter-info {
    color: #fff;
}

.lx-newsletter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lx-gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}

.lx-newsletter-eyebrow i {
    font-size: 16px;
}

.lx-newsletter-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.lx-newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.lx-newsletter-form {
    position: relative;
    z-index: 2;
}

.lx-newsletter-form-card {
    background: var(--lx-white);
    border-radius: var(--lx-radius-lg);
    padding: 28px;
    box-shadow: var(--lx-shadow-xl);
}

.lx-newsletter-input-wrap {
    position: relative;
    margin-bottom: 14px;
}

.lx-newsletter-input-wrap i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lx-gold-deep);
    font-size: 18px;
}

.lx-newsletter-input {
    width: 100%;
    padding: 18px 56px 18px 20px;
    background: var(--lx-bg);
    border: 1.5px solid var(--lx-border);
    border-radius: var(--lx-radius-sm);
    color: var(--lx-text);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
}

.lx-newsletter-input:focus {
    outline: none;
    border-color: var(--lx-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.12);
}

.lx-newsletter-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.lx-newsletter-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--lx-gold), var(--lx-gold-deep));
    color: var(--lx-navy);
    border: none;
    padding: 18px 24px;
    border-radius: var(--lx-radius-sm);
    font-size: 16px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(212, 162, 76, 0.3);
}

.lx-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 162, 76, 0.45);
}

.lx-newsletter-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--lx-border);
    flex-wrap: wrap;
    gap: 10px;
}

.lx-newsletter-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--lx-muted);
    font-weight: 600;
}

.lx-newsletter-feature i {
    color: var(--lx-gold-deep);
    font-size: 14px;
}

/* ==========================================================================
   SECTION 10 — FOOTER REDESIGN
   ========================================================================== */
.lx-site-footer {
    background: linear-gradient(180deg, var(--lx-navy) 0%, #050f1f 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--lx-gold);
}

.lx-site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.lx-footer-main {
    padding: 80px 0 50px 0;
    position: relative;
    z-index: 2;
}

.lx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.lx-footer-col h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 24px 0;
    padding-bottom: 14px;
    position: relative;
}

.lx-footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--lx-gold), var(--lx-gold-soft));
    border-radius: 2px;
}

.lx-footer-brand-block {
    color: rgba(255, 255, 255, 0.7);
}

.lx-footer-logo {
    max-height: 48px;
    margin-bottom: 20px;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.lx-footer-logo:hover {
    transform: scale(1.03);
}

.lx-footer-about {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 24px 0;
    font-weight: 500;
}

.lx-footer-social {
    display: flex;
    gap: 10px;
}

.lx-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lx-footer-social a:hover {
    background: var(--lx-gold);
    color: var(--lx-navy);
    border-color: var(--lx-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 162, 76, 0.3);
}

.lx-footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.lx-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lx-footer-menu li {
    margin-bottom: 12px;
}

.lx-footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lx-footer-menu a::before {
    content: "›";
    color: var(--lx-gold);
    font-size: 18px;
    font-weight: 800;
    transition: transform 0.3s ease;
    line-height: 1;
}

html[dir="rtl"] .lx-footer-menu a::before {
    content: "‹";
}

.lx-footer-menu a:hover {
    color: var(--lx-gold);
    transform: translateX(-4px);
}

html[dir="rtl"] .lx-footer-menu a:hover {
    transform: translateX(4px);
}

.lx-footer-menu a:hover::before {
    color: var(--lx-gold);
}

.lx-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lx-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.lx-footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 162, 76, 0.1);
    color: var(--lx-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 162, 76, 0.15);
}

.lx-footer-contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.lx-footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.lx-footer-contact a:hover {
    color: var(--lx-gold);
}

.lx-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.lx-footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.lx-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.lx-footer-copyright a {
    color: var(--lx-gold);
    text-decoration: none;
    font-weight: 700;
}

.lx-footer-copyright a:hover {
    color: var(--lx-gold-soft);
}

.lx-footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lx-footer-pay-icon {
    width: 44px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.lx-footer-pay-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* ==========================================================================
   FADE-IN ANIMATIONS
   ========================================================================== */
.lx-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lx-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
    .lx-hero-title {
        font-size: 44px;
    }
    
    .lx-main-grid-row {
        grid-template-columns: 1fr 380px;
        gap: 30px;
    }
    
    .lx-why {
        padding: 60px 30px;
    }
    
    .lx-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .lx-hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .lx-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .lx-hero-title {
        font-size: 36px;
    }
    
    .lx-main-grid {
        padding: 50px 0 60px 0;
    }
    
    .lx-main-grid-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lx-booking-card {
        position: relative;
        top: 0;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .lx-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .lx-showcase-media {
        min-height: 320px;
    }
    
    .lx-showcase-info {
        padding: 32px 28px;
    }
    
    .lx-showcase-title {
        font-size: 26px;
    }
    
    .lx-why {
        padding: 50px 24px;
    }
    
    .lx-why-title {
        font-size: 30px;
    }
    
    .lx-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lx-related-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .lx-related-title {
        font-size: 30px;
    }
    
    .lx-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .lx-trust-item:nth-child(2)::after {
        display: none;
    }
    
    .lx-trust-num {
        font-size: 38px;
    }
    
    .lx-faq-title {
        font-size: 30px;
    }
    
    .lx-newsletter {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 30px;
    }
    
    .lx-newsletter-title {
        font-size: 28px;
    }
    
    .lx-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .lx-container {
        padding-left: 18px;
        padding-right: 18px;
    }
    
    .lx-hero {
        padding: 40px 0;
    }
    
    .lx-hero-title {
        font-size: 30px;
    }
    
    .lx-hero-meta {
        gap: 14px 18px;
    }
    
    .lx-hero-meta-item {
        font-size: 13.5px;
    }
    
    .lx-hero-meta-item i {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .lx-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .lx-hero-stat-card {
        padding: 16px;
    }
    
    .lx-hero-stat-value {
        font-size: 18px;
    }
    
    .lx-main-grid {
        padding: 40px 0 50px 0;
    }
    
    .lx-booking-card {
        padding: 24px 20px;
    }
    
    .lx-counter-row {
        grid-template-columns: 1fr;
    }
    
    .lx-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .lx-section-head h2 {
        font-size: 22px;
    }
    
    .lx-accordion-header {
        padding: 18px 18px;
        gap: 12px;
    }
    
    .lx-accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lx-accordion-title {
        font-size: 15.5px;
    }
    
    .lx-accordion-content {
        padding: 0 18px 20px 18px;
    }
    
    .lx-accordion-content ul {
        grid-template-columns: 1fr;
    }
    
    .lx-why {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .lx-why-title {
        font-size: 26px;
    }
    
    .lx-why-grid {
        grid-template-columns: 1fr;
    }
    
    .lx-related {
        padding-bottom: 60px;
    }
    
    .lx-related-grid {
        grid-template-columns: 1fr;
    }
    
    .lx-related-title {
        font-size: 26px;
    }
    
    .lx-trust {
        padding: 50px 24px;
        margin-bottom: 60px;
    }
    
    .lx-trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .lx-trust-item::after {
        display: none !important;
    }
    
    .lx-trust-num {
        font-size: 32px;
    }
    
    .lx-faq {
        margin-bottom: 60px;
    }
    
    .lx-faq-title {
        font-size: 26px;
    }
    
    .lx-newsletter {
        padding: 40px 22px;
        margin-bottom: 60px;
    }
    
    .lx-newsletter-title {
        font-size: 24px;
    }
    
    .lx-newsletter-form-card {
        padding: 22px;
    }
    
    .lx-footer-main {
        padding: 50px 0 30px 0;
    }
    
    .lx-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lx-footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lx-hero-title {
        font-size: 26px;
    }
    
    .lx-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .lx-why-eyebrow::before,
    .lx-why-eyebrow::after {
        width: 18px;
    }
    
    .lx-related-eyebrow::before,
    .lx-related-eyebrow::after {
        width: 14px;
    }
    
    .lx-faq-eyebrow::before,
    .lx-faq-eyebrow::after {
        width: 14px;
    }
}

/* Override existing styles that might conflict */
@media (max-width: 991px) {
    #sidebar {
        margin-top: 0 !important;
    }
}

/* Modern Native CSS Sticky Sidebar - replaces JS sticky behavior */
.lx-sidebar-col {
    position: relative;
    height: 100%;
}

.lx-sidebar-col .lx-booking-card {
    position: sticky !important;
    top: 100px !important; /* Offset for premium navbar sticky height */
    z-index: 99;
}

@media (max-width: 991px) {
    .lx-sidebar-col .lx-booking-card {
        position: relative !important;
        top: 0 !important;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   ✨ TOUR HERO - LUXURY REDESIGN COMPATIBILITY
   ========================================================================== */
.tour-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--lx-navy);
}

@media(max-width: 768px) {
    .tour-hero {
        height: 360px;
    }
}

.tour-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tour-hero.is-visible .tour-hero-bg {
    transform: scale(1);
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 26, 53, 0.95) 0%, rgba(7, 26, 53, 0.6) 50%, rgba(7, 26, 53, 0.2) 100%);
    z-index: 2;
}

.tour-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}

.tour-hero-breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-hero-breadcrumb li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--lx-transition);
}

.tour-hero-breadcrumb li a:hover {
    color: var(--lx-gold);
}

.tour-hero-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

[dir="rtl"] .tour-hero-breadcrumb li:not(:last-child)::after {
    content: '‹';
    margin: 0 6px;
}

.tour-hero-breadcrumb li:last-child {
    color: var(--lx-gold);
    font-weight: 700;
}

.tour-hero-title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--lx-white);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.tour-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tour-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--lx-white);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--lx-transition);
}

.tour-hero-badge.gold {
    background: rgba(212, 162, 76, 0.15);
    border-color: rgba(212, 162, 76, 0.4);
    color: var(--lx-gold);
    font-weight: 700;
}

.tour-hero-badge i {
    font-size: 14px;
}

.tour-hero-rating-stars i {
    color: var(--lx-gold);
    font-size: 13px;
}

/* ==========================================================================
   📅 VANILLA DATE RANGE PICKER (PREMIUM STYLES)
   ========================================================================== */
.vanilla-datepicker {
    position: absolute;
    z-index: 99999 !important;
    background: #ffffff;
    border: 1px solid rgba(10, 31, 58, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(10, 31, 58, 0.12);
    padding: 20px;
    font-family: 'Alexandria', sans-serif;
    direction: rtl;
    user-select: none;
    width: 620px;
    box-sizing: border-box;
}
@media (max-width: 640px) {
    .vanilla-datepicker {
        width: 320px;
    }
}
.datepicker-months-container {
    display: flex;
    gap: 24px;
}
@media (max-width: 640px) {
    .datepicker-months-container {
        flex-direction: column;
        gap: 16px;
    }
}
.datepicker-month {
    flex: 1;
}
.datepicker-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.datepicker-month-title {
    font-size: 14px;
    font-weight: 700;
    color: #0A1F3A;
}
.datepicker-nav-btn {
    background: none;
    border: none;
    color: #C9A227;
    font-size: 18px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}
.datepicker-nav-btn:hover {
    background: rgba(201, 162, 39, 0.1);
}
.datepicker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #5A6577;
    margin-bottom: 10px;
}
.datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.datepicker-day, .datepicker-day-empty {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    box-sizing: border-box;
}
.datepicker-day {
    color: #0A1F3A;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.datepicker-day:hover:not(.disabled) {
    background: rgba(201, 162, 39, 0.15);
}
.datepicker-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    text-decoration: line-through;
}
.datepicker-day.active {
    background: #0A1F3A !important;
    color: #ffffff !important;
}
.datepicker-day.in-range {
    background: rgba(10, 31, 58, 0.08) !important;
    color: #0A1F3A !important;
    border-radius: 0 !important;
}
.datepicker-day.range-start {
    border-radius: 0 8px 8px 0 !important;
}
.datepicker-day.range-end {
    border-radius: 8px 0 0 8px !important;
}

/* ==========================================================================
   🔧 RTL & LAYOUT BUG FIXES
   ========================================================================== */

/* 1. Force the custom Datepicker to render correctly in RTL direction */
.vanilla-datepicker {
    direction: rtl !important;
}

/* 2. Adjust the single-month Datepicker width to be compact and not stretched */
.vanilla-datepicker.single-datepicker {
    width: 320px !important;
}

/* 3. Swap the visual arrow icons for the main showcase slider in RTL */
[dir="rtl"] .lx-showcase-nav.prev i,
[dir="rtl"] .lx-showcase-nav.next i {
    transform: rotate(180deg) !important;
    display: inline-block !important;
}

/* 4. Format the guest counters (Adults/Children) vertically to prevent edge crowding */
.lx-counter-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}



