:root {
    --royal-gold: #FFB800;
    --royal-gold-soft: #ffd57a;
    --text-main: #121212;
    --bg-bright: #ffffff;
    --bg-warm: #f7f5f0;
    --gold-gradient: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
    --shadow-tight: 0 10px 24px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 30px 90px rgba(0, 0, 0, 0.12);
    --smooth: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    --snap: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --glow: 0 0 0 1px rgba(255, 184, 0, 0.25), 0 14px 36px rgba(255, 184, 0, 0.18);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --h1-size: clamp(2.6rem, 6.2vw, 4.6rem);
    --h2-size: clamp(2rem, 4.2vw, 3.2rem);
    --h3-size: clamp(1.4rem, 2.6vw, 2rem);
    --h-line: 1.1;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfaf7 45%, #ffffff 100%);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    line-height: var(--h-line);
    letter-spacing: -0.6px;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

p {
    line-height: 1.7;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
}

section {
    position: relative;
}

.section-pad {
    padding: 72px 0;
}

.py-100 {
    padding: 72px 0;
}

.features-section {
    padding: 64px 0;
}

.text-gold {
    color: var(--royal-gold) !important;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.soft-surface {
    background: var(--bg-warm);
}

.search-engine {
    will-change: transform, opacity;
}

/* --- HOME SIGNATURE MANIFESTO --- */
.home-manifesto {
    padding: 90px 0;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 60%, #fefcf7 100%);
}

.manifesto-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--royal-gold);
    margin-bottom: 12px;
}

.manifesto-title {
    font-size: clamp(2.1rem, 3.4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.manifesto-text {
    color: #555;
    max-width: 520px;
}

.manifesto-points {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.manifesto-point {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: var(--shadow-tight);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.manifesto-point i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 184, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
}

.manifesto-point h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 800;
}

.manifesto-point p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.manifesto-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 900;
    color: #111;
}

.manifesto-cards {
    display: grid;
    gap: 14px;
}

.manifesto-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.manifesto-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 800;
}

.manifesto-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}

.manifesto-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--gold-gradient);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--glow);
}

.manifesto-card.highlight {
    grid-template-columns: 1fr;
    text-align: center;
    font-weight: 900;
    color: #111;
    background: linear-gradient(135deg, #fff3d0, #ffffff);
}

.manifesto-card.highlight span {
    display: block;
    font-size: 28px;
    color: var(--royal-gold);
}

@media (max-width: 991px) {
    .home-manifesto {
        padding: 70px 0;
    }
}

/* --- SIGNATURE ROUTES CAROUSEL --- */
.signature-routes {
    padding: 80px 0 100px;
    background: #ffffff;
    position: relative;
}

.signature-head {
    max-width: 720px;
    margin: 0 auto 30px;
}

.signature-kicker {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--royal-gold);
    display: inline-block;
    margin-bottom: 10px;
}

.signature-swiper {
    padding-bottom: 50px;
}

.signature-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--smooth);
    height: 100%;
}

.signature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.signature-photo {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.signature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.signature-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-gradient);
    color: #111;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: var(--glow);
}

.signature-body {
    padding: 18px 20px 22px;
}

.signature-body h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.signature-body p {
    color: #6b7280;
    font-size: 0.95rem;
}

.signature-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #555;
    font-size: 12px;
    font-weight: 800;
}

.signature-meta i {
    color: var(--royal-gold);
    margin-right: 6px;
}

.signature-pagination .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.signature-pagination .swiper-pagination-bullet-active {
    background: var(--royal-gold);
}

.signature-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.signature-prev,
.signature-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tight);
    cursor: pointer;
}

.signature-prev:hover,
.signature-next:hover {
    background: #fff7e5;
}

/* --- INTELLIGENT REVEAL ANIMATION (BUTTER SMOOTH) --- */
.reveal-raw {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: all 0.55s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.reveal-raw.active {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

.reveal-soft {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-soft.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    .reveal-raw,
    .reveal-raw.active {
        transition: none;
        transform: none;
    }

    .reveal-soft,
    .reveal-soft.active {
        transition: none;
        transform: none;
    }
}

/* --- ULTRA-SMOOTH HERO SLIDER (PRO VERSION) --- */
.hero-slider {
    width: 100%;
    height: 95vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 82vh;
    }
}

/* Background Image Zoom Out Effect */
.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

/* Overlay for Text Readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Center Aligned Content Box */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 10;
    max-width: 980px;
    width: 92%;
    text-align: center;
    transition: all 1s ease;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.swiper-slide-active .slide-content {
    transform: translate(-50%, -50%);
}

/* Reveal Text Logic */
.reveal-text {
    overflow: hidden;
    margin-bottom: 15px;
    display: block;
}

/* Subtitle Styling */
.reveal-text p {
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: var(--royal-gold);
    letter-spacing: 4px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Main Title Styling */
.reveal-text h1,
.reveal-text h2 {
    font-size: var(--h1-size);
    font-weight: 900;
    line-height: var(--h-line);
    letter-spacing: -1.5px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(70px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Active Slide Animations (Staggered) */
.swiper-slide-active .reveal-text p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.swiper-slide-active .reveal-text h1,
.swiper-slide-active .reveal-text h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-summary {
    max-width: 840px;
    margin: 8px auto 0;
}

.hero-summary p {
    margin: 0;
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991px) {
    .hero-summary {
        max-width: 92%;
    }

    .hero-summary p {
        font-size: 0.95rem;
        line-height: 1.58;
    }
}

/* Button Reveal */
.btn-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.9s;
    /* Sab se aakhir mein button aayega */
}

.swiper-slide-active .btn-reveal {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: var(--smooth);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

.hero-trust {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
}

.hero-trust span {
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 12px;
    border-radius: 999px;
}

/* Custom Pagination Styling */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 40px;
    border-radius: 10px;
    background: var(--royal-gold) !important;
}

/* --- FUTURISTIC SEARCH ENGINE --- */
/* --- SEARCH ENGINE: BUTTER SMOOTH UPGRADE --- */
.search-engine {
    max-width: 1100px;
    margin: -100px auto 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all var(--smooth);
    will-change: transform, box-shadow;
}

/* Intelligent Float on Hover */
.search-engine:hover {
    transform: translateY(-3px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.engine-label {
    font-size: 10px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
    display: block;
    transition: 0.4s ease;
}

.engine-input {
    border: none;
    font-weight: 800;
    font-size: 19px;
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 0;
    outline: none;
    background: transparent;
    color: #121212;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 5px 0;
}

.engine-input:focus {
    outline: none;
}

.engine-select {
    width: 100%;
    position: relative;
    border-radius: var(--radius-md);
}

.engine-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

.engine-select__btn {
    width: 100%;
    border: none;
    background: transparent;
    font-weight: 800;
    font-size: 19px;
    color: #121212;
    text-align: left;
    padding: 6px 34px 6px 0;
    cursor: pointer;
    position: relative;
}

.engine-select__btn::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFB800' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.engine-select__list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px;
    display: none;
    max-height: 240px;
    overflow: auto;
    z-index: 10;
}

.engine-select__list.open {
    display: block;
}

.engine-select__item {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--snap);
}

.engine-select__item:hover,
.engine-select__item.active {
    background: rgba(255, 184, 0, 0.12);
    color: #111;
}

/* Hover effect for input fields */
.col-lg-4:hover .engine-label {
    color: var(--royal-gold);
    transform: translateX(5px);
}

.col-lg-4:hover .engine-input {
    transform: scale(1.02);
    padding-left: 5px;
}

/* Border separator smoothness */
.border-end {
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: 0.4s;
}

.col-lg-4:hover.border-end {
    border-right: 1px solid var(--royal-gold) !important;
}

/* --- BUTTON: ROYAL LIQUID FLOW --- */
.btn-royal {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 24px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all var(--smooth);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Button Glow & Interaction */
.btn-royal:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.45);
    color: #000;
}

.btn-royal i {
    transition: transform 0.4s ease;
}

.btn-royal:hover i {
    transform: rotate(-15deg) scale(1.2);
}

/* Mobile Adjustments for Search */
@media (max-width: 991px) {
    .search-engine {
        margin: 30px 15px 0;
        padding: 30px;
        border-radius: 35px;
    }

    .border-end {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.home-seo-intro {
    padding: 28px 0 12px;
}

.home-seo-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.home-seo-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b6a00;
    background: rgba(255, 184, 0, 0.16);
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 10px;
}

.home-seo-intro .home-seo-title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.24;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: #12151f;
    font-weight: 800;
}

.home-seo-intro .home-seo-copy {
    margin: 0;
    color: #4d5768;
    font-size: 1rem;
    line-height: 1.72;
    max-width: 980px;
}

.home-seo-trust {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.home-seo-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #2f394b;
    font-size: 12px;
    font-weight: 700;
}

.home-seo-trust i {
    color: var(--royal-gold);
}

.home-seo-links-title {
    margin: 16px 0 10px;
    font-size: 1rem;
    color: #101726;
    font-weight: 800;
}

.home-seo-links {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.home-seo-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--snap);
}

.home-seo-links a:hover,
.home-seo-links a:focus-visible {
    border-color: rgba(255, 184, 0, 0.6);
    background: rgba(255, 184, 0, 0.14);
    color: #111827;
    text-decoration: none;
}

@media (max-width: 991px) {
    .home-seo-intro {
        padding: 16px 0 8px;
    }

    .home-seo-wrap {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .home-seo-intro .home-seo-title {
        font-size: clamp(1.22rem, 6vw, 1.55rem);
        margin-bottom: 8px;
    }

    .home-seo-intro .home-seo-copy {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .home-seo-links-title {
        font-size: 0.94rem;
        margin: 14px 0 8px;
    }

    .home-seo-links a {
        width: 100%;
        justify-content: flex-start;
        font-size: 12px;
    }
}

/* --- CALENDAR & DROPDOWN TABAHI UPGRADE --- */

/* Dropdown (Select) Refinement */
select.engine-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFB800' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 0 0 1 .753 1.659l-4.796 5.48a1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 36px;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {

    /* Use native picker on mobile for proper width */
    select.engine-input {
        appearance: auto;
        -webkit-appearance: auto;
        background-image: none;
    }

    .engine-select {
        border-radius: 14px;
    }
}

/* Flatpickr (Calendar) Container Smoothness */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
    padding: 15px !important;
    animation: calendarReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    width: auto !important;
    min-width: 320px;
    overflow: visible !important;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days {
    overflow: visible !important;
    width: auto !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    border-radius: 10px !important;
    transition: var(--snap);
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: rgba(255, 184, 0, 0.12) !important;
}

@keyframes calendarReveal {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Calendar Day Styling */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--royal-gold) !important;
    border-color: var(--royal-gold) !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.flatpickr-day:hover {
    background: rgba(255, 184, 0, 0.1) !important;
    color: var(--royal-gold) !important;
}

/* Month & Arrow Refinement */
.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 800 !important;
}

.flatpickr-weekday {
    color: #aaa !important;
    font-weight: 700 !important;
    font-size: 11px !important;
}

/* --- PREMIUM FEATURES --- */
.feature-box {
    transition: var(--smooth);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #fff;
    box-shadow: var(--shadow-tight);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-box .icon-circle {
    margin-bottom: 22px;
}

.feature-box p {
    margin-bottom: 0;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

/* Feature Box Hover Effect */
.feature-box:hover .icon-circle {
    background: var(--royal-gold);
    transform: rotate(12deg) scale(1.1);
}

/* Icon Color Change on Hover (Direct Target) */
.feature-box:hover .icon-circle i {
    color: #ffffff !important;
    transition: 0.3s ease;
}

.feature-heading {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: #121212;
}

/* --- TOURS CATEGORY STYLING (WORDPRESS/SHOPIFY LOOK) --- */
.cat-heading {
    font-weight: 900;
    font-size: var(--h2-size);
    letter-spacing: -1.5px;
    color: #121212;
    line-height: var(--h-line);
    text-transform: uppercase;
}

.section-kicker {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    color: #a3a3a3;
}

.header-line {
    width: 100px;
    height: 8px;
    background: var(--gold-gradient);
    border-radius: 50px;
    margin-bottom: 24px;
}

.tour-section-head {
    text-align: center;
}

.tour-section-head .header-line {
    margin: 10px auto 20px;
}

.tour-grid {
    row-gap: 22px;
    column-gap: 18px;
}

@media (min-width: 1200px) {
    .tour-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .tour-grid>.tour-card-col {
        width: 100%;
    }

    .tour-grid.row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }
}

.tour-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--snap);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--glow);
}

.tour-card-hidden {
    display: none !important;
}

/* Blog Page */
.blog-page .blog-hero {
    padding: 160px 0 130px;
    position: relative;
    overflow: hidden;
    background: #0f1513;
    color: #fff;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 15, 14, 0.82), rgba(10, 15, 14, 0.3)),
        url("assets/images/slider/1770128070_pexels-francesco-ungaro-998653.jpg") center/cover no-repeat;
    filter: saturate(1.1) contrast(1.05);
}

.blog-hero-ornament {
    position: absolute;
    right: -120px;
    top: 40px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.35), rgba(255, 184, 0, 0));
    opacity: 0.8;
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    background: rgba(255, 184, 0, 0.18);
    color: var(--royal-gold);
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.blog-page h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    margin: 18px 0 12px;
    letter-spacing: -0.5px;
}

.blog-page p {
    color: rgba(255, 255, 255, 0.85);
}

.blog-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 6px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 12px;
}

.blog-hero-stats {
    margin-top: 26px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 16px 18px;
    text-align: left;
    font-weight: 700;
    color: #f1f1f1;
}

.stat-card span {
    display: block;
    font-size: 22px;
    color: var(--royal-gold);
    margin-bottom: 6px;
}

.blog-grid-section {
    padding: 90px 0 110px;
    background: #f9f7f2;
    position: relative;
    overflow: hidden;
}

.blog-grid-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 184, 0, 0.08), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 184, 0, 0.06), transparent 35%);
    pointer-events: none;
}

.blog-detail-hero .blog-hero-inner {
    max-width: 880px;
}

.blog-detail-section {
    padding: 70px 0 90px;
    background: #f9f7f2;
}

.blog-detail-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #7b8794;
    font-weight: 700;
    margin-bottom: 14px;
}

.detail-cover img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    margin-bottom: 18px;
}

.detail-body {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.blog-sidebar {
    display: grid;
    gap: 16px;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #111;
    font-weight: 900;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--glow);
}

.sidebar-posts {
    display: grid;
    gap: 12px;
}

.sidebar-post {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.sidebar-post img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

.sidebar-post h5 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 4px;
}

.sidebar-post span {
    font-size: 11px;
    color: #7b8794;
    font-weight: 700;
}

/* --- WIKI-LIKE BLOG DETAIL --- */
.blog-detail-header {
    padding: 120px 0 40px;
    background: #f7f7f4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-detail-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}

.wiki-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.4rem, 4.6vw, 3.8rem);
    margin-bottom: 8px;
    color: #111;
}

.wiki-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #6b7280;
    font-weight: 700;
}

.wiki-actions .wiki-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #111;
    font-weight: 900;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: var(--glow);
}

.wiki-layout {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    gap: 24px;
    align-items: start;
}

.wiki-infobox {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.wiki-infobox .infobox-title {
    font-weight: 800;
    margin-bottom: 8px;
}

.wiki-infobox img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.wiki-infobox ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.wiki-infobox li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #4b5563;
}

.wiki-article {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 22px;
    color: #111;
}

.wiki-article * {
    color: #111 !important;
}

.wiki-body,
.wiki-body * {
    color: #111 !important;
}

.wiki-lead {
    font-size: 1.05rem;
    color: #111;
    line-height: 1.8;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wiki-body {
    margin-top: 10px;
    line-height: 1.8;
    color: #111;
    opacity: 1;
}

.wiki-body * {
    color: #111;
    opacity: 1;
}

.wiki-body h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-top: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 6px;
    color: #111;
}

.wiki-body a {
    color: #111;
    text-decoration: underline;
}

.wiki-body p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wiki-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}

@media (max-width: 991px) {
    .blog-detail-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .wiki-layout {
        grid-template-columns: 1fr;
    }

    .wiki-infobox,
    .wiki-sidebar {
        position: static;
    }
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- WIKI-LIKE BLOG LIST --- */
.blog-page-wiki .blog-hero {
    background: #f7f7f4;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-page-wiki .blog-hero-bg,
.blog-page-wiki .blog-hero-ornament,
.blog-page-wiki .blog-hero-stats {
    display: none;
}

.blog-page-wiki .blog-hero-inner h1 {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    color: #111;
}

.blog-page-wiki .blog-hero-inner p,
.blog-page-wiki .blog-hero-inner .blog-kicker {
    color: #4b5563;
}

.blog-page-wiki .blog-hero-highlights {
    display: none;
}

.blog-page-wiki .blog-grid-section {
    background: #fafafa;
}

.blog-page-wiki .featured-post {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 16px;
    box-shadow: none;
}

.blog-page-wiki .featured-thumb {
    border-radius: 8px;
    overflow: hidden;
}

.blog-page-wiki .featured-chip,
.blog-page-wiki .featured-tag {
    display: none;
}

.blog-page-wiki .blog-card {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.blog-page-wiki .blog-card .blog-thumb {
    height: 200px;
}

.blog-page-wiki .blog-body h3,
.blog-page-wiki .featured-body h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: #111;
}

.blog-page-wiki .blog-body p,
.blog-page-wiki .featured-body p {
    color: #374151;
}

.blog-page-wiki .blog-link {
    color: #111;
    text-decoration: underline;
}

/* --- BLOG LUXE + SAAS HYBRID --- */
.blog-page-luxe .blog-hero {
    background: linear-gradient(180deg, #fdf8ef 0%, #f7f7f4 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-page-luxe .blog-hero-bg,
.blog-page-luxe .blog-hero-ornament {
    opacity: 0.15;
}

/* Blog hero polish + animations */
.blog-hero {
    position: relative;
    overflow: hidden;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 184, 0, 0.12), transparent 40%),
        radial-gradient(circle at 85% 35%, rgba(0, 0, 0, 0.06), transparent 45%);
    pointer-events: none;
    opacity: 0.6;
    animation: heroGlow 10s ease-in-out infinite;
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
}

.blog-kicker,
.blog-hero-inner h1,
.blog-hero-inner p,
.blog-hero-highlights,
.hero-crumbs {
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.8s ease forwards;
}

.blog-kicker { animation-delay: 0.1s; }
.blog-hero-inner h1 { animation-delay: 0.2s; }
.blog-hero-inner p { animation-delay: 0.3s; }
.blog-hero-highlights { animation-delay: 0.4s; }
.hero-crumbs { animation-delay: 0.5s; }

.blog-hero-inner h1 {
    position: relative;
}

.blog-hero-inner h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 90px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 999px;
    animation: underlinePulse 2.8s ease-in-out infinite;
}

.hero-pill {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(255, 184, 0, 0.2);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}

@keyframes underlinePulse {
    0%, 100% { width: 90px; opacity: 0.7; }
    50% { width: 120px; opacity: 1; }
}

.blog-luxe-section {
    background: #faf7f2;
}

.blog-page-wrap {
    margin-top: 10px;
}

.blog-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.blog-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.blog-panel.highlight {
    border-color: rgba(255, 184, 0, 0.35);
    box-shadow: 0 18px 36px rgba(255, 184, 0, 0.12);
}

.blog-panel h4 {
    margin: 0 0 12px;
    font-weight: 800;
    color: #111;
}

.blog-search,
.blog-newsletter {
    display: flex;
    gap: 8px;
}

.blog-search input,
.blog-newsletter input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

.blog-search button,
.blog-newsletter button {
    border: none;
    background: var(--gold-gradient);
    color: #111;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 10px;
}

.blog-cats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.blog-cats a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f7f7f4;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.blog-page-luxe .blog-card,
.blog-page-luxe .featured-post {
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-page-luxe .blog-thumb,
.blog-page-luxe .featured-thumb {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-page-luxe .blog-thumb img,
.blog-page-luxe .featured-thumb img,
.blog-page-luxe .sidebar-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-page-luxe .blog-card .blog-thumb {
    height: 220px;
}

.blog-page-luxe .blog-body h3,
.blog-page-luxe .featured-body h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.blog-page-luxe .blog-body h3 {
    font-size: 1.1rem;
    color: #111;
}

.blog-page-luxe .blog-body p {
    color: #4b5563;
}

.blog-page-luxe .blog-link {
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.blog-page-luxe .blog-link i {
    color: var(--gold);
}

.blog-page-luxe .featured-body h2 {
    color: #111;
}

.blog-page-luxe .featured-body {
    background: linear-gradient(180deg, #fff7e1 0%, #fff 100%);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.blog-page-luxe .featured-thumb img {
    filter: saturate(1.05);
}

/* --- Blog layout fixes (alignment + balance) --- */
.blog-page .blog-page-wrap {
    align-items: flex-start;
}

.blog-page .featured-post {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
}

.blog-page .featured-post .row {
    align-items: stretch;
}

.blog-page .featured-thumb {
    height: 100%;
    min-height: 360px;
    border-radius: 16px;
}

.blog-page .featured-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.blog-page .blog-sidebar {
    top: 24px;
}

.blog-page .blog-card .blog-thumb {
    height: 220px;
}

/* Fix featured image overflow + keep it inside grid */
.blog-page .featured-post {
    overflow: hidden;
}

.blog-page .featured-post .col-lg-7,
.blog-page .featured-post .col-lg-5 {
    display: flex;
}

.blog-page .featured-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}

.blog-page .featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 0;
    display: block;
}

@media (max-width: 991px) {
    .blog-page .featured-post {
        padding: 14px;
    }
    .blog-page .featured-thumb {
        min-height: 260px;
    }
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
    }
}

/* --- TYPOGRAPHY SYSTEM (GLOBAL) --- */
h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h4,
h5,
h6 {
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.75;
}

.blog-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.blog-section-head .section-sub {
    color: #6b7280;
    max-width: 620px;
    margin: 8px auto 0;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-thumb {
    position: relative;
    display: block;
}

.blog-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: var(--gold-gradient);
    color: #111;
    font-weight: 900;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: var(--glow);
}

.blog-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #7b8794;
    font-weight: 700;
}

.blog-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #101114;
}

.blog-body p {
    color: #5d6670;
    font-size: 0.95rem;
}

.blog-link {
    margin-top: auto;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link i {
    color: var(--royal-gold);
}

@media (max-width: 991px) {
    .blog-hero {
        padding: 140px 0 120px;
    }

    .blog-hero-highlights {
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-hero {
        padding: 120px 0 110px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.empty-blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.featured-post {
    background: #fff;
    border-radius: calc(var(--radius-lg) + 6px);
    padding: 26px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.featured-thumb {
    position: relative;
    display: block;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    display: block;
}

.featured-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: #000;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.featured-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
}

.featured-body {
    background: linear-gradient(180deg, #fff 0%, #fff7e5 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-body h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 800;
}

.elite-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.elite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.img-box {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
    margin: 10px;
    background: #eef0f2;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-card:hover .img-box img {
    transform: scale(1.12);
}

.tour-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #20b8c5;
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.tour-stats {
    position: absolute;
    top: 10px;
    right: 12px;
    display: flex;
    gap: 6px;
}

.tour-stat {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: #fff;
    color: #111;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.tour-body {
    padding: 10px 16px 10px;
    display: flex;
    flex-direction: column;
}

.tour-loc {
    font-size: 12px;
    color: #7a7a7a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.tour-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
    margin: 6px 0 8px;
    background: none;
    padding: 0;
    border-radius: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-rating {
    font-size: 12px;
    color: #666;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.tour-rating .stars {
    color: #ffb400;
    letter-spacing: 1px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #7a7a7a;
    font-weight: 700;
    margin-top: 4px;
}

.tour-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-price {
    margin-top: 6px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 900;
}

.tour-price .now {
    color: #ff8a00;
    font-size: 15px;
}

.tour-price .old {
    color: #9b9b9b;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 12px;
}

.card-cta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 6px;
}

.card-cta .v4-link {
    margin: 0;
    padding-bottom: 2px;
}

.card-btn {
    background: var(--gold-gradient);
    color: #000;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 900;
    font-size: 11px;
    text-decoration: none;
    box-shadow: var(--glow);
    transition: var(--snap);
}

.card-btn:hover {
    transform: translateY(-2px);
    color: #000;
}

.tour-save {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff9a00;
    transition: var(--snap);
    background: #fff;
}

.tour-save:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateY(-2px);
}

/* --- CITY TOUR CARDS (SIMPLE) --- */
.city-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: var(--smooth);
    will-change: transform, box-shadow;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
}

.city-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
}

.city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5f5f5;
}

.city-card:hover .city-img img {
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff9a00;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.4px;
}

.city-body {
    margin: -24px 16px 14px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 12px;
    padding: 10px 12px;
}

.city-card:hover .city-body {
    transform: translateY(-2px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-title {
    background: #ff9a00;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 18px 8px 12px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    position: relative;
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.city-price {
    font-weight: 900;
    font-size: 13px;
    color: #111;
    white-space: nowrap;
    justify-self: start;
}

.city-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f2f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

/* --- STORY SECTION --- */
.story-section {
    position: relative;
    padding: 110px 0;
    background: radial-gradient(circle at top left, #fffdf8 0%, #f7f4ef 55%, #ffffff 100%);
}

.story-section::before,
.story-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.18), rgba(255, 184, 0, 0));
    z-index: 0;
}

.story-section::before {
    left: -80px;
    top: 60px;
}

.story-section::after {
    right: -90px;
    bottom: 40px;
}

.story-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-visual {
    position: relative;
    min-height: 500px;
    isolation: isolate;
}

.story-img {
    position: absolute;
    width: 62%;
    height: 360px;
    border-radius: calc(var(--radius-md) + 6px);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.story-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #f7f7f7;
}

.story-img.left {
    left: 0;
    top: 0;
    transform: translateZ(0);
}

.story-img.right {
    right: 0;
    bottom: 0;
    transform: translateZ(0);
}

.story-strip {
    position: absolute;
    left: -16px;
    top: 18px;
    background: var(--gold-gradient);
    color: #111;
    padding: 10px 12px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    transform: rotate(-90deg);
    transform-origin: left top;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.story-card {
    position: absolute;
    left: 18%;
    bottom: -18px;
    background: #fff;
    border-radius: calc(var(--radius-md) + 4px);
    padding: 14px 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    font-weight: 800;
    text-align: center;
    animation: story-float 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.story-card span {
    display: block;
    font-size: 24px;
    color: #ff9a00;
}

.story-content {
    background: #ffffff;
    padding: 34px;
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.story-kicker {
    color: #ff9a00;
    font-weight: 900;
    letter-spacing: 2.5px;
    font-size: 14px;
    text-transform: uppercase;
}

.story-title {
    font-weight: 900;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -1px;
}

.story-title .soft {
    color: #c9ced6;
    font-weight: 800;
    font-style: italic;
}

.story-text {
    color: #666;
    line-height: 1.7;
}

.story-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.story-pill {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.story-pill h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 6px;
}

.story-cta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.story-btn {
    background: var(--gold-gradient);
    color: #111;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: var(--glow);
}

.story-sign {
    font-weight: 800;
    color: #111;
}

.reveal-left {
    transform: translateX(-60px) rotateY(6deg) scale(0.98);
    opacity: 0;
}

.reveal-right {
    transform: translateX(60px) rotateY(-6deg) scale(0.98);
    opacity: 0;
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0) rotateY(0) scale(1);
    opacity: 1;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-visual {
        min-height: 440px;
    }

    .story-img {
        width: 70%;
        height: 320px;
    }

    .story-img.right {
        right: 0;
    }

    .story-card {
        left: 10%;
    }

    .story-pills {
        grid-template-columns: 1fr;
    }
}

@keyframes story-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.city-title {
    grid-column: 1 / -1;
}

.city-price {
    grid-column: 1 / 2;
}

.city-arrow {
    grid-column: 2 / 3;
    justify-self: end;
}

.city-price {
    font-weight: 900;
    font-size: 13px;
    color: #111;
}

.city-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f2f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-kicker {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9b9b9b;
    font-weight: 800;
}

.v4-link {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    color: #121212;
    text-decoration: none;
    border-bottom: 4px solid var(--royal-gold);
    padding-bottom: 6px;
    transition: 0.3s;
}

.v4-link:hover {
    letter-spacing: 4px;
    border-color: #000;
}

/* --- DYNAMIC REVIEWS --- */
.review-card-premium {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-tight);
    transform-style: preserve-3d;
}

.review-card-premium:hover {
    transform: translateY(-10px) rotateX(1.5deg);
    box-shadow: var(--shadow-soft);
}

/* --- SPLASH SCREEN --- */
.splash-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #fff8e6 0%, #f1ebdf 42%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    animation: splash-auto-hide 0.6s ease forwards;
    animation-delay: 2.6s;
    overflow: hidden;
}

.splash-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,184,0,0.18), transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(255,184,0,0.18), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0.15));
    animation: splash-veil 6s ease-in-out infinite;
}

.splash-beam {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,184,0,0.0), rgba(255,184,0,0.28), rgba(255,184,0,0.0));
    filter: blur(6px);
    animation: splash-beam 6s linear infinite;
    opacity: 0.9;
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes splash-auto-hide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.splash-stage {
    position: relative;
    text-align: center;
    padding: 12px 18px;
    max-width: min(720px, 92vw);
    display: grid;
    gap: 10px;
    justify-items: center;
}

.splash-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-accent {
    color: var(--royal-gold);
}

.splash-logo-img {
    height: 260px;
    width: auto;
    filter: drop-shadow(0 12px 24px rgba(255, 184, 0, 0.35));
    animation: splash-pulse 2.2s ease-in-out infinite, splash-float 3.6s ease-in-out infinite;
}

.splash-copy {
    font-size: 12px;
    letter-spacing: 0.6px;
    color: #5f6b7a;
}

.splash-loader {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 2px auto 0;
}

.splash-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(255, 184, 0, 0.45);
    animation: splash-rotate 4.8s linear infinite;
}

.splash-loader::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 4px solid rgba(255, 184, 0, 0.3);
    border-top-color: #ffb800;
    box-shadow: 0 0 28px rgba(255, 184, 0, 0.35);
    animation: splash-spin 1s linear infinite;
}

.splash-orbit {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.35);
    animation: splash-rotate 6s linear infinite;
}

.splash-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.25);
    box-shadow: inset 0 0 60px rgba(255, 184, 0, 0.25);
    animation: splash-expand 2.8s ease-in-out infinite;
}

.splash-particles {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0 2px, transparent 3px);
    background-size: 22px 22px;
    animation: splash-rotate 14s linear infinite reverse;
    opacity: 0.6;
}

.splash-screen::before,
.splash-screen::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,184,0,0.22), transparent 65%);
    animation: splash-glow 6s ease-in-out infinite;
}
.splash-screen::before { top: -120px; left: -120px; }
.splash-screen::after { bottom: -140px; right: -140px; animation-delay: 1.8s; }

@keyframes splash-rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes splash-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes splash-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes splash-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes splash-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.08); }
}
@keyframes splash-expand {
    0%, 100% { transform: scale(0.98); opacity: 0.45; }
    50% { transform: scale(1.06); opacity: 0.9; }
}
@keyframes splash-veil {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.95; }
}
@keyframes splash-beam {
    0% { transform: translate(-40%, -40%) rotate(0deg); }
    100% { transform: translate(-40%, -40%) rotate(360deg); }
}
@keyframes splash-shimmer {
    0% { transform: translateX(-60%) rotate(6deg); }
    100% { transform: translateX(60%) rotate(6deg); }
}

@media (max-width: 575px) {
    .splash-logo {
        font-size: 18px;
    }
}

.initial-circle {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.3);
    border: 4px solid #fff;
}

.review-body-text {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-weight: 500;
}

.py-100 {
    padding: 72px 0;
}

.features-section {
    padding: 64px 0;
}

.bg-light-bright {
    background-color: #fcfcfc;
}

@media (max-width: 575px) {
    .giant-footer-light {
        padding-bottom: 20px;
    }

    .footer-bottom-light {
        padding-bottom: 24px;
    }
}

@media (max-width: 991px) {
    .search-engine {
        margin: -70px 12px 0;
        padding: 28px 24px;
        border-radius: var(--radius-lg);
    }

    .engine-input {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn-ghost,
    .hero-actions .btn-royal {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        gap: 8px;
        letter-spacing: 1px;
    }

    .py-100 {
        padding: 60px 0;
    }

    .features-section {
        padding: 52px 0;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        height: 70vh;
    }

    .search-engine {
        margin: -60px 10px 0;
        padding: 22px 18px;
    }

    .engine-label {
        letter-spacing: 1.5px;
    }

    .py-100 {
        padding: 52px 0;
    }

    .features-section {
        padding: 46px 0;
    }
}

/* --- SPLASH MOBILE FIX --- */
#splash.splash-screen {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    margin: 0;
    transform: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .splash-orbit {
        width: 180px;
        height: 180px;
    }
}

.swiper-pagination-bullet {
    background: #ccc !important;
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: 0.4s;
}

.swiper-pagination-bullet-active {
    background: var(--royal-gold) !important;
    width: 40px;
    border-radius: 10px;
}

/* Performance: smoother scroll + less render jank */
.perf-section {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.perf-img {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.perf-img.is-loaded {
    opacity: 1;
}


