:root {
    --primary-font: 'Cormorant Garamond', serif;
    --secondary-font: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* clip keeps position: sticky working, unlike hidden */
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

em { font-style: italic; }

/* =============================================
   GLASS & BLUR UTILITIES
   ============================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-card-dark {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-gold {
    background: rgba(200, 169, 126, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-booking {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #e8c99b);
    z-index: 9999;
    transition: width 0.05s linear;
}

/* =============================================
   MEGA DROPDOWN MENU — Categories
   ============================================= */

.nav-dropdown-wrap {
    position: static;
}

.dropdown-chevron {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.has-dropdown.dropdown-active .dropdown-chevron {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-top: 2px solid rgba(200, 169, 126, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.35s;
    z-index: 98;
    pointer-events: none;
}

.mega-menu.is-open {
    opacity: 1 !important;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.mega-menu-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 28px 0 24px;
}

.mega-panel-label {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--secondary-font);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c8a97e;
    margin-bottom: 14px;
}

/* ---- Left Panel ---- */

.mega-left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 40px;
}

.mega-cats-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mega-cat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
}

.mega-cat-item:hover {
    background: rgba(200, 169, 126, 0.07);
    border-color: rgba(200, 169, 126, 0.2);
    transform: translateX(5px);
}

.mega-cat-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #faf5ef 0%, #f5ede3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a97e;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(200, 169, 126, 0.1);
}

.mega-cat-item:hover .mega-cat-icon-box {
    background: #c8a97e;
    color: white;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.35);
    border-color: transparent;
}

.mega-cat-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-cat-name {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: #1a1a1a;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.mega-cat-item:hover .mega-cat-name {
    color: #c8a97e;
}

.mega-cat-desc {
    font-size: 11.5px;
    font-weight: 400;
    font-family: var(--secondary-font);
    color: #aaa;
    line-height: 1.3;
}

.mega-cat-badge {
    font-size: 10.5px;
    font-weight: 600;
    font-family: var(--secondary-font);
    color: #c8a97e;
    background: rgba(200, 169, 126, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-cat-item:hover .mega-cat-badge {
    opacity: 1;
    transform: translateX(0);
}

.mega-cat-arrow-icon {
    font-size: 10px;
    color: #ccc;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.mega-cat-item:hover .mega-cat-arrow-icon {
    opacity: 1;
    transform: translateX(0);
    color: #c8a97e;
}

.mega-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--secondary-font);
    color: #c8a97e;
    text-decoration: none;
    border-top: 1px solid rgba(200, 169, 126, 0.12);
    transition: gap 0.25s ease, color 0.2s ease;
}

.mega-view-all-link:hover {
    gap: 14px;
    color: #b8956e;
}

/* ---- Divider ---- */

.mega-divider {
    width: 1px;
    background: rgba(200, 169, 126, 0.12);
    margin: 0 40px 0 0;
    flex-shrink: 0;
}

/* ---- Right Panel ---- */

.mega-right-panel {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.mega-feat-card {
    flex: 1;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.mega-feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mega-feat-card:hover .mega-feat-img {
    transform: scale(1.06);
}

.mega-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.mega-feat-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: rgba(200, 169, 126, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--secondary-font);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-feat-location {
    font-size: 10px;
    font-weight: 600;
    font-family: var(--secondary-font);
    color: #c8a97e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3px;
}

.mega-feat-title {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--primary-font);
    color: white;
    line-height: 1.1;
}

.mega-feat-price {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, 0.8);
}

.mega-feat-cta {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--secondary-font);
    color: white;
    background: rgba(200, 169, 126, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s ease, gap 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mega-feat-card:hover .mega-feat-cta {
    background: #c8a97e;
    gap: 10px;
}

/* =============================================
   NAVIGATION
   ============================================= */

#navbar.nav-dark .nav-link:hover { color: #c8a97e; }
#navbar.nav-dark .nav-cta { background-color: #1a1a1a; color: white; }
#navbar.nav-dark .nav-cta:hover { background-color: #c8a97e; }

#navbar.nav-scrolled {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#navbar.nav-scrolled .nav-link:hover { color: #c8a97e; }
#navbar.nav-scrolled .nav-cta { background-color: #1a1a1a; color: white; }
#navbar.nav-scrolled .nav-cta:hover { background-color: #c8a97e; }

.site-logo-img {
    height: 84px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.4s ease;
}

@media (min-width: 769px) {
    #navbar .nav-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #navbar.nav-compact .nav-inner {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    #navbar.nav-compact .site-logo-img {
        height: 67px;
    }
}

.tour-list-item-text {
    flex: 1;
    min-width: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.traveler-block {
    border: 1px solid rgba(200, 169, 126, 0.25);
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 64px;
    }
}

/* ---- Hamburger ---- */

.nav-burger {
    width: 36px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: center;
}

#navbar:not(.nav-dark):not(.nav-scrolled) .burger-line { background: white; }

.nav-burger.active .burger-line:first-child { transform: translateY(5px) rotate(45deg); background: white; }
.nav-burger.active .burger-line:last-child { transform: translateY(-5px) rotate(-45deg); background: white; }

/* ---- Full-Screen Menu ---- */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    padding: 100px 40px 40px;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

.menu-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.menu-links-wrap { display: flex; flex-direction: column; gap: 8px; }

.menu-link {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    font-family: var(--primary-font);
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 1);
    position: relative;
    display: inline-block;
    transform: translateY(40px);
    opacity: 0;
    padding: 4px 0;
}

.menu-overlay.active .menu-link { transform: translateY(0); opacity: 1; }

.menu-link::before {
    content: attr(data-index);
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 500;
    color: #c8a97e;
    font-family: var(--secondary-font);
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-link:hover::before { opacity: 1; }
.menu-link:hover { color: white; transform: translateX(20px); }

.menu-info { padding-top: 20px; }

.menu-social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.menu-social:hover {
    border-color: #c8a97e;
    color: #c8a97e;
    transform: translateY(-2px);
    background: rgba(200, 169, 126, 0.12);
    box-shadow: 0 4px 16px rgba(200, 169, 126, 0.15);
}

/* =============================================
   HERO
   ============================================= */

.hero-tag-line { width: 40px; height: 2px; background: #c8a97e; }

.hero-shape-1 {
    position: absolute; top: 15%; right: 8%; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,126,0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
}

.hero-shape-2 {
    position: absolute; bottom: 10%; left: -5%; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,126,0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none; z-index: 0;
}

.hero-dots {
    position: absolute; top: 20%; right: 3%; width: 80px; height: 80px;
    background-image: radial-gradient(circle, #c8a97e 1.5px, transparent 1.5px);
    background-size: 16px 16px; opacity: 0.2; pointer-events: none; z-index: 0;
}

.hero-img-accent {
    position: absolute; top: -12px; right: -12px; width: 100%; height: 100%;
    border: 2px solid #c8a97e; border-radius: 1.25rem; opacity: 0.2;
    pointer-events: none; z-index: -1;
}

.hero-main-img { box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.hero-float-card { box-shadow: 0 20px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.5); }

.hero-float-icon { animation: pulseGlow 2.5s ease-in-out infinite; }

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,126,0.3); }
    50% { box-shadow: 0 0 0 10px rgba(200,169,126,0); }
}

.hero-btn { background-color: #c8a97e; }
.hero-btn:hover { background-color: #b8956e; transform: translateY(-2px); }
.hero-btn-dark:hover { background-color: #1a1a1a; color: white; border-color: #1a1a1a; }

/* =============================================
   STATS SECTION — Dark & Bold
   ============================================= */

.stats-section {
    background: #111;
    padding: 72px 0;
}

.stats-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200,169,126,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-block {
    flex: 1;
    text-align: center;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 0 6px;
    transition: all 0.4s ease;
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 169, 126, 0.15);
    transform: translateY(-4px);
}

.stat-block .stat-number {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    font-family: var(--primary-font);
    color: #c8a97e;
    line-height: 1;
    display: inline;
}

.stat-block .stat-suffix {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-family: var(--primary-font);
    color: rgba(200,169,126,0.5);
    line-height: 1;
}

.stat-bar {
    width: 32px;
    height: 2px;
    background: rgba(200,169,126,0.3);
    margin: 16px auto 12px;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    font-family: var(--secondary-font);
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-sep {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* =============================================
   SECTION DECORATIVE ELEMENTS
   ============================================= */

.section-line { width: 40px; height: 1px; background: #c8a97e; }
.section-line-light { background: rgba(200,169,126,0.5); }

.section-shape-left {
    position: absolute; left: -80px; top: 30%; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(200,169,126,0.06) 0%, transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    pointer-events: none; z-index: 0;
}

.section-shape-right {
    position: absolute; right: -60px; bottom: 20%; width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(200,169,126,0.05) 0%, transparent 70%);
    filter: blur(25px);
    border-radius: 50%;
    pointer-events: none; z-index: 0;
}

/* =============================================
   BOOKING BAR
   ============================================= */

.booking-bar-inner {
    box-shadow: 0 15px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}

.booking-divider { border-left: 1px solid #eee; }

.booking-select, .booking-input {
    border: none; outline: none; padding: 0; background: transparent;
    cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none;
}

.booking-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 16px;
}

.booking-search-btn {
    background: #c8a97e; color: white; border: none; padding: 16px 32px;
    border-radius: 0.5rem; font-size: 15px; font-weight: 600;
    font-family: var(--secondary-font); cursor: pointer; transition: 0.3s ease; white-space: nowrap;
}

.booking-search-btn:hover { background: #b8956e; transform: translateY(-1px); }

/* =============================================
   MARQUEE STRIP
   ============================================= */

.marquee-section { position: relative; }

.marquee-track {
    display: flex; white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    font-family: var(--primary-font);
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.2em;
    padding: 0 16px;
}

.marquee-dot {
    color: #c8a97e;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
}

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

/* =============================================
   CATEGORY CARDS
   ============================================= */

.category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.category-card:hover .category-img { transform: scale(1.08); }

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.category-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(200,169,126,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 13px;
    transform: translateX(10px); opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-arrow { transform: translateX(0); opacity: 1; }

/* =============================================
   DESTINATION CARDS
   ============================================= */

.dest-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.destination-card .dest-info-glass {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.destination-card:hover .dest-img { transform: scale(1.05); }

.dest-top-accent {
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: #c8a97e; z-index: 3;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .dest-top-accent { transform: scaleX(1); }

/* =============================================
   FEATURES — Split Layout
   ============================================= */

.features-img-col img {
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.features-img-accent {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(200,169,126,0.15);
    border-radius: 1.25rem;
    pointer-events: none;
    z-index: -1;
}

.features-float {
    box-shadow: 0 16px 40px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #faf5ef 0%, #f5ede3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a97e;
    transition: all 0.3s ease;
}

.feature-card {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(250, 249, 246, 0.4);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-color: rgba(200,169,126,0.2);
    box-shadow: 0 8px 32px rgba(200,169,126,0.08);
    transform: translateY(-2px);
}

.feature-card:hover .feature-icon-box {
    background: #c8a97e;
    color: white;
    transform: scale(1.05);
}

/* =============================================
   NEWSLETTER — Modern Card
   ============================================= */

.newsletter-card {
    background: #111;
    min-height: 420px;
}

.newsletter-card-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-card-img img {
    min-height: 420px;
}

.newsletter-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #111 0%, rgba(17,17,17,0.3) 60%, transparent 100%);
    z-index: 1;
}

.newsletter-form-v2 {
    display: flex;
    gap: 0;
    max-width: 420px;
}

.newsletter-input-v2 {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px 0 0 8px;
    outline: none;
    transition: 0.3s ease;
}

.newsletter-input-v2::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-v2:focus { border-color: #c8a97e; background: rgba(255,255,255,0.12); }

.newsletter-btn-v2 {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    background: #c8a97e;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn-v2:hover { background: #b8956e; }

/* =============================================
   FOOTER — Premium
   ============================================= */

.footer-premium {
    background: #0a0a0a;
}

.footer-top-section {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-img {
    height: 120px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-brand-img {
        height: 96px;
    }
}

.footer-tagline {
    font-style: italic;
}

.footer-social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social-circle:hover {
    border-color: #c8a97e;
    color: #c8a97e;
    background: rgba(200,169,126,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200,169,126,0.15);
}

.footer-links-section {
    padding: 48px 0;
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.footer-link {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: rgba(255,255,255,0.9);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-link:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(200, 169, 126, 0.8); color: white; border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 90; box-shadow: 0 8px 30px rgba(200,169,126,0.25);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(184, 149, 110, 0.9); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,169,126,0.35); }

/* =============================================
   HERO / TOUR OVERLAYS
   ============================================= */

.hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%); }
.tour-hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%); }
.hero-parallax { will-change: transform; }

/* =============================================
   TOUR PAGE — Gallery, Itinerary, Booking
   ============================================= */

.tour-gallery { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; }
.tour-gallery-main { grid-row: 1 / 3; }
.tour-photo-gallery-item {
    height: 220px;
    background: #f3efe8;
}
.tour-photo-gallery-item img {
    transition: transform 0.45s ease;
}
.tour-photo-gallery-item:hover img {
    transform: scale(1.04);
}
.tour-pdf-btn {
    background: #faf5ef;
    border: 1px solid rgba(200, 169, 126, 0.35);
}
.tour-pdf-btn:hover {
    background: #f3ebe0;
}

.itinerary-item { border-bottom: 1px solid #f0f0f0; }
.itinerary-item:last-child { border-bottom: none; }

.tour-booking-card {
    box-shadow: 0 10px 50px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid rgba(200,169,126,0.08);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.tour-input, .tour-select {
    padding: 12px 16px; border: 1px solid #eee; border-radius: 0.375rem;
    outline: none; transition: 0.3s ease;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-color: #fafafa;
}

.tour-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
    cursor: pointer;
}

.tour-input:focus, .tour-select:focus { border-color: #c8a97e; background-color: #fff; }

.tour-book-btn { background: #c8a97e; border: none; }
.tour-book-btn:hover { background: #b8956e; transform: translateY(-1px); }

/* =============================================
   ABOUT PAGE — Value Cards
   ============================================= */

.about-value-card {
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(200,169,126,0.08);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    transition: all 0.4s ease;
}

.about-value-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.4);
    border-color: rgba(200,169,126,0.2);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.75);
}

/* =============================================
   SUBPAGE HERO — Reusable
   ============================================= */

.subpage-hero {
    background: #111;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.subpage-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(200,169,126,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* =============================================
   CONTACT FORM
   ============================================= */

.contact-input, .contact-textarea {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-family: var(--secondary-font);
    background: rgba(250, 250, 250, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(238, 238, 238, 0.8);
    border-radius: 8px;
    outline: none;
    transition: 0.3s ease;
    color: #1a1a1a;
}

.contact-textarea { resize: vertical; min-height: 140px; }
.contact-input:focus, .contact-textarea:focus { border-color: #c8a97e; background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 16px rgba(200,169,126,0.08); }

.contact-submit {
    background: #c8a97e;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--secondary-font);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit:hover { background: #b8956e; transform: translateY(-2px); }

.contact-info-card {
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: rgba(200,169,126,0.15);
}

.contact-info-card a:hover { color: #c8a97e; }

.contact-chat-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: all 0.25s ease;
}
.contact-info-card .contact-chat-link.is-whatsapp,
.contact-chat-link.is-whatsapp { background: #25d366; color: #fff; }
.contact-info-card .contact-chat-link.is-viber,
.contact-chat-link.is-viber { background: #7360f2; color: #fff; }
.contact-info-card .contact-chat-link:hover,
.contact-chat-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    border-color: rgba(200,169,126,0.12);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media screen and (max-width: 780px) {
    .booking-divider { border-left: none; border-top: 1px solid #eee; }
    .booking-bar-inner { gap: 0; }
    .booking-field { width: 100%; }
    .booking-field-btn { width: 100%; padding: 12px 16px; }
    .booking-search-btn { width: 100%; justify-content: center; }
    .hero-float-card { left: 16px !important; bottom: -16px !important; }
    .hero-img-accent, .hero-dots, .features-img-accent { display: none; }
    .category-card .relative { height: 300px; }
    .menu-inner { flex-direction: column; }
    .menu-info { padding-top: 32px; }
    .menu-link::before { display: none; }
    .stats-grid { flex-wrap: wrap; }
    .stat-block { min-width: 45%; padding: 20px 16px; margin: 6px; }
    .stat-sep { display: none; }
    .newsletter-card-content { padding: 32px; }
    .newsletter-img-overlay { background: linear-gradient(to bottom, #111 0%, rgba(17,17,17,0.5) 50%, transparent 100%); }
    .tour-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
    .tour-gallery-main { grid-row: auto; }
    .tour-gallery img { height: 240px; }
    .tour-gallery-main { height: 320px !important; }
}

@media screen and (max-width: 480px) {
    .newsletter-form-v2 { flex-direction: column; gap: 12px; }
    .newsletter-input-v2 { border-radius: 8px; }
    .newsletter-btn-v2 { border-radius: 8px; justify-content: center; }
}
