/* ═══════════════════════════════════════════════════════
   HERO — Full-width centered with stat strip bottom
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a14 0%, #1a1a3e 40%, #0f0f2a 100%);
    padding: 80px 0 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px 60px;
    text-align: center;
}

.hero-center-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid rgba(245, 183, 49, 0.3);
    background: rgba(245, 183, 49, 0.08);
    color: var(--accent-2);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title-accent {
    background: linear-gradient(90deg, var(--accent-2), #ffd166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-highlight {
    background: linear-gradient(90deg, var(--accent-2), #ff9f1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-3) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(245, 183, 49, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 183, 49, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 4px 20px rgba(245, 183, 49, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(245, 183, 49, 0.7); }
}
.animate-pulse-btn { animation: pulseBtn 2.5s ease-in-out infinite; }

.hero-logo-float {
    position: absolute;
    top: 30px;
    right: 40px;
    opacity: 0.12;
}
.hero-logo-float img {
    height: 120px;
    filter: brightness(2);
}

/* Stat strip at hero bottom */
.hero-stat-strip {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    color: #fff;
}
.stat-strip-item i {
    font-size: 1.4rem;
    color: var(--accent-2);
}
.stat-strip-item strong {
    font-size: 1.3rem;
    display: block;
    line-height: 1;
}
.stat-strip-item span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
.stat-strip-divider {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
}

@media (max-width: 768px) {
    .hero { padding: 48px 0 0; }
    .hero-inner { padding: 0 16px 40px; }
    .hero-logo-float { display: none; }
    .hero-stat-strip {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 16px;
    }
    .stat-strip-item { padding: 0 16px; }
    .stat-strip-divider { display: none; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 1 — Horizontal scroll cards
   ═══════════════════════════════════════════════════════ */
.services-scroll-section {
    padding: 60px 0 40px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.section-header-row .section-title {
    margin-bottom: 0;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.pay-logo {
    height: 22px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.5;
}

.pay-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--bg-soft);
}

.scroll-cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 max(16px, calc((100vw - var(--container)) / 2 + 16px)) 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.scroll-cards-track::-webkit-scrollbar { display: none; }

.scroll-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}
.scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.scroll-card-img {
    height: 170px;
    overflow: hidden;
}
.scroll-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.scroll-card:hover .scroll-card-img img {
    transform: scale(1.08);
}

.scroll-card-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.scroll-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.scroll-card-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-muted);
    border: 1px solid var(--line);
    font-size: 0.85rem;
    transition: all 0.3s;
}
.scroll-card:hover .scroll-card-arrow {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}


/* ═══════════════════════════════════════════════════════
   SECTION 2 — Destinations mixed grid with overlays
   ═══════════════════════════════════════════════════════ */
.destinations-section {
    padding: 40px 0 60px;
}

.title-accent-bar {
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--accent-2);
    border-radius: 4px;
    margin-right: 12px;
    vertical-align: middle;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.view-all-link:hover { gap: 12px; color: var(--accent-4); }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
}

/* First card spans 2 cols, 2 rows */
.dest-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.dest-card:hover img { transform: scale(1.1); }

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: background 0.3s;
}
.dest-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}
.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(139,92,246,0.7) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .dest-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}


/* ═══════════════════════════════════════════════════════
   SECTION 3 — Why Us: 2×2 horizontal icon-left cards
   ═══════════════════════════════════════════════════════ */
.why-us-section {
    padding: 60px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}
.section-header-center .section-title {
    margin-bottom: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--accent-4));
    color: #fff;
    font-size: 1.3rem;
}
.why-icon--gold { background: linear-gradient(135deg, var(--accent-2), var(--accent-3)); }
.why-icon--teal { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.why-icon--dark { background: linear-gradient(135deg, #2c3e50, #1a252f); }

.why-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}
.why-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-us-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 4 — Testimonials: Featured + side cards
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--accent), var(--accent-4));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-quote-icon {
    font-size: 2rem;
    opacity: 0.4;
}

.featured-quote-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-2);
    font-size: 0.95rem;
}
.featured-rating span {
    margin-left: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}
.featured-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.featured-author strong {
    display: block;
    font-size: 1rem;
}
.featured-author span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.testimonials-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-testimonial {
    flex: 1;
    padding: 28px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.side-testimonial:hover {
    transform: translateX(4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.side-stars { color: var(--accent-2); font-size: 0.85rem; }
.side-testimonial p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}
.side-author {
    font-size: 0.85rem;
    color: var(--text-main);
}
.side-author strong { font-weight: 700; }

@media (max-width: 768px) {
    .testimonials-layout { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 5 — FAQ: Two-column split
   ═══════════════════════════════════════════════════════ */
.faq-section {
    padding: 60px 0;
}

.faq-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.faq-info-side {
    position: sticky;
    top: 130px;
}
.faq-info-side .section-title {
    margin-bottom: 16px;
}
.faq-info-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-accordion-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}
.faq-question i {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faq-info-side { position: static; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 6 — App Download: Full-bleed split
   ═══════════════════════════════════════════════════════ */
.app-download-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-3) 100%);
    padding: 60px 0;
    margin: 60px 0;
}

.app-download-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-download-left h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
}

.app-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.app-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
}
.app-feat i { color: var(--accent-2); }

.app-download-right {
    text-align: center;
}

.countdown-compact {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.countdown-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
}
.countdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.cd-box {
    text-align: center;
    min-width: 60px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}
.cd-box span {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.cd-box small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.cd-sep {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-2);
}

.app-logo-img {
    height: 80px;
    margin: 0 auto;
    filter: brightness(1.5);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .app-download-split { grid-template-columns: 1fr; text-align: center; }
    .app-features-row { justify-content: center; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 7 — Comfort: Text left + image right with badge
   ═══════════════════════════════════════════════════════ */
.comfort-section {
    padding: 60px 0;
}

.comfort-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.comfort-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.comfort-checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.comfort-check {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--bg-panel);
    transition: all 0.3s;
}
.comfort-check:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.check-circle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
}
.comfort-check strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 2px;
}
.comfort-check span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.comfort-img-side {
    position: relative;
}
.comfort-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.comfort-floating-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--accent-2);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.comfort-floating-badge i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .comfort-split { grid-template-columns: 1fr; }
    .comfort-img { height: 300px; }
    .comfort-floating-badge { left: 16px; bottom: 16px; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 8 — How It Works: Vertical timeline
   ═══════════════════════════════════════════════════════ */
.timeline-section {
    padding: 60px 0 80px;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-2), var(--accent-3));
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    padding-left: 72px;
    padding-bottom: 48px;
}
.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 8px;
    top: 0;
    width: 34px;
    height: 34px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 0 6px var(--bg-main);
    z-index: 1;
}
.timeline-step:nth-child(3) .timeline-dot { background: var(--accent-2); }
.timeline-step:nth-child(4) .timeline-dot { background: var(--accent-3); }

.timeline-card {
    padding: 28px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.timeline-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.timeline-icon--gold { background: var(--accent-2); color: var(--bg-dark); }
.timeline-icon--dark { background: #2c3e50; }

.timeline-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}
.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line { left: 16px; }
    .timeline-step { padding-left: 56px; }
    .timeline-dot { left: 0; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 9 — Stats: Full-width dark strip with icons
   ═══════════════════════════════════════════════════════ */
.stats-strip-section {
    background: var(--bg-dark);
    padding: 48px 0;
}

.stats-strip {
    display: flex;
    justify-content: space-around;
    gap: 24px;
}

.stats-strip-item {
    text-align: center;
    color: #fff;
}
.strip-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 183, 49, 0.12);
    color: var(--accent-2);
    font-size: 1.2rem;
}
.strip-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-2);
    margin-bottom: 4px;
}
.strip-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .stats-strip {
        flex-wrap: wrap;
        gap: 32px;
    }
    .stats-strip-item { flex: 1; min-width: 120px; }
}


/* ═══════════════════════════════════════════════════════
   SECTION 10 — Fleet: Marquee animation
   ═══════════════════════════════════════════════════════ */
.fleet-section {
    padding: 60px 0;
}

.fleet-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.fleet-marquee {
    display: flex;
    gap: 16px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fleet-tag {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}
.fleet-tag i {
    color: var(--accent);
    font-size: 1.1rem;
}
.fleet-tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.fleet-tag:hover i { color: #fff; }


/* ═══════════════════════════════════════════════════════
   SECTION 11 — CTA: Centered stacked card
   ═══════════════════════════════════════════════════════ */
.cta-card-section {
    padding: 60px 0 80px;
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-4));
    border-radius: var(--radius-xl);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-card-badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1.5rem;
}

.cta-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-card p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-card-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.cta-card .btn-hero-primary {
    background: var(--accent-2);
    color: var(--bg-dark);
}
.cta-card .btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}


/* ═══════════════════════════════════════════════════════
   SHARED UTILITIES
   ═══════════════════════════════════════════════════════ */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    background: var(--accent-2);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(245, 183, 49, 0.3);
    text-decoration: none;
    border: none;
    transition: var(--transition);
}
.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.section-prefix {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 16px;
}

.ad-wrapper { margin: 32px auto; }

.ad-img-responsive {
    width: 100%;
    height: auto;
    min-height: 100px;
    display: block;
    border-radius: 12px;
}

/* Footer overrides */
.glass-footer .footer-top {
    background: var(--bg-dark-2);
}
.footer-logo { filter: none; }

/* Misc media queries */
@media (max-width: 768px) {
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .payment-badges { display: none; }
}

/* ═══════════════════════════════════════════════════════
   NEW SECTIONS: JACKPOT, PROVIDERS, SEO CONTENT
   ═══════════════════════════════════════════════════════ */

/* 1. Live Jackpot & Transactions */
.jackpot-section {
    padding: 20px 0;
    margin-bottom: 20px;
}
.jackpot-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 24px;
}
.jackpot-card {
    background: linear-gradient(135deg, #12122a 0%, #1a1a3e 100%);
    border: 2px solid var(--accent-2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 0 30px rgba(245, 183, 49, 0.15);
    position: relative;
    overflow: hidden;
}
.jackpot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 183, 49, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.jackpot-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.jackpot-amount {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--accent-2);
    text-shadow: 0 0 20px rgba(245, 183, 49, 0.6);
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}
.jackpot-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid #dc2626;
    color: #fca5a5;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 16px;
    animation: flashBadge 1.5s infinite;
}
@keyframes flashBadge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-feed-card {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.live-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.live-feed-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}
.live-feed-title i {
    color: var(--accent);
}
.live-feed-ticker {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.ticker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.5s ease-in-out;
}
.ticker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    font-size: 0.85rem;
}
.ticker-item-user {
    font-weight: 700;
    color: var(--text-main);
}
.ticker-item-game {
    color: var(--text-muted);
}
.ticker-item-amount {
    font-weight: 800;
    color: #16a34a;
}
.ticker-item-amount.withdraw {
    color: var(--accent);
}

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

/* 2. Provider grid */
.providers-section {
    padding: 60px 0;
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.provider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
    height: 100px;
}
.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.provider-logo-placeholder {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.provider-games-count {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
@media (max-width: 992px) {
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 576px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3. SEO long-form content */
.seo-content-section {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line);
}
.seo-text-block {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}
.seo-text-block h2, 
.seo-text-block h3 {
    color: var(--text-main);
    margin: 28px 0 16px;
    font-weight: 700;
}
.seo-text-block h2:first-child {
    margin-top: 0;
}
.seo-text-block p {
    margin-bottom: 16px;
}
.seo-text-block ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}
.seo-text-block li {
    margin-bottom: 8px;
}
.seo-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}
.seo-table th, 
.seo-table td {
    padding: 12px 16px;
    border: 1px solid var(--line);
}
.seo-table th {
    background: var(--bg-soft);
    color: var(--text-main);
    font-weight: 700;
}
.seo-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.02);
}
body.dark-mode .seo-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 480px) {
    /* Hide game name inside ticker items on mobile to maintain vertical row height consistency without text wraps */
    .ticker-item-game {
        display: none;
    }
    .ticker-item {
        font-size: 0.78rem;
        padding: 8px 12px;
    }
    
    /* Make provider grid cards compact on mobile */
    .provider-card {
        padding: 16px 8px;
        height: 85px;
    }
    .provider-logo-placeholder {
        font-size: 0.95rem;
    }
    .provider-games-count {
        font-size: 0.65rem;
    }
    
    /* Optimize SEO content block padding on mobile */
    .seo-text-block {
        padding: 24px 16px;
        font-size: 0.88rem;
    }
    .seo-text-block h2 {
        font-size: 1.3rem;
    }
    .seo-text-block h3 {
        font-size: 1.1rem;
    }
    .seo-table th, 
    .seo-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

