/* ========================================
   Plexify Travel Agency - Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-secondary: #ffe7d6;
    --color-dark: #1a1a1a;
    --color-gray-900: #333333;
    --color-gray-700: #666666;
    --color-gray-500: #999999;
    --color-gray-300: #e5e5e5;
    --color-gray-100: #f5f5f5;
    --color-white: #ffffff;
    --color-amber: #fdba74;
    --color-red: #ef4444;
    
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

.pre-fade {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal), opacity var(--transition-normal), transform var(--transition-normal);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */

.section-title-dark {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4.6rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: none;
}

.section-subtitle {
    color: var(--color-gray-700);
    margin-top: 0.5rem;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    color: var(--color-primary);
}

.section-title-dark .text-accent {
    display: block;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-300);
}

.btn-outline:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-gray-900);
    transform: scale(1.02);
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: background var(--transition-normal);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    height: 80px;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    isolation: isolate;
    transition:
        background-color 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        backdrop-filter 0.45s ease,
        -webkit-backdrop-filter 0.45s ease;
}

.navbar.on-hero {
    background-color: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    transition: color var(--transition-normal);
}

.logo-image {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.navbar.scrolled .logo-icon {
    color: var(--color-dark);
}

.navbar.on-hero-light .logo-icon {
    color: var(--color-dark);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition-normal);
}

.navbar.scrolled .logo-text {
    color: var(--color-dark);
}

.navbar.on-hero-light .logo-text {
    color: var(--color-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-caret {
    width: 16px;
    height: 16px;
    opacity: 0.85;
    transition: transform var(--transition-normal);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    max-height: min(520px, calc(100vh - 120px));
    overflow: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    z-index: 1001;
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    font-family: var(--font-display);
    border-radius: var(--radius-md);
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--color-gray-700);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background-color: var(--color-gray-100);
    color: var(--color-dark);
    outline: none;
}

.nav-dropdown-empty {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.open .nav-caret {
    transform: rotate(180deg);
}

.nav-link {
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--color-gray-700);
}

.navbar.on-hero-light .nav-link {
    color: rgba(26, 26, 26, 0.88);
}

.nav-link:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-dark);
    background-color: var(--color-gray-100);
}

.navbar.on-hero-light .nav-link:hover {
    color: var(--color-dark);
    background-color: rgba(0, 0, 0, 0.08);
}

.nav-link.active {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.navbar.scrolled .nav-link.active {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.navbar.on-hero-light .nav-link.active {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 14px;
    gap: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-language-item {
    display: block;
}

.nav-language-item-mobile {
    display: none;
}

.nav-language-item-desktop {
    display: block;
}

.nav-language-form {
    display: inline-flex;
    align-items: center;
}

.nav-language-menu {
    min-width: 170px;
}

.nav-language-option {
    margin: 0;
}

.nav-language-option-btn {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    font-family: var(--font-display);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-gray-700);
    cursor: pointer;
}

.nav-language-option-btn:hover {
    background-color: var(--color-gray-100);
    color: var(--color-dark);
}

.nav-language-option-btn.is-active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-normal);
}

.menu-toggle span.active:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle span.active:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--color-dark);
}

.navbar.on-hero-light .menu-toggle span {
    background-color: var(--color-dark);
}

.mobile-nav-backdrop {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(100px, 15vw, 250px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

.hero-content {
    max-width: 700px;
}

.play-video {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.play-btn {
    position: relative;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-dark);
    margin-left: 3px;
}

.play-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    animation: pulse 1.5s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-text {
    color: var(--color-white);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ========================================
   About Intro Section
   ======================================== */

.about-intro {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-intro-media {
    position: relative;
}

.about-video {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.about-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-intro-content .section-header {
    margin-bottom: 18px;
}

.about-intro-content .section-title-dark {
    font-size: clamp(2.2rem, 3.4vw, 3.6rem);
}

.about-intro-content .section-subtitle {
    max-width: none;
    font-size: 1rem;
}

.section-header {
    margin-bottom: 24px;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    margin-bottom: 4px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.services-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    transition: background var(--transition-normal);
}

.service-item:hover {
    background-color: var(--color-gray-100);
}

.service-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.service-item span {
    font-size: 14px;
    color: var(--color-gray-700);
}

.services-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.call-label {
    font-size: 13px;
    color: var(--color-gray-500);
}

/* ========================================
   Destinations Section
   ======================================== */

.destinations {
    padding: 100px 0;
    background-color: var(--color-gray-100);
}

.destinations--slices {
    background-color: var(--color-gray-100);
}

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

.link-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--color-dark);
    transition: color var(--transition-normal);
}

.link-view-all svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-normal);
}

.link-view-all:hover {
    color: var(--color-primary);
}

.link-view-all:hover svg {
    transform: translateX(4px);
}

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

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--color-white);
}

.destination-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color var(--transition-normal);
}

.destination-card:hover .destination-info h3 {
    color: var(--color-primary);
}

.destination-info p {
    font-size: 13px;
    opacity: 0.8;
}

.destination-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.destination-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
}

.destination-card:hover .destination-arrow {
    opacity: 1;
}

/* ========================================
   Destinations Slices (Touriza-style)
   ======================================== */

.destination-slices {
    display: flex;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.destination-slice {
    position: relative;
    flex: 1;
    display: block;
    min-width: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex var(--transition-slow);
    outline: none;
    cursor: pointer;
}

.destination-slice:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(212, 160, 23, 0.8);
}

.destination-slice::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    transition: background var(--transition-normal);
}

.destination-slice:hover::before {
    background: rgba(0, 0, 0, 0.02);
}

.destination-slice + .destination-slice {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.25);
}

.destination-slice.active {
    flex: 3.2;
    box-shadow: inset 0 0 0 3px rgba(212, 160, 23, 0.45);
}

.destination-slice.active::before {
    background: rgba(0, 0, 0, 0.02);
}

.destination-slice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.destination-slice.active .destination-slice-overlay {
    opacity: 1;
}

.destination-slice-content {
    position: absolute;
    left: 26px;
    bottom: 26px;
    right: 26px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.destination-slice.active .destination-slice-content {
    opacity: 1;
    transform: translateY(0);
}

.destination-slice-region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.destination-slice-region svg {
    width: 16px;
    height: 16px;
}

.destination-slice-title {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: inherit;
}

.destination-slice-title:hover {
    text-decoration: underline;
}

.destinations-slices-footer {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* ========================================
   Tour Categories (Coverflow)
   ======================================== */

.tour-categories {
    padding: 90px 0;
    background-color: var(--color-white);
}

.tour-cat-track {
    --tour-cat-w: clamp(270px, 30vw, 380px);
    --tour-cat-h: clamp(340px, 40vw, 460px);
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    padding: 16px clamp(10px, calc((100% - var(--tour-cat-w)) / 2), 90px) 26px;
    gap: 18px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(10px, calc((100% - var(--tour-cat-w)) / 2), 90px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.tour-cat-track::before,
.tour-cat-track::after {
    content: none;
}

.tour-cat-track::-webkit-scrollbar {
    display: none;
}

.tour-cat-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
    -webkit-user-select: none;
}

.tour-cat-track.dragging .tour-cat-card {
    transition-duration: 0.15s;
}

.tour-cat-track.dragging .tour-cat-card.active {
    transform: scale(1.02) translateY(6px);
}

.tour-cat-card {
    position: relative;
    display: block;
    flex: 0 0 var(--tour-cat-w);
    height: var(--tour-cat-h);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.98);
    opacity: 0.95;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    filter: saturate(0.92) contrast(0.98);
    will-change: transform;
    overflow: hidden;
    isolation: isolate;
}

.tour-cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: var(--tour-cat-bg, linear-gradient(135deg, #1a1a1a 0%, #3a2a14 60%, #b08d3b 120%));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.55s ease;
    z-index: 0;
}

.tour-cat-card.active {
    transform: scale(1.03);
    opacity: 1;
    z-index: 2;
    filter: none;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.tour-cat-card:hover {
    opacity: 1;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

.tour-cat-card:hover::before {
    transform: scale(1.04);
}

.tour-cat-card:focus-visible {
    outline: none;
    box-shadow: var(--shadow-lg), 0 0 0 3px rgba(212, 160, 23, 0.45);
}

.tour-cat-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
    z-index: 1;
}

.tour-cat-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: var(--color-white);
    z-index: 2;
}

.tour-cat-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
}

.tour-cat-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tour-cat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tour-cat-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.tour-cat-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.tour-cat-link:hover {
    background-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.tour-cat-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
}

@media (prefers-reduced-motion: reduce) {
    .tour-cat-track {
        scroll-behavior: auto;
    }

    .tour-cat-card,
    .tour-cat-card::before,
    .tour-cat-link {
        transition: none !important;
    }
}

/* ========================================
   Tour Categories (Grid + Filters)
   ======================================== */

.tourcat {
    padding: 90px 0;
    background-color: var(--color-white);
}

.tourcat-subtitle {
    margin: 10px auto 0;
    max-width: 700px;
    color: var(--color-gray-700);
}

.tourcat-controls {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.tourcat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tourcat-search,
.tourcat-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.tourcat-sort {
    justify-content: flex-end;
    width: auto;
}

.tourcat-input {
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color-gray-100);
    border-radius: var(--radius-full);
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.tourcat-input:focus {
    border-color: rgba(212, 160, 23, 0.55);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.tourcat-select {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color-gray-100);
    border-radius: var(--radius-full);
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.tourcat-select:focus {
    border-color: rgba(212, 160, 23, 0.55);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.tourcat-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tourcat-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transform: translateY(14px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-normal);
    transition-delay: calc(var(--i, 0) * 90ms);
}

.tourcat.is-visible .tourcat-card {
    transform: translateY(0);
    opacity: 1;
}

.tourcat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tourcat-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background-color: var(--color-gray-100);
}

.tourcat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tourcat-card:hover .tourcat-media img {
    transform: scale(1.03);
}

.tourcat-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(245, 245, 245, 1));
}

.tourcat-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.tourcat-save:hover {
    transform: translateY(-1px);
    background-color: var(--color-white);
}

.tourcat-save:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.35);
}

.tourcat-save svg {
    width: 18px;
    height: 18px;
    color: var(--color-gray-700);
    transition: color var(--transition-fast);
}

.tourcat-card.is-saved .tourcat-save svg {
    color: var(--color-primary-dark);
}

.tourcat-actions {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.tourcat-card:hover .tourcat-actions,
.tourcat-card:focus-within .tourcat-actions {
    opacity: 1;
    transform: translateY(0);
}

.tourcat-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.tourcat-view:hover {
    filter: brightness(1.08);
    transform: scale(1.02);
}

.tourcat-view:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.35);
}

.tourcat-view:active {
    transform: translateY(1px);
}

.tourcat-body {
    padding: 16px 16px 18px;
}

.tourcat-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.tourcat-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
}

.tourcat-title a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.35);
    border-radius: 6px;
}

.tourcat-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-gray-500);
    flex: 0 0 auto;
}

.tourcat-stars {
    display: inline-flex;
    gap: 2px;
}

.tourcat-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--color-amber);
}

.tourcat-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gray-700);
    margin-bottom: 10px;
}

.tourcat-location svg {
    width: 14px;
    height: 14px;
    color: var(--color-gray-500);
}

.tourcat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tourcat-tag {
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background-color: var(--color-gray-100);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-700);
    opacity: 0.88;
    transform: translateY(4px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), background-color var(--transition-normal);
}

.tourcat-card:hover .tourcat-tag {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(212, 160, 23, 0.12);
}

.tourcat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tourcat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background-color: rgba(245, 245, 245, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 12px;
    color: var(--color-gray-700);
    font-weight: 600;
}

.tourcat-chip svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary-dark);
}

.tourcat-desc {
    font-size: 13px;
    color: var(--color-gray-700);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tourcat-cta {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tourcat-empty {
    grid-column: 1 / -1;
    padding: 22px;
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(0, 0, 0, 0.14);
    background-color: var(--color-gray-100);
    color: var(--color-gray-700);
    text-align: center;
    font-weight: 600;
}

/* ========================================
   Upcoming Trips Section
   ======================================== */

.upcoming-trips {
    padding: 100px 0;
    background-color: var(--color-white);
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trip-card {
    display: block;
}

.trip-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.trip-card:hover .trip-image img {
    transform: scale(1.1);
}

.trip-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.trip-card:hover .trip-overlay {
    opacity: 1;
}

.trip-view {
    padding: 10px 20px;
    background-color: var(--color-white);
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.trip-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: color var(--transition-normal);
}

.trip-card:hover .trip-info h3 {
    color: var(--color-primary);
}

.trip-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 11px;
    color: var(--color-gray-500);
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ========================================
   Packages Section
   ======================================== */

.packages {
    padding: 100px 0;
    background-color: var(--color-gray-100);
}

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

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-location {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark);
}

.package-location svg {
    width: 14px;
    height: 14px;
}

.package-content {
    padding: 20px;
}

.package-meta {
    margin-bottom: 8px;
}

.package-duration {
    font-size: 12px;
    color: var(--color-gray-500);
}

.package-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    transition: color var(--transition-normal);
}

.package-card:hover .package-name {
    color: var(--color-primary);
}

.package-reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.package-reviews svg {
    width: 14px;
    height: 14px;
    color: var(--color-amber);
}

.package-reviews span {
    font-size: 12px;
    color: var(--color-gray-500);
}

.package-desc {
    font-size: 13px;
    color: var(--color-gray-700);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-original {
    font-size: 13px;
    color: var(--color-gray-500);
    text-decoration: line-through;
}

.packages-footer {
    text-align: center;
    margin-top: 48px;
}

/* ========================================
   Enjoy Holiday Section
   ======================================== */

.enjoy-holiday {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(212, 160, 23, 0.06), rgba(255, 255, 255, 1));
    position: relative;
    overflow: hidden;
}

.enjoy-holiday .container {
    position: relative;
    z-index: 1;
}

.enjoy-holiday::before,
.enjoy-holiday::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 9999px;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.enjoy-holiday::before {
    top: -260px;
    left: -220px;
    background: rgba(212, 160, 23, 0.35);
}

.enjoy-holiday::after {
    bottom: -300px;
    right: -240px;
    background: rgba(245, 197, 24, 0.3);
}

.enjoy-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.enjoy-media {
    position: relative;
}

.enjoy-mosaic {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-xl);
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.enjoy-mosaic-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.enjoy-mosaic-item--large {
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    min-height: 420px;
}

.enjoy-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.enjoy-mosaic-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 55%);
}

.enjoy-mosaic:hover .enjoy-mosaic-item img {
    transform: scale(1.03);
}

.enjoy-badge {
    position: absolute;
    left: 22px;
    bottom: -18px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    min-width: 160px;
}

.enjoy-badge-top,
.enjoy-badge-bottom {
    display: block;
    font-size: 12px;
    color: var(--color-gray-500);
}

.enjoy-badge-main {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
    margin: 4px 0;
}

.enjoy-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.2vw, 3.6rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: 14px;
}

.enjoy-desc {
    color: var(--color-gray-700);
    max-width: 520px;
    margin-bottom: 18px;
}

.enjoy-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

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

.enjoy-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.enjoy-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 160, 23, 0.25);
}

.enjoy-feature-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    background-color: rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.enjoy-feature-card:hover .enjoy-feature-icon {
    background-color: var(--color-primary);
    transform: translateY(-1px);
}

.enjoy-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    transition: color var(--transition-normal);
}

.enjoy-feature-card:hover .enjoy-feature-icon svg {
    color: var(--color-dark);
}

.enjoy-feature-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
    transition: color var(--transition-normal);
}

.enjoy-feature-card:hover .enjoy-feature-body h3 {
    color: var(--color-primary);
}

.enjoy-feature-body p {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* ========================================
   Feedback Section
   ======================================== */

.feedback {
    padding: 100px 0;
    background-color: var(--color-gray-100);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feedback-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
}

.feedback--tour {
    padding: 80px 0 0;
    background: transparent;
}

.feedback--touriza {
    padding: 84px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.78) 100%);
}

.feedback--tour .section-header-center,
.feedback--touriza .section-header-center {
    margin-bottom: 18px;
}

.feedback--tour .media-carousel-shell {
    background-color: transparent;
    border: 0;
    border-radius: 22px;
    padding: 18px 12px 10px;
}

.feedback--tour .section-label,
.feedback--touriza .section-label {
    margin-bottom: 8px;
}

.feedback--tour .feedback-grid {
    margin-top: 14px;
}

.feedback-carousel-track {
    gap: 22px;
    padding: 10px 6px 14px;
}

.feedback-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: 0;
    scroll-snap-align: start;
}

.feedback-slide .feedback-card {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 26px 24px;
    box-shadow: none;
}

.feedback-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.feedback-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-dark);
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.3), rgba(212, 160, 23, 0.08));
    border: 1px solid rgba(212, 160, 23, 0.35);
}

.feedback-meta {
    display: grid;
    gap: 2px;
}

.feedback-meta strong {
    font-size: 15px;
    color: var(--color-dark);
}

.feedback-meta span {
    font-size: 12px;
    color: var(--color-gray-500);
}

.feedback-quote-mark {
    width: 32px;
    height: 32px;
    color: rgba(212, 160, 23, 0.55);
}

.feedback-quote-mark svg {
    width: 100%;
    height: 100%;
}

.feedback-quote {
    margin-bottom: 16px;
}

.feedback-quote svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.feedback-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.feedback-stars svg {
    width: 18px;
    height: 18px;
    color: var(--color-amber);
}

.feedback-text {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 0;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--color-gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-gray-700);
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.author-info p {
    font-size: 13px;
    color: var(--color-gray-500);
}

/* ========================================
   News Section
   ======================================== */

.news {
    padding: 100px 0;
    background-color: var(--color-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news .media-carousel-track .news-card {
    flex: 0 0 min(380px, 86vw);
    min-width: min(380px, 86vw);
}

.news-card {
    display: block;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 12px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.45);
}

.news-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 16px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.news-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color var(--transition-normal);
}

.news-card:hover .news-content h3 {
    color: var(--color-primary);
}

.news-content {
    padding: 0 4px 4px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.news-meta strong {
    color: var(--color-dark);
    font-weight: 500;
}

/* ========================================
   Newsletter Section
   ======================================== */

.newsletter {
    padding: 60px 0;
    background-color: var(--color-dark);
}

.newsletter .container {
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 14px;
    outline: none;
    transition: all var(--transition-normal);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(200, 240, 125, 0.2);
}

.newsletter-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-privacy a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.footer-logo-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.footer-social a:hover svg {
    color: var(--color-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--color-primary);
}

.footer-developed {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.78);
}

.footer-developed-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-weight: 600;
}

.footer-developed-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3px;
}

.footer-developed-link:hover {
    color: #fff2e8;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .about-intro-grid,
    .detail-hero-grid,
    .enjoy-shell {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-grid--services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enjoy-mosaic-item--large {
        min-height: 360px;
    }
    
    .destinations-grid,
    .trips-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-slices {
        height: 360px;
    }

    .destination-slice.active {
        flex: 2.6;
    }

    .destination-slice-title {
        font-size: 1.6rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: auto;
        height: 100dvh;
        width: min(86vw, 360px);
        padding: 92px 18px 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -22px 0 44px rgba(0, 0, 0, 0.18);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        z-index: 1102;
    }

    .nav-links.mobile-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-md);
        color: var(--color-dark);
        background-color: transparent;
    }

    .nav-links .nav-link:hover {
        background-color: var(--color-gray-100);
        color: var(--color-dark);
    }

    .nav-links .nav-link.active {
        background-color: var(--color-dark);
        color: var(--color-white);
    }

    .nav-links .nav-dropdown {
        width: 100%;
    }

    .nav-links .nav-caret {
        margin-left: auto;
    }

    .nav-links .nav-dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        max-height: none;
        border: 0;
        box-shadow: none;
        background: transparent;
        margin-top: 4px;
        padding: 0 0 0 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-links .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
    }

    .nav-links .nav-dropdown-menu a {
        padding: 9px 10px;
    }

    .nav-links .nav-language-menu {
        min-width: 0;
    }

    .nav-links .nav-language-option-btn {
        width: 100%;
        color: var(--color-dark);
    }

    .nav-language-item-mobile {
        display: block;
    }

    .nav-language-item-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1103;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        display: block;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1100;
    }

    body.mobile-menu-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .menu-toggle span {
        background-color: var(--color-dark);
    }

    body.mobile-menu-open .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .section-title-dark {
        font-size: 2.3rem;
    }
    
    .hero .container {
        padding-bottom: 80px;
    }
    
    .scroll-down {
        display: none;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }

    .mv-grid--services {
        grid-template-columns: 1fr;
    }
    
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .detail-about-grid {
        grid-template-columns: 1fr;
    }

    .media-carousel-btn {
        display: none;
    }
    
    .destinations-grid,
    .trips-grid,
    .packages-grid,
    .news-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .feedback-slide {
        flex-basis: 100%;
    }

    .tour-detail-grid {
        grid-template-columns: 1fr;
    }

    .tour-detail-sidebar {
        position: static;
    }

    .tour-detail-top {
        top: 70px;
        margin-bottom: 18px;
    }

    .tour-section {
        padding: 18px 16px;
    }

    .tour-info-split,
    .tour-mini-form-row {
        grid-template-columns: 1fr;
    }

    .tour-cat-track {
        padding-left: 4px;
        padding-right: 4px;
    }

    .destination-slices {
        flex-direction: column;
        height: 620px;
    }

    .destination-slice + .destination-slice {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .destination-slice.active {
        flex: 2.4;
    }

    .destination-slice-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .destination-slice-title {
        font-size: 1.4rem;
    }
    
    .enjoy-features {
        grid-template-columns: 1fr;
    }

    .enjoy-badge {
        left: 16px;
        bottom: -14px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .tour-detail-top {
        width: calc(100% - 32px);
    }
    
    .about-intro,
    .destinations,
    .upcoming-trips,
    .packages,
    .enjoy-holiday,
    .feedback,
    .news {
        padding: 60px 0;
    }

    .destination-slices {
        height: 560px;
    }
    
    .services-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-cat-card {
        height: 340px;
    }

    .tour-cat-track {
        --tour-cat-w: 250px;
    }

    .tour-facts-grid {
        grid-template-columns: 1fr;
    }

    .enjoy-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .enjoy-mosaic-item--large {
        grid-row: auto;
        min-height: 260px;
    }

    .enjoy-badge {
        position: static;
        margin-top: 12px;
        width: fit-content;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-header.page-header--compact {
    min-height: clamp(280px, 52vh, 420px);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.page-header-slide.is-active {
    opacity: 1;
}

.page-header-slide img,
.page-header-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22), transparent),
        linear-gradient(to right, rgba(0, 0, 0, 0.28), transparent);
}

.page-header .container {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(44px, 7vw, 86px);
}

.page-hero-slider-controls {
    position: absolute;
    right: 24px;
    bottom: clamp(28px, 4vw, 54px);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.page-hero-slider-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-hero-slider-btn:hover {
    background: rgba(0, 0, 0, 0.36);
    border-color: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
}

.page-hero-slider-btn svg {
    width: 16px;
    height: 16px;
}

.page-hero-content {
    max-width: 880px;
}

.page-hero-watermark {
    opacity: 0.1;
    letter-spacing: 0.16em;
    font-size: clamp(76px, 15vw, 220px);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 14px 0 8px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero-subtitle {
    margin-top: 14px;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.detail-hero {
    position: relative;
    padding: 110px 0 70px;
    background-color: #0b0b0b;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(0.95);
    transform: scale(1.02);
}

.detail-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(0.95);
    transform: scale(1.02);
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 500px at 20% 30%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85)),
        linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
}

.detail-hero .container {
    position: relative;
    z-index: 1;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.detail-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin: 14px 0 10px;
}

.detail-hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 10px;
}

.detail-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 52ch;
}

.detail-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.detail-hero-media {
    position: relative;
}

.detail-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-hero-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-hero-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.detail-about {
    padding: 80px 0;
    background-color: var(--color-white);
}

.detail-lede {
    font-size: clamp(1.05rem, 1.15vw, 1.35rem);
    line-height: 1.85;
    color: var(--color-gray-700);
    max-width: 62ch;
    margin-top: 14px;
}

.detail-about-card {
    background-color: var(--color-gray-100);
    border-radius: var(--radius-xl);
    padding: clamp(18px, 3vw, 28px);
    box-shadow: var(--shadow-sm);
}

.detail-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.detail-about-item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-about-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
    margin-bottom: 6px;
}

.detail-about-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.media-carousel {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.media-carousel-shell {
    position: relative;
}

.media-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 6px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y;
}

.media-carousel-track::-webkit-scrollbar {
    display: none;
}

.media-carousel-slide {
    flex: 0 0 clamp(280px, 70vw, 560px);
    scroll-snap-align: center;
}

.media-carousel-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: block;
}

.media-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition-normal), background-color var(--transition-normal);
    z-index: 2;
}

.media-carousel-btn:hover {
    background-color: var(--color-white);
    transform: translateY(-50%) scale(1.05);
}

.media-carousel-btn svg {
    width: 18px;
    height: 18px;
    color: var(--color-dark);
}

.media-carousel-btn[data-carousel-prev] {
    left: -8px;
}

.media-carousel-btn[data-carousel-next] {
    right: -8px;
}

.detail-photos {
    padding: 80px 0;
    background-color: var(--color-white);
}

.detail-photo-carousel {
    position: relative;
}

.detail-photo-carousel-track {
    gap: 16px;
    padding: 8px 4px 14px;
}

.detail-photo-slide {
    flex: 0 0 min(440px, 82vw);
    min-width: min(440px, 82vw);
}

.detail-photo-slide .detail-photo-card {
    height: 100%;
}

.detail-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.detail-photo-card {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.2);
    background-color: var(--color-white);
}

.detail-photo-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform var(--transition-slow);
}

.detail-photo-card:hover img {
    transform: scale(1.04);
}

/* ========================================
   GENERIC CONTENT SECTION
   ======================================== */

.about {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.about .container {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 48px);
    box-shadow: var(--shadow-sm);
}

.about h2,
.about h3,
.about h4 {
    font-family: var(--font-display);
    color: var(--color-dark);
    margin: 18px 0 10px;
}

.about p {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about p:last-child {
    margin-bottom: 0;
}

.about strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* ========================================
   DESTINATIONS PAGE
   ======================================== */

.destinations-page {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.destinations-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destination-card-large {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.destination-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.destination-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.destination-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.destination-location svg {
    width: 14px;
    height: 14px;
}

.destination-desc {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* ========================================
   TOURS PAGE
   ======================================== */

.tours-page {
    padding: 80px 0;
    background-color: var(--color-white);
}

.tour-detail {
    padding: 80px 0;
    background-color: var(--color-white);
}

.tour-detail-top {
    position: sticky;
    top: 80px;
    z-index: 50;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto 26px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 12px 14px;
}

.tour-detail-nav {
    display: flex;
    gap: 8px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-bottom: 0;
}

.tour-detail-nav::-webkit-scrollbar {
    display: none;
}

.tour-detail-nav-link {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background-color: var(--color-gray-100);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gray-700);
    transition: background-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal);
}

.tour-detail-nav-link:hover {
    color: var(--color-dark);
    background-color: var(--color-white);
    transform: translateY(-1px);
}

.tour-detail-nav-link.is-active {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.tour-quickfacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
    background-color: rgba(200, 240, 125, 0.22);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
}

.tour-detail-main {
    min-width: 0;
}

.tour-section + .tour-section {
    margin-top: 24px;
}

.tour-section {
    background-color: var(--color-gray-100);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    padding: 22px;
}

[data-scrollspy-section] {
    scroll-margin-top: 176px;
}

.tour-section .section-title-dark {
    font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.tour-overview-head {
    display: grid;
    gap: 12px;
}

.tour-overview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-overview-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: var(--radius-full);
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--color-gray-700);
    font-size: 12px;
    font-weight: 700;
}

.tour-subtitle {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 22px 0 12px;
}

.tour-list {
    display: grid;
    gap: 10px;
    padding-left: 0;
    color: var(--color-gray-700);
}

.tour-list li {
    list-style: none;
    line-height: 1.7;
}

.tour-highlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.tour-highlight-chips li {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: var(--radius-full);
    background-color: rgba(212, 160, 23, 0.12);
    color: var(--color-dark);
    border: 1px solid rgba(212, 160, 23, 0.25);
    font-size: 13px;
    font-weight: 700;
}

.tour-muted {
    color: var(--color-gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.tour-itinerary {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.tour-itinerary-item {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--color-white);
    overflow: hidden;
}

.tour-itinerary-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-weight: 700;
    color: var(--color-dark);
    background-color: rgba(0, 0, 0, 0.02);
}

.tour-itinerary-item summary::-webkit-details-marker {
    display: none;
}

.tour-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 8px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.tour-day-title {
    font-family: var(--font-display);
    font-weight: 800;
}

.tour-itinerary-body {
    padding: 12px 14px 14px;
}

.tour-itinerary-body p {
    margin: 0;
    color: var(--color-gray-700);
    line-height: 1.8;
    font-size: 15px;
}

.tour-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.tour-info-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.tour-info-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tour-list-check li,
.tour-list-cross li {
    position: relative;
    padding-left: 24px;
}

.tour-list-check li::before,
.tour-list-cross li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.tour-list-check li::before {
    background: radial-gradient(circle at 50% 50%, var(--color-primary) 0 45%, transparent 47% 100%);
    border: 1px solid rgba(212, 160, 23, 0.35);
}

.tour-list-cross li::before {
    background: radial-gradient(circle at 50% 50%, #ef4444 0 45%, transparent 47% 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tour-tabs {
    margin-top: 16px;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px;
}

.tour-tablist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tour-tab {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    padding: 10px 12px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: transform var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
}

.tour-tab:hover {
    transform: translateY(-1px);
}

.tour-tab.is-active {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.tour-tabpanels {
    margin-top: 12px;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 14px 10px;
}

.tour-tabpanel {
    display: none;
}

.tour-tabpanel.is-active {
    display: block;
}

.tour-map img,
.tour-map iframe {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
}

[data-lightbox-gallery] img {
    cursor: zoom-in;
}

.tour-detail-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.tour-facts {
    background-color: #f7f7f7;
    border-radius: var(--radius-xl);
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.tour-price {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.tour-price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
}

.tour-price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
}

.tour-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tour-rating-line {
    margin: 2px 0 0;
    color: var(--color-gray-700);
    font-size: 13px;
    font-weight: 600;
}

.tour-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.tour-fact {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 11px 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-fact-label {
    display: block;
    font-size: 12px;
    color: var(--color-gray-500);
    margin-bottom: 4px;
}

.tour-fact-value {
    display: block;
    font-weight: 700;
    color: var(--color-dark);
}

.tour-facts-actions {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.tour-mini-form {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.tour-mini-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tour-mini-form label {
    display: grid;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-700);
}

.tour-mini-form input {
    width: 100%;
    padding: 10px 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: var(--color-white);
    font-size: 13px;
    color: var(--color-dark);
}

.tour-mini-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.tour-sidebar-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
}

.tour-sidebar-card .tour-subtitle {
    margin: 0 0 10px;
    font-size: 1rem;
}

.tour-article {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
    text-decoration: none;
}

.tour-article img {
    width: 88px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.tour-article-meta {
    font-size: 12px;
    color: var(--color-gray-500);
    margin-bottom: 6px;
}

.tour-article-title {
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.25;
}

.tour-article:hover .tour-article-title {
    color: var(--color-primary-dark);
}

.tour-help-copy {
    color: var(--color-gray-700);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 1180px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
    }

    .tour-detail-sidebar {
        position: static;
    }
}

.tour-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-lg);
}

.tour-sticky-cta.is-visible {
    display: flex;
}

.tour-sticky-cta-left {
    display: grid;
    gap: 2px;
}

.tour-sticky-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
}

.tour-sticky-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--color-dark);
    line-height: 1.1;
}

.tour-sticky-cta-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.tours-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tours-grid--modern {
    gap: 24px;
}

.tour-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.tour-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tour-card--modern {
    grid-template-columns: 280px 1fr;
    padding: 16px;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    overflow: visible;
}

.tour-card--modern:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.tour-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card--modern:hover .tour-media img {
    transform: scale(1.04);
}

.tour-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.tour-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.tour-fav:hover {
    transform: translateY(-1px);
    background-color: var(--color-white);
}

.tour-fav svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-dark);
}

.tour-card--modern .tour-content {
    padding: 6px 6px 6px 0;
}

.tour-title {
    margin-bottom: 10px;
}

.tour-title a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}

.tour-title a:hover {
    color: var(--color-primary);
}

.tour-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.tour-meta-row-secondary {
    gap: 10px;
    margin-top: -4px;
    margin-bottom: 12px;
}

.tour-meta-row-secondary .tour-meta-item {
    font-size: 12px;
}

.tour-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.tour-meta-item svg {
    width: 14px;
    height: 14px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tour-stars {
    display: inline-flex;
    gap: 2px;
}

.tour-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--color-amber);
}

.tour-rating-text {
    font-size: 13px;
    color: var(--color-gray-500);
}

.tour-footer--modern {
    margin-top: auto;
    padding-top: 14px;
}

.tour-card-desc {
    color: var(--color-gray-700);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.tour-price-modern {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.tour-price-current {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

.tour-price-old {
    font-size: 12px;
    color: var(--color-gray-500);
    text-decoration: line-through;
}

.tour-image {
    position: relative;
    overflow: hidden;
}

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

.tour-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-featured {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.badge-duration {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.tour-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.tour-date,
.tour-group {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.tour-date svg,
.tour-group svg {
    width: 14px;
    height: 14px;
}

.tour-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.tour-desc {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-tag {
    padding: 4px 10px;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--color-gray-700);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-300);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 12px;
    color: var(--color-gray-500);
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-large svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--color-gray-500);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: all var(--transition-normal);
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.pagination-next svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-page {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-detail-page .blog-layout {
    grid-template-columns: 1fr;
    align-items: start;
}

.blog-detail-main,
.blog-sidebar {
    min-width: 0;
}

.blog-detail-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-detail-cover {
    aspect-ratio: 16/8;
}

.blog-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.7vw, 2.6rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-dark);
}

.blog-detail-lede {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-gray-700);
    margin-bottom: 18px;
}

.blog-detail-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 22px 0 10px;
    color: var(--color-dark);
}

.blog-detail-body p {
    line-height: 1.8;
}

.blog-detail-quote {
    margin: 24px 0;
    padding: 20px 22px;
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-gray-100);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-gray-700);
}

.blog-detail-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.blog-detail-list li {
    color: var(--color-gray-700);
    line-height: 1.6;
}

.blog-detail-carousel {
    margin-top: 28px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.blog-detail-carousel .section-header-row {
    margin-bottom: 14px;
}

.blog-detail-carousel .media-carousel-shell {
    position: relative;
    overflow: hidden;
}

.blog-detail-carousel .media-carousel-track {
    padding: 8px 4px 14px;
}

.blog-detail-carousel .media-carousel-slide {
    flex: 0 0 min(100%, 520px);
}

.blog-detail-carousel .media-carousel-slide img {
    height: 330px;
}

.blog-detail-carousel .media-carousel-btn[data-carousel-prev] {
    left: 8px;
}

.blog-detail-carousel .media-carousel-btn[data-carousel-next] {
    right: 8px;
}

.blog-detail-photos {
    margin-top: 28px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.article-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.article-photo-track {
    gap: 16px;
    padding: 8px 4px 14px;
}

.article-photo-slide {
    flex: 0 0 min(440px, 82vw);
    min-width: min(440px, 82vw);
}

.article-photo-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: zoom-in;
}

.article-photo-caption {
    padding: 10px 12px 12px;
}

.article-photo-caption h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.2;
    color: var(--color-dark);
}

.article-photo-caption p {
    margin-top: 4px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.blog-related-articles {
    margin-top: 28px;
    padding: 0;
}

/* Featured Post */
.blog-featured {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.blog-featured-image {
    position: relative;
    aspect-ratio: 21/9;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-image .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
}

.blog-featured-content {
    padding: 32px;
}

.blog-featured-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.blog-featured-content p {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--color-primary);
}

.blog-content p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.blog-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-normal);
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--color-gray-500);
}

.blog-meta svg {
    width: 14px;
    height: 14px;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-gray-300);
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    gap: 8px;
}

.sidebar-search input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    outline: none;
}

.sidebar-search input:focus {
    border-color: var(--color-primary);
}

.sidebar-search button {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sidebar-search button svg {
    width: 18px;
    height: 18px;
    color: var(--color-dark);
}

/* Sidebar Categories */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-gray-700);
    transition: color var(--transition-normal);
}

.sidebar-categories a:hover {
    color: var(--color-primary);
}

.sidebar-categories a span {
    color: var(--color-gray-500);
    font-size: 12px;
}

/* Sidebar Posts */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-post {
    display: flex;
    gap: 12px;
}

.sidebar-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.sidebar-post-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.sidebar-post-content span {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* Sidebar Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--color-gray-700);
    transition: all var(--transition-normal);
}

.tag:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Newsletter Mini */
.newsletter-mini {
    padding: 60px 0;
    background-color: var(--color-dark);
}

.newsletter-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.newsletter-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.newsletter-inline {
    display: flex;
    gap: 12px;
}

.newsletter-inline input {
    flex: 1;
    padding: 14px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 14px;
    outline: none;
}

.newsletter-inline input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.gallery-page {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 24px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/11;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--hero {
    aspect-ratio: 16/11;
}

.gallery-item--wide {
    aspect-ratio: 16/11;
}

.gallery-item--tall {
    aspect-ratio: 16/11;
}

.gallery-item--wide-tall {
    aspect-ratio: 16/11;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.gallery-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom svg {
    width: 18px;
    height: 18px;
    color: var(--color-dark);
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

.video-gallery-block {
    margin-top: 56px;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.video-card {
    min-width: 0;
}

.video-card-media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background:
        radial-gradient(140% 110% at 16% 16%, rgba(212, 160, 23, 0.24), rgba(212, 160, 23, 0) 58%),
        linear-gradient(135deg, #1b1b1b 0%, #090909 100%);
    color: var(--color-white);
}

.video-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.12));
    pointer-events: none;
}

.video-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform var(--transition-slow);
}

.video-card:hover .video-card-media img {
    transform: scale(1.05);
}

.video-card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.66);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-normal), transform var(--transition-normal);
    z-index: 2;
}

.video-card:hover .video-card-play {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.06);
}

.video-card-play svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.video-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-dark);
    background-color: var(--color-primary);
    z-index: 2;
}

.video-card-media-label {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.video-card-content {
    padding-top: 12px;
}

.video-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.video-card-content p {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-bottom: 8px;
}

.video-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.video-card-link:hover {
    color: var(--color-dark);
}

.video-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    padding: 20px;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-dialog {
    width: min(1000px, 100%);
    position: relative;
}

.video-lightbox iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    background: #000;
}

.video-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.34);
}

.video-lightbox-close svg {
    width: 18px;
    height: 18px;
}

.video-lightbox-caption {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-normal);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-normal);
}

.lightbox-nav:hover {
    background-color: var(--color-primary);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--color-white);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.contact-social {
    margin-top: 32px;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background-color: var(--color-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.social-links a:hover svg {
    color: var(--color-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-dark);
    outline: none;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 24px 0 0;
    background-color: var(--color-gray-100);
}

.map-shell {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    padding: clamp(18px, 3vw, 28px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: clamp(300px, 42vw, 460px);
    border: 0;
    border-radius: var(--radius-lg);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 38%);
}

.faq-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(22px, 3vw, 38px);
    align-items: start;
}

.faq-lead {
    background-color: var(--color-dark);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 3.2vw, 36px);
    color: var(--color-white);
    position: sticky;
    top: 96px;
}

.faq-lead .section-title-dark {
    color: var(--color-white);
}

.faq-lead .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
    margin: 14px 0 20px;
}

.faq-grid {
    display: grid;
    gap: 14px;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 22px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: transform var(--transition-normal), color var(--transition-normal);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--color-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), opacity var(--transition-normal);
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer p {
    padding: 0 22px 22px;
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

/* ========================================
   Error Pages
   ======================================== */

.error-page-layout {
    min-height: 100vh;
    padding: 80px 0;
    background-color: var(--color-white);
}

.error-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}

.error-hero .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 11vw, 7rem);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.error-content-card {
    background-color: var(--color-white);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.error-content-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.error-video-card {
    display: block;
    background-color: var(--color-white);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.error-video-cover {
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--color-gray-100);
}

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

.error-video-content {
    padding: 14px;
}

.error-video-content h3 {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.error-video-content p,
.error-empty {
    font-size: 14px;
    color: var(--color-gray-700);
}

/* ========================================
   Flat Sections (No Frame)
   ======================================== */

.about .container,
.detail-about-card,
.tour-section,
.tour-facts,
.tour-sidebar-card,
.blog-detail-card,
.blog-detail-carousel,
.map-shell {
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.blog-detail-carousel {
    padding: 0 !important;
}

.map-container iframe,
.tour-map img,
.tour-map iframe {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-primary);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 13px;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-300);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--color-gray-500);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.mission-vision .section-header-center {
    margin-bottom: 26px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mv-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mv-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.7;
}

.mv-card--service {
    text-align: left;
    border: 1px solid rgba(249, 115, 22, 0.24);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.mv-card--service:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: var(--shadow-md);
}

.mv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mv-step {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1;
    color: var(--color-primary);
}

.mv-card--service .mv-icon {
    margin: 0;
}

.mv-card--service h3 {
    margin-bottom: 10px;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background-color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-primary);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.team-social a:hover {
    background-color: var(--color-primary);
}

.team-social a svg {
    width: 16px;
    height: 16px;
    color: var(--color-gray-700);
}

.team-social a:hover svg {
    color: var(--color-dark);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 20px 40px;
    background-color: var(--color-gray-100);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

.cta-box {
    background-color: var(--color-dark);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* ========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ======================================== */

@media (max-width: 1024px) {
    .destinations-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tours-grid-large {
        grid-template-columns: 1fr;
    }
    
    .tour-card-large {
        grid-template-columns: 1fr;
    }
    
    .tour-image {
        aspect-ratio: 16/9;
    }

    .tour-card--modern {
        grid-template-columns: 1fr;
    }

    .tour-media {
        aspect-ratio: 16/9;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
    
    .gallery-page .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .article-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .error-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-experience {
        right: 20px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .faq-lead {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-header {
        min-height: 86vh;
    }

    .page-header.page-header--compact {
        min-height: 320px;
    }
    
    .destinations-grid-large,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-photo-grid {
        grid-template-columns: 1fr;
    }

    .detail-photo-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-inline {
        flex-direction: column;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .destinations-grid-large,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-page .gallery-item,
    .gallery-page .gallery-item--hero,
    .gallery-page .gallery-item--wide,
    .gallery-page .gallery-item--tall,
    .gallery-page .gallery-item--wide-tall {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 16/11;
    }

    .article-photo-card img {
        height: 200px;
    }
    
    .filter-tabs,
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-tab,
    .gallery-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .mv-card {
        padding: 24px;
    }
}

/* ========================================
   Sunset Orange Theme Overrides
   ======================================== */

:root {
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-secondary: #fff5ef;
    --color-dark: #4a250f;
    --color-gray-900: #5f3117;
    --color-gray-700: #7b4a2e;
    --color-gray-500: #a87454;
    --color-gray-300: #f0d1bc;
    --color-gray-200: #f6e6da;
    --color-gray-100: #f8f8f8;
    --color-white: #ffffff;
    --color-amber: #fb923c;
    --shadow-sm: 0 3px 12px rgba(249, 115, 22, 0.12);
    --shadow-md: 0 8px 24px rgba(249, 115, 22, 0.16);
    --shadow-lg: 0 14px 36px rgba(249, 115, 22, 0.2);
}

body {
    background: #ffffff;
}

.navbar.on-hero {
    background-color: rgba(249, 115, 22, 0.16);
    border-bottom-color: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.14);
}

.nav-dropdown-menu {
    background-color: #ffffff;
    border-color: rgba(249, 115, 22, 0.2);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.navbar.scrolled .nav-link:hover {
    background-color: rgba(249, 115, 22, 0.14);
    color: var(--color-primary-dark);
}

.nav-link.active,
.navbar.scrolled .nav-link.active,
.navbar.on-hero-light .nav-link.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.hero-overlay,
.page-header-overlay {
    background:
        linear-gradient(to top, rgba(68, 30, 12, 0.8), rgba(249, 115, 22, 0.28), transparent),
        linear-gradient(to right, rgba(68, 30, 12, 0.45), transparent 58%);
}

.btn-outline {
    color: var(--color-primary-dark);
    border-color: rgba(249, 115, 22, 0.42);
    background-color: rgba(249, 115, 22, 0.08);
}

.btn-outline:hover {
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
    background-color: rgba(249, 115, 22, 0.16);
}

.about-intro,
.tours-page,
.news,
.about-story,
.our-values,
.partners-section,
.detail-about {
    background: #ffffff;
}

.destinations,
.destinations--slices,
.tour-categories,
.feedback,
.blog-page,
.gallery-page,
.contact-page,
.mission-vision,
.team-section,
.faq-section,
.media-carousel,
.tour-detail,
.map-section {
    background: #ffffff;
}

.news-card,
.blog-card,
.blog-featured,
.contact-form-wrapper,
.map-shell,
.faq-item,
.mv-card,
.value-card,
.team-card,
.partner-logo,
.tour-card-large,
.tour-card--modern,
.tour-detail-top,
.video-card-media {
    background-color: #ffffff;
    border-color: rgba(249, 115, 22, 0.24);
}

.news-card:hover,
.blog-card:hover,
.tour-card--modern:hover,
.value-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.tour-detail-nav-link {
    background-color: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.22);
    color: var(--color-primary-dark);
}

.tour-detail-nav-link:hover {
    background-color: rgba(249, 115, 22, 0.22);
    color: var(--color-primary-dark);
}

.tour-detail-nav-link.is-active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: transparent;
    color: var(--color-white);
}

.feedback-card,
.feedback-slide .feedback-card {
    background-color: #ffffff;
    border-color: rgba(249, 115, 22, 0.28);
}

.feedback-avatar {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(249, 115, 22, 0.08));
    border-color: rgba(249, 115, 22, 0.45);
}

.faq-lead {
    background: linear-gradient(155deg, #d4570f 0%, #f97316 100%);
    color: #fff7f2;
}

.faq-lead .section-subtitle {
    color: rgba(255, 247, 242, 0.88);
}

.footer {
    background: linear-gradient(135deg, #c2410c 50%, #f97316 100%);
}

.footer-nav a:hover,
.footer-bottom a {
    color: #ffe4d0;
}

/* Remove hero overlays globally */
.hero-overlay,
.page-header-overlay,
.detail-hero-overlay {
    display: none !important;
    background: none !important;
}
