/*
███╗   ██╗███████╗ █████╗ ██████╗ ██╗   ██╗██╗███████╗██╗   ██╗ █████╗ ██╗     
████╗  ██║██╔════╝██╔══██╗██╔══██╗██║   ██║██║██╔════╝██║   ██║██╔══██╗██║     
██╔██╗ ██║█████╗  ███████║██████╔╝██║   ██║██║███████╗██║   ██║███████║██║     
██║╚██╗██║██╔══╝  ██╔══██║██╔══██╗╚██╗ ██╔╝██║╚════██║██║   ██║██╔══██║██║     
██║ ╚████║███████╗██║  ██║██║  ██║ ╚████╔╝ ██║███████║╚██████╔╝██║  ██║███████╗
╚═╝  ╚═══╝╚══════╝╚═╝  ╚═╝╚═╝  ╚═╝  ╚═══╝  ╚═╝╚══════╝ ╚═════╝ ╚═╝  ╚═╝╚══════╝
by Ys — NearVisual
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

:root {

    --mustard: #E69D45;

    --sand: #EAC673;

    --rust: #A34026;

    --blue-light: #8EB9D4;

    --blue-dark: #357699;



    --cream: #FAF8F5;

    --surface-white: #FFFFFF;


    --text-main: #1A2128;
    --text-muted: #5A6A78;
    --dark-bg: #0F171E;



    --shadow-sm: 0 4px 12px rgba(15, 23, 30, 0.05);
    --shadow-md: 0 12px 32px rgba(15, 23, 30, 0.1);
    --shadow-lg: 0 20px 48px rgba(15, 23, 30, 0.15);
    --shadow-color: 0 10px 30px rgba(230, 157, 69, 0.25);
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);

    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--mustard);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulsePlaceholder {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    transform: translateY(40px);
}

.slide-right {
    transform: translateX(-40px);
}

.slide-left {
    transform: translateX(40px);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-sm {
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--mustard);
    color: var(--surface-white);
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(230, 157, 69, 0.35);
    background: #E8A856;
}

.btn-secondary {
    background: transparent;
    color: var(--surface-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--surface-white);
    transform: translateY(-3px) scale(1.02);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    background: transparent;
}

.header.scrolled {
    background: rgba(15, 23, 30, 0.85);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.header-mobile-brand {
    display: none;
}

@media (max-width: 992px) {
    .header-mobile-brand {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}


.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.header.scrolled .logo-img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--surface-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    opacity: 0.85;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--mustard);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--surface-white);
    transition: var(--transition-smooth);
}

.mobile-slide-menu,
.mobile-menu-overlay {
    display: none;
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-bg .slide {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlidePan 54s infinite;
    image-rendering: high-quality;
    filter: contrast(1.08) saturate(1.15) brightness(1.02);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.hero-bg .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg .slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-bg .slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-bg .slide:nth-child(4) {
    animation-delay: 18s;
}

.hero-bg .slide:nth-child(5) {
    animation-delay: 24s;
}

.hero-bg .slide:nth-child(6) {
    animation-delay: 30s;
}

.hero-bg .slide:nth-child(7) {
    animation-delay: 36s;
}

.hero-bg .slide:nth-child(8) {
    animation-delay: 42s;
}

.hero-bg .slide:nth-child(9) {
    animation-delay: 48s;
}

@keyframes heroSlidePan {
    0% {
        opacity: 0;
        transform: translateX(5%) translateZ(0);
    }

    3% {
        opacity: 0.8;
    }

    11.11% {
        opacity: 0.8;
        transform: translateX(-5%) translateZ(0);
    }

    14% {
        opacity: 0;
        transform: translateX(-8%) translateZ(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-8%) translateZ(0);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 30, 0.98) 0%, rgba(15, 23, 30, 0.9) 35%, rgba(15, 23, 30, 0.5) 55%, transparent 85%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 2vh;
}

.hero-content {
    max-width: 55%;
}

.hero-visual {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin-top: 1.5rem;

}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    margin-bottom: 0.8rem;

}

.hero-stats-avatars {
    display: flex;
}

.hero-stats-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    margin-left: -12px;
    background-size: cover;
}

.hero-stats-avatars span:first-child {
    margin-left: 0;
}

.hero-stats-text {
    color: var(--surface-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--surface-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--mustard);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 630px;

}

.hero-img-link {
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}



.hero-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;

    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));

}

.hero-tours-label {
    margin-top: -20px;
    margin-bottom: 5px;
    transition: var(--transition-smooth);
}

.desktop-only-brand {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only-brand {
        display: none !important;
    }

    .hero-tours-label {
        margin-top: -10px;
        margin-bottom: 0;
    }

    .hide-mobile {
        display: none !important;
    }
}

.section-divider {
    position: absolute;
    bottom: -2px;

    left: 0;
    right: 0;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}


.section {
    padding: 3.5rem 0;
    position: relative;
}

.section-delimiter {
    width: 60px;
    height: 6px;
    background: var(--mustard);
    border-radius: 10px;
    margin: 0 auto 3rem auto;
    opacity: 0.8;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;

}

.label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--dark-bg);
    letter-spacing: -1px;
}

.title span {
    color: var(--mustard);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.tour-card {
    background: var(--surface-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 157, 69, 0.3);
}

.tour-image {
    height: auto;
    background: linear-gradient(135deg, var(--cream), var(--surface-white));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
    image-rendering: high-quality;
    filter: contrast(1.05) saturate(1.1);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.tour-card:hover .tour-image img {
    transform: scale(1.08) translateZ(0);
    filter: contrast(1.1) saturate(1.15) brightness(1.02);
}

.tour-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.tour-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.tour-price-badge {
    position: absolute;
    bottom: 0.8rem;
    left: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--dark-bg);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-name {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
    font-family: Outfit;
    font-weight: 800;
}

.tour-schedule {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-info-group {
    margin-bottom: 0.8rem;
}

.tour-info-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.tour-list {
    list-style: none;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.tour-list li {
    position: relative;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-cta-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-book-tour {
    width: 100%;
    background: var(--dark-bg);
    color: var(--surface-white);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-book-tour:hover {
    background: var(--mustard);
    color: white;
    box-shadow: var(--shadow-sm);
}


.tour-locked {
    opacity: 0.85;
    filter: grayscale(0.4);
    cursor: not-allowed;
    position: relative;
}

.tour-locked .tour-image img {
    filter: blur(2px) brightness(0.7);
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.locked-overlay span {
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.4);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-price-badge.soon {
    background: var(--rust);
    color: white;
}

.tour-price-badge.discount {
    top: 10px;
    left: 10px;
    bottom: auto;
    background: #2e7d32;
    color: white;
    border: none;
}

.discount-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-top: 5px;
}

.btn-book-tour.disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.gallery-item {
    background: var(--dark-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(15, 23, 30, 0.05);
    image-rendering: high-quality;
    filter: contrast(1.05) saturate(1.1);
    transform: translateZ(0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 30, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
}

.gallery-overlay p {
    color: var(--mustard);
    font-size: 0.9rem;
}

.placeholder-pulse {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.05) 75%);
    background-size: 200% 200%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}


.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.perk-card {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.perk-top {
    background: var(--surface-white);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.perk-bottom {
    background: #ffffff;
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.perk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.perk-card h4 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 800;
}

.perk-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}


.booking-hero-img {
    display: block;
    max-width: 180px;
    margin: 0 auto 1.5rem auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.booking-onpage-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    border: none;
}

.booking-onpage-info {
    background: var(--mustard);
    padding: 2.5rem 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    background: var(--cream);
    border: 1px solid rgba(15, 23, 30, 0.1);
    border-radius: 12px;
    overflow: hidden;
    height: 58px;
    transition: var(--transition-smooth);
}

.phone-input-wrapper:focus-within {
    border-color: var(--mustard);
    box-shadow: 0 0 0 4px rgba(230, 157, 69, 0.1);
    background: white;
}

.lada-select {
    border: none;
    background: rgba(15, 23, 30, 0.04);
    padding: 0 0.8rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-main);
    cursor: pointer;
    border-right: 1px solid rgba(15, 23, 30, 0.08);
    width: 105px;
    outline: none;
}

.phone-input-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-main);
    outline: none;
}

@media (max-width: 768px) {
    .phone-input-wrapper {
        height: 52px;
    }

    .form-input {
        height: 52px !important;
        padding: 0 1rem !important;
    }

    .lada-select {
        display: none !important;
    }

    .phone-input-field {
        padding: 0 1.2rem;
    }
}


.booking-onpage-info p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.booking-perks {
    list-style: none;
}

.booking-perks li {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.05rem;
}

.booking-onpage-form {
    padding: 2.5rem 4rem;
    background: var(--surface-white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.half {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    height: 58px;
    padding: 0 1.2rem;
    border: 1px solid rgba(15, 23, 30, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--cream);
    color: var(--text-main);
    appearance: none;

}

select.form-input {
    max-width: 100%;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 1.5rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--mustard);
    box-shadow: 0 0 0 4px rgba(230, 157, 69, 0.15);
    background: white;
}

.live-quote {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin: 2rem 0;
    border: 1px dashed rgba(15, 23, 30, 0.15);
}

.quote-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.quote-row strong {
    color: var(--text-main);
}

.quote-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 30, 0.1);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-bg);
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.glass-panel-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-list .c-icon {
    font-size: 1.8rem;
}

.contact-list h5 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-list p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}


.footer {
    background-color: #0A1015;

    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Outfit';
    font-size: 1.5rem;
}

.footer-title {
    color: var(--surface-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--mustard);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 30, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-container {
    width: 1100px;
    max-width: 95vw;
    position: relative;
    transform: scale(0.9);
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

body.modal-open {
    overflow: hidden;
}

body.modal-open>*:not(.modal-overlay):not(.tour-detail-page) {
    filter: blur(4px);
    pointer-events: none;
}


#bookingOverlay {
    display: none !important;
}



.modal-v2-container {
    background: var(--dark-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 95vw;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.modal-overlay.active .modal-v2-container {
    transform: scale(1);
}

.modal-v2-image-col {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    height: 280px;
    position: relative;
    flex: none;
}

.modal-v2-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.modal-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-v2-form-col {
    background: var(--dark-bg);
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-v2-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: Outfit;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.1;
}

.modal-v2-title span {
    color: var(--mustard);
}

.modal-v2-form {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-v2-group {
    margin: 0 !important;
}

.modal-v2-row {
    gap: 0.8rem !important;
    margin: 0 !important;
}

.modal-v2-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
    display: block;
}

.modal-v2-select {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    pointer-events: none;
    padding: 0.8rem !important;
    font-weight: 600;
    appearance: none;
}

.modal-v2-input {
    padding: 0.8rem !important;
    background: var(--surface-white) !important;
    color: var(--dark-bg) !important;
    border: none !important;
}

.modal-v2-quote {
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 1rem 1.2rem !important;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin: 0.5rem 0 0 0 !important;
}

.modal-v2-quote-row {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.modal-v2-price-light {
    color: white !important;
}

.modal-v2-quote-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 0.8rem !important;
    margin-top: 0 !important;
    align-items: center;
}

.modal-v2-total-label {
    font-weight: 800;
    font-size: 1rem;
    color: white !important;
}

.modal-v2-total-price {
    font-weight: 800;
    color: var(--mustard) !important;
    font-size: 1.4rem;
}

.modal-v2-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1.05rem;
    border-radius: 12px;
}



@media (min-width: 992px) {
    .modal-v2-container {
        flex-direction: row;
        align-items: stretch;
        width: fit-content;
        max-width: 95vw;
        height: 85vh;
        max-height: 750px;
        min-height: 500px;
    }

    .modal-v2-image-col {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        height: auto;
        width: 400px;
        min-height: 500px;
    }

    .modal-v2-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modal-v2-form-col {
        width: 480px;
        min-width: 400px;
        padding: 1.5rem 2.5rem;
        flex: none;
        overflow-y: hidden;
    }

    .modal-v2-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .modal-v2-form {
        gap: 0.6rem;
    }

    .modal-v2-input,
    .modal-v2-select,
    .modal-v2-form-col .phone-input-wrapper {
        height: 46px !important;
    }

    .modal-v2-quote {
        padding: 1rem 1.5rem !important;
    }

    .modal-v2-total-price {
        font-size: 1.5rem;
    }
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 0.8rem 1rem;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--surface-white);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 0.3rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.mobile-bottom-nav .nav-btn.whatsapp {
    opacity: 1;
    color: #25D366;
}

.mobile-bottom-nav .nav-btn.active,
.mobile-bottom-nav .nav-btn:hover {
    opacity: 1;
    color: var(--mustard);
}

.mobile-bottom-nav .icon {
    font-size: 1.4rem;
}


@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 10vh;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 400px;
    }

    .about-grid,
    .contact-grid,
    .booking-onpage-container {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .nav-links {
        display: none !important;
    }

    .nav-right .btn:not(.mobile-show-btn) {
        display: none !important;
    }

    .nav-right .btn.mobile-show-btn {
        display: inline-flex !important;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    body {
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none !important;
    }

    .container {
        padding: 0 1.2rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header {
        margin: 0 auto 1.2rem;
    }

    .section-delimiter {
        margin-bottom: 1rem;
        width: 40px;
        height: 4px;
    }

    .title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 0.85rem;
        white-space: normal !important;
        margin-bottom: 0;
    }

    .label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 0.6rem;
    }


    .header {
        padding: 0.6rem 0;
        transition: transform 0.3s ease, background 0.5s ease;
    }

    .header.scrolled {
        padding: 0.5rem 0;
    }

    .header.header-hidden {
        transform: translateY(-100%);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }


    .booking-onpage-container {
        grid-template-columns: 1fr;
        width: 100% !important;
        margin: 0 !important;
        border-radius: var(--border-radius-md);
    }

    .booking-onpage-info,
    .booking-onpage-form {
        padding: 2rem 1.2rem !important;
        width: 100% !important;
    }

    .booking-onpage-info {
        text-align: center;
    }

    .booking-hero-img {
        max-width: 140px;
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }

    .form-group.half,
    .form-group {
        width: 100% !important;
        flex: none !important;
    }


    .nav-center {
        display: flex;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 6px;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .logo img {
        height: 36px !important;
    }


    .mobile-slide-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75vw;
        max-width: 300px;
        height: 100dvh;
        background: var(--dark-bg);
        z-index: 999;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 5rem 2rem 2rem;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-slide-menu.open {
        right: 0;
    }

    .mobile-slide-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        font-family: Outfit;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        gap: 0.8rem;
        transition: color 0.2s;
    }

    .mobile-slide-menu a:hover,
    .mobile-slide-menu a:active {
        color: var(--mustard);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.open {
        display: block;
        opacity: 1;
    }


    .hero {
        min-height: 100svh;
        align-items: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 30, 0.95) 0%, rgba(15, 23, 30, 0.7) 40%, rgba(15, 23, 30, 0.4) 70%, transparent 100%);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 0;
        margin-top: 0;
    }

    .hero-content {
        max-width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
    }

    .hero-tours-label {
        font-size: 1.2rem !important;
        letter-spacing: 3px !important;
    }

    .hero-main-emblem img {
        max-width: 260px !important;
    }

    .hero-main-emblem {
        margin-bottom: -40px !important;
        margin-top: 0 !important;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        align-items: center;
        margin-top: 0.5rem !important;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }


    .tour-locked {
        display: none !important;
    }

    .tours-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
        padding: 0 1.2rem 2rem;
        margin: 0 -1.2rem;
        scroll-padding: 1.2rem;
    }

    .tours-grid::-webkit-scrollbar {
        display: none;
    }

    .tour-card {
        min-width: 75vw;
        max-width: 75vw;
        scroll-snap-align: start;
        flex: 0 0 auto;
        border-radius: 20px;
    }

    .tour-card:hover {
        transform: none;
    }

    .tour-image {
        height: 160px;
    }

    .tour-image img {
        height: 100%;
        object-fit: cover;
    }

    .tour-content {
        padding: 0.8rem 1rem;
    }

    .tour-name {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .tour-schedule {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }

    .tour-price-badge {
        bottom: 0.6rem;
        left: 0.6rem;
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
    }

    .tour-info-group {
        margin-bottom: 0.4rem;
    }

    .tour-extra-info {
        padding-top: 5px !important;
        margin-top: 3px !important;
    }

    .btn-book-tour {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .tour-cta-wrapper {
        padding-top: 0.5rem;
    }


    .gallery-grid {
        display: flex !important;
        overflow: hidden;
        gap: 0;
        position: relative;
        width: auto;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
    }

    .gallery-track {
        display: flex;
        gap: 0.8rem;
        animation: galleryScroll 25s linear infinite;
        width: max-content;
        padding: 0 0.4rem;
    }

    @keyframes galleryScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .gallery-item,
    .gallery-item.large {
        grid-column: unset;
        grid-row: unset;
        min-width: 260px;
        min-height: 200px;
        max-height: 200px;
        border-radius: 14px;
        flex: 0 0 auto;
    }


    .perks-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .perk-card {
        min-width: unset;
        max-width: 100%;
        background: var(--surface-white);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 1.2rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.04);
        flex-direction: column;
    }

    .perk-top {
        cursor: pointer;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 1.2rem;
        background: var(--surface-white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .perk-top::after {
        content: '+';
        position: absolute;
        right: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.4rem;
        color: var(--mustard);
        font-weight: 700;
        transition: transform 0.3s ease;
    }

    .perk-card.accordion-open .perk-top::after {
        content: '−';
    }

    .perk-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .perk-card h4 {
        font-size: 1.05rem;
        margin-bottom: 0;
        color: var(--text-main);
        font-weight: 800;
    }

    .perk-bottom {
        max-height: 0;
        padding: 0 1.2rem;
        overflow: hidden;
        background: #fcfcfc;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .perk-card.accordion-open .perk-bottom {
        max-height: 200px;
        padding: 1rem 1.2rem;
    }

    .perk-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.5;
    }


    .booking-onpage-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        border-radius: 20px;
    }

    .booking-onpage-info {
        padding: 1.5rem 1.2rem;
        text-align: center;
    }

    .booking-onpage-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.6rem !important;
    }

    .booking-onpage-info p {
        font-size: 0.8rem;
        margin-bottom: 1rem !important;
    }

    .booking-hero-img {
        max-width: 90px;
        margin-bottom: 0.8rem !important;
    }

    .booking-perks li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .booking-onpage-form {
        padding: 1.5rem !important;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-input {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .live-quote {
        padding: 1rem;
        margin: 1rem 0;
    }

    .quote-row.total {
        font-size: 1.1rem;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem 1.2rem !important;
    }

    .contact-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
    }

    .contact-list li {
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .contact-map {
        min-height: 250px !important;
        border-radius: 16px !important;
    }

    .contact-map iframe {
        min-height: 250px !important;
    }


    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-grid>div:first-child {
        grid-column: 1 / -1;
    }

    .footer-brand {
        justify-content: center;
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }


    .modal-overlay {
        display: none !important;
    }

    .tour-detail-page {
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: var(--dark-bg);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        display: flex;
        flex-direction: column;
    }

    .tour-detail-header {
        position: sticky;
        top: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        padding: 0.8rem 1rem;
        background: rgba(15, 23, 30, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tour-detail-back {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.3rem;
        margin-right: 1rem;
        line-height: 1;
    }

    .tour-detail-header h3 {
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        font-family: Outfit;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tour-detail-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .tour-detail-body {
        padding: 1.5rem 1.2rem;
        flex: 1;
    }

    .tour-detail-body .modal-v2-label {
        color: rgba(255, 255, 255, 0.9);
    }

    .tour-detail-body .modal-v2-input {
        background: var(--surface-white) !important;
        color: var(--dark-bg) !important;
        border: none !important;
    }

    .tour-detail-body .modal-v2-select {
        background: rgba(255, 255, 255, 0.05) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }


    .carousel-controls-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 1.5rem;
    }

    .carousel-nav-btn {
        background: var(--mustard);
        color: white;
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.1rem;
        cursor: pointer;
        touch-action: manipulation;
        transition: opacity 0.3s ease;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding-top: 0;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.15);
        border: none;
        padding: 0;
        cursor: pointer;
        touch-action: manipulation;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: var(--mustard);
        width: 20px;
        border-radius: 8px;
    }
}


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner a {
    color: var(--mustard);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .cookie-banner p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }
}


.back-link-subtle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.back-link-subtle:hover {
    color: var(--mustard);
    opacity: 1;
}

.back-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .back-link-subtle {
        background: rgba(0, 0, 0, 0.05);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        margin-bottom: 1.5rem;
    }

    .back-text {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}


body.modal-open {
    overflow: hidden !important;
    touch-action: none;
    overscroll-behavior: none;
}

body.modal-open .tour-detail-page,
body.modal-open .modal-overlay,
body.modal-open .modal-container {
    touch-action: auto;
}


.tour-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0.75rem 0;
}

.tour-price-original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 400;
}

.tour-price-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--mustard);
    line-height: 1;
}

.tour-price-currency {
    font-size: 0.9rem;
    font-weight: 600;
}

.tour-discount-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    width: fit-content;
}

@media (max-width: 768px) {
    .tour-price-block {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: start;
        align-items: baseline;
        gap: 0px 10px;
    }

    .tour-price-original {
        grid-column: 1 / -1;
        margin-bottom: 2px;
    }

    .tour-price-main {
        font-size: 1.4rem;
    }

    .tour-discount-badge {
        margin-top: 0;
        transform: translateY(-2px);
    }
}


.lang-switch-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lang-switch-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.lang-switch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.lang-switch-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--mustard);
    border-radius: 50%;
    animation: langSpinAnim 0.7s linear infinite;
}

@keyframes langSpinAnim {
    to {
        transform: rotate(360deg);
    }
}

.lang-switch-text {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}


.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 3px 6px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    padding: 4px 8px;
    border-radius: 20px;
    transition: color 0.2s, background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn-active {
    color: var(--mustard) !important;
    font-weight: 700;
    background: rgba(230, 157, 69, 0.12) !important;
}

.lang-btn-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    pointer-events: none;
    user-select: none;
}


@media (max-width: 768px) {
    .lang-switcher {
        display: none !important;
    }
}


.lang-float-bubble {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 16px;
    z-index: 9990;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid var(--mustard);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.lang-float-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(230, 157, 69, 0.4);
}

@media (max-width: 768px) {
    .lang-float-bubble {
        display: flex;
    }
}

body.modal-open .lang-float-bubble {
    display: none !important;
}

/* ====== PAGE LOADER ====== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--surface-white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
    animation: loaderFadeOut 0.1s ease 0.25s forwards;
}

@keyframes loaderFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    height: 52px;
    display: none;
}

.loader-logo.visible {
    display: block;
}

.loader-bar-track {
    width: 200px;
    height: 5px;
    background: #e8e4de;
    border-radius: 6px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: var(--mustard);
    transform-origin: left;
    transform: scaleX(0);
    animation: loaderFill 0.25s ease forwards;
}

@keyframes loaderFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (max-width: 768px) {
    .loader-logo {
        height: 40px;
    }

    .loader-content {
        gap: 1.2rem;
    }

    .loader-bar-track {
        width: 160px;
    }
}