/* Style Sheet for Visit Sri Lanka - Header and Hero Section */

/* ==========================================
   1. VARIABLES & BASE SETUP
   ========================================== */
:root {
    --primary-color: #063A2D;
    --primary-hover: #04261d;
    --primary-light: #e6ecea;
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-input: #F3F4F6;
    --border-color: #E5E7EB;
    --wishlist-color: #EF4444;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-cursive: 'Great Vibes', cursive;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --border-radius: 8px;
    --container-padding-x: 8%;
    --container-padding: 0 var(--container-padding-x);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html,
body {
    overflow-x: hidden;
}

/* ==========================================
   GLOBAL: HIDE SCROLLBARS (keep scroll functional)
   ========================================== */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}


body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

input {
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    color: var(--text-dark);
    font-size: 14px;
    width: 100%;
}

input::placeholder {
    color: var(--text-muted);
}


/* ==========================================
   3. NAVIGATION HEADER
   ========================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    /* Transparent bubble */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 85px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    border-radius: 50px;
    z-index: 90;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Animated Rainbow Glow for Header */
.main-header::before {
    content: '';
    position: absolute;
    inset: -3px;
    /* Hangs slightly outside to create the shade */
    z-index: -1;
    /* Behind the header */
    border-radius: 53px;
    /* Slightly larger than the header's 50px */
    background: linear-gradient(90deg,
            rgba(255, 0, 0, 0.4),
            rgba(255, 255, 0, 0.4),
            rgba(0, 255, 0, 0.4),
            rgba(0, 0, 255, 0.4),
            rgba(255, 0, 255, 0.4),
            rgba(255, 0, 0, 0.4));
    background-size: 200% 100%;
    filter: blur(10px);
    /* Creates the soft shade effect */
    animation: slideHeaderGlow 6s linear infinite;
    opacity: 0.6;
}

@keyframes slideHeaderGlow {
    0% {
        background-position: 100% 0;
    }

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: var(--container-padding);
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 8px 0;
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-solid {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-solid:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(6, 58, 45, 0.15);
}

.mobile-toggle {
    display: none;
    font-size: 22px;
    color: var(--text-dark);
}

/* Translate Dropdown Wrapper */
.header-translate-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.translate-btn {
    font-size: 20px;
    color: #374151; /* Dark text matching main nav links */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    transition: var(--transition-fast);
}

.translate-btn:hover {
    background-color: rgba(6, 58, 45, 0.06);
    color: var(--primary-color);
}

.translate-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 190px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
}

.translate-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.translate-dropdown-header {
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 6px;
}

.translate-languages {
    display: flex;
    flex-direction: column;
}

.lang-opt {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    gap: 10px;
}

.lang-opt:hover {
    background-color: rgba(6, 58, 45, 0.06);
    color: var(--primary-color);
}

.lang-opt.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

/* Hide Google Translate original top bar elements */
.skiptranslate, 
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ==========================================
   4. HERO BANNER
   ========================================== */
.hero-section {
    position: relative;
    z-index: 20;
    height: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 160px;
    color: var(--text-light);
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/ella.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 90%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-cursive {
    font-family: var(--font-cursive);
    font-size: 55px;
    line-height: 1;
    margin-bottom: -15px;
    margin-left: 4px;
    color: yellow;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-family: var(--font-cursive);
    font-size: 110px;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    max-width: 520px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   5. BOOKING WIDGET
   ========================================== */
.booking-widget {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 16%);
    max-width: 1200px;
    background-color: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
    padding: 0;
    border: 1px solid var(--border-color);
}

/* Tabs Row */
.booking-tabs {
    display: flex;
    padding: 16px 24px 0;
    gap: 8px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn i {
    font-size: 16px;
}

/* Form Fields */
.booking-form {
    padding: 16px 24px 24px;
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

/* Inner gray input card */
.booking-inputs-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px 0;
}

.form-group {
    padding: 8px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-group:not(:last-child) {
    border-right: 1px solid #D1D5DB;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4B5563;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.input-icon {
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}

.select-wrapper {
    cursor: pointer;
}

.guests-display {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Search Submit Button */
.btn-search {
    background-color: var(--primary-color);
    color: var(--text-light);
    height: 58px;
    padding: 0 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(6, 58, 45, 0.2);
}

.btn-search:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 16px rgba(6, 58, 45, 0.3);
}

/* ==========================================
   6. INTERACTIVE DROPDOWNS (GUESTS etc)
   ========================================== */
.guests-picker {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    z-index: 100;
    padding: 20px;
    width: 280px;
}

.guests-picker.active {
    display: block;
}

.picker-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.picker-label {
    display: flex;
    flex-direction: column;
}

.picker-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.picker-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.picker-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.picker-controls button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.picker-controls button:hover {
    background-color: var(--bg-input);
    border-color: var(--text-muted);
}

.picker-value {
    font-size: 15px;
    font-weight: 600;
    width: 15px;
    text-align: center;
}

.btn-guests-done {
    width: 100%;
    background-color: var(--bg-input);
    color: var(--primary-color);
    padding: 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

.btn-guests-done:hover {
    background-color: var(--primary-light);
}

/* ==========================================
   7. RESPONSIVE MOBILE DRAWER
   ========================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--text-light);
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.drawer-close {
    font-size: 20px;
    color: var(--text-dark);
}

.drawer-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.mobile-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.w-100 {
    width: 100%;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================
   7.5 PROVEN TRACK RECORD SECTION
   ========================================== */
.track-record-section {
    padding: 110px 0 60px 0;
    /* Top padding to clear absolute booking widget */
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #0d332c;
    overflow: hidden;
}

.track-record-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.tr-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tr-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0;
}

/* Stats Section */
.tr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.tr-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tr-stat-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.tr-stat-desc {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

/* OTA Platforms */
.tr-ota-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tr-logos-scroll {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Optional edge fade */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tr-logos-track {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.tr-logos-track:hover {
    animation-play-state: paused;
}

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

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

.tr-logo-pill {
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 6px;
    transition: all 0.2s ease;
    cursor: default;
}

.tr-logo-pill:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

/* Demand Gen */
.tr-demand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tr-logos-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Popular Destinations */
.popular-destinations {
    padding: 20px var(--container-padding-x) 80px;
    background-color: var(--text-light);
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.destinations-header .section-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.destinations-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 4px;
}

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

.view-all-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

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

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

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-soft);
}

.destination-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.destination-card:hover .card-bg {
    transform: scale(1.08);
}

.destination-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 2;
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 3;
    color: var(--text-light);
}

.destination-card .dest-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FBBF24;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    opacity: 0.95;
}

.destination-card .dest-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-card .dest-count {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
}

/* ==========================================
   FEATURED STAYS SECTION
   ========================================== */
.featured-stays {
    padding: 20px var(--container-padding-x) 60px;
    background-color: var(--text-light);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-carousel-wrapper {
    position: relative;
    width: 100%;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #063A2D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: var(--transition-fast);
}

.nav-arrow:hover {
    background-color: #04261d;
    transform: translateY(-50%) scale(1.05);
}

.left-arrow {
    left: -18px;
}

.right-arrow {
    right: -18px;
}

.featured-scroll-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stay-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.stay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.stay-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.stay-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.stay-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.bg-green {
    background-color: #059669;
}

.bg-orange {
    background-color: #F97316;
}

.bg-blue {
    background-color: #3B82F6;
}

.bg-purple {
    background-color: #8B5CF6;
}

.stay-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
    transition: var(--transition-fast);
}

.stay-fav-btn:hover {
    background-color: #EF4444;
    border-color: #EF4444;
}

.stay-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stay-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stay-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stay-rating-row {
    position: absolute;
    bottom: 8px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.stay-rating {
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 3px;
}

.stay-rating i {
    color: #FBBF24;
    font-size: 10px;
}

.stay-reviews {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.stay-price-class {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.stay-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: auto;
}

.stay-night {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

/* ==========================================
   9. MEDIA QUERIES (MOBILE RESPONSIVENESS)
   ========================================== */
/* TABLET LAYOUT */
@media (max-width: 1024px) {
    :root {
        --container-padding-x: 4%;
    }

    .nav-menu {
        display: none;
        /* Hide main links to use hamburger */
    }

    .header-actions {
        display: none;
        /* Hide buttons to use hamburger */
    }

    .mobile-toggle {
        display: block;
        /* Show hamburger */
    }

    .hero-title {
        font-size: 80px;
    }

    .booking-widget {
        width: calc(100% - 8%);
        bottom: -90px;
    }

    .booking-inputs-container {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .form-group:nth-child(2n) {
        border-right: none;
    }

    .form-group:nth-child(1),
    .form-group:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    /* Section 2 tablet styles */
    .features-bar {
        margin-top: 130px;
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
        padding: 24px 8px;
    }

    .feature-item::after {
        display: none !important;
    }

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

/* MOBILE PHONE LAYOUT */
@media (max-width: 768px) {


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

    /* 1. Mobile Header Layout */
    .main-header {
        height: 65px;
        top: 15px;
        width: calc(100% - 24px);
        border-radius: 35px;
        padding: 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-toggle {
        display: block;
        order: 1;
        font-size: 20px;
        color: var(--text-dark);
        margin: 0;
        cursor: pointer;
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }

    .logo-text .main-title {
        font-size: 17px;
    }

    .logo-text .subtitle {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .header-translate-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    /* 2. Hero Typography */
    .hero-section {
        height: auto;
        padding-top: 130px;
        padding-bottom: 30px;
        text-align: left;
        /* Left aligned! */
    }

    .hero-content {
        align-items: flex-start;
        /* Left aligned! */
        padding: 0 6%;
    }

    .hero-bg {
        background-position: 70% center;
        /* Shift background for better visual focal point on mobile */
    }

    .hero-cursive {
        font-size: 40px;
        margin-bottom: -10px;
        color: yellow;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    }

    .hero-title {
        font-family: var(--font-cursive);
        font-size: 65px;
        font-weight: 400;
        margin-bottom: 10px;
        line-height: 0.9;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
        max-width: 280px;
    }

    /* 3. Search Widget Mobile Refinements */
    .booking-widget {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 92%;
        margin: 24px auto 0;
        border-radius: 12px;
        z-index: 30;
        /* Override desktop animation — mobile uses margin:auto centering, not translateX(-50%) */
        animation: mobileBookingFadeUp 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
    }

    @keyframes mobileBookingFadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .booking-tabs {
        padding: 12px 16px 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .booking-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 10px;
        gap: 6px;
        flex: 0 0 auto;
        justify-content: center;
    }

    .tab-btn i {
        font-size: 11px;
    }

    .booking-form {
        padding: 16px;
    }

    .form-fields-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .booking-inputs-container {
        grid-template-columns: 1fr;
        background-color: transparent;
        border: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .form-group {
        background-color: var(--text-light);
        border: 1px solid var(--border-color) !important;
        border-radius: 6px;
        padding: 6px 6px;
        margin-bottom: 0;
        border-right: none !important;
    }

    .form-group label {
        font-size: 7px;
        margin-bottom: 2px;
        line-height: 1;
        letter-spacing: 0;
        font-weight: 600;
    }

    .form-group input,
    .guests-display {
        font-size: 10px;
        padding: 0;
        height: 14px;
        line-height: 14px;
    }

    .input-icon {
        font-size: 10px;
    }

    .form-group:not(:last-child) {
        border-bottom: 1px solid var(--border-color) !important;
    }

    .btn-search {
        width: 100%;
        height: 36px;
        border-radius: 6px;
        font-size: 12px;
    }

    .guests-picker {
        width: 100%;
        left: 0;
        right: 0;
        padding: 14px 16px;
    }

    .picker-row {
        margin-bottom: 12px;
    }

    .picker-title {
        font-size: 11px;
    }

    .picker-desc {
        font-size: 8px;
    }

    .picker-value {
        font-size: 11px;
        width: 12px;
    }

    .picker-controls button {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .btn-guests-done {
        padding: 6px;
        font-size: 12px;
    }

    /* 1.5 Track Record Mobile Styles */
    .track-record-section {
        padding: 60px 0 30px 0;
    }

    .track-record-container {
        gap: 30px;
    }

    .tr-subtitle {
        margin-bottom: 20px;
    }

    .tr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .tr-stat-num {
        font-size: 38px;
    }

    .tr-stat-desc {
        font-size: 13px;
    }

    .tr-logos-scroll {
        /* On mobile, we keep the auto slider but remove edge fade for better space usage, or keep it. Let's keep it. */
        padding-bottom: 10px;
    }

    /* We don't need manual horizontal scrolling anymore since it auto-slides */
    .tr-logos-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }

    .tr-logos-row::-webkit-scrollbar {
        display: none;
    }

    .tr-logo-pill {
        flex: 0 0 auto;
        padding: 8px 18px;
    }

    /* 5. Popular Destinations Section Mobile Layout */
    .popular-destinations {
        padding: 20px 4% 60px;
    }

    .destinations-header {
        flex-direction: row;
        /* Horizontal header */
        justify-content: space-between;
        align-items: flex-end;
        gap: 0;
        margin-bottom: 20px;
    }

    .destinations-header .section-title {
        font-size: 22px;
    }

    .destinations-header .section-tag {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .view-all-link {
        font-size: 12px;
    }

    /* Grid row of cards */
    .destinations-grid {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

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

    .destination-card {
        width: 140px;
        flex-shrink: 0;
        height: 190px;
        /* Small cards height */
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    }

    .destination-card .card-content {
        padding: 12px;
    }

    .destination-card .dest-tag {
        font-size: 8px;
        margin-bottom: 2px;
        letter-spacing: 0.3px;
    }

    .destination-card .dest-name {
        font-size: 15px;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .destination-card .dest-count {
        font-size: 9px;
    }
}

/* Featured Stays Mobile Grid */
@media (max-width: 768px) {
    .featured-stays {
        padding: 24px 4% 40px;
    }

    .featured-scroll-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stay-card {
        width: 100%;
        flex-shrink: 1;
    }

    .stay-img-wrapper {
        height: 100px;
    }

    .stay-card-body {
        padding: 10px;
    }

    .stay-name {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .stay-location {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .stay-night,
    .stay-price-class {
        font-size: 8px;
    }

    .stay-rating {
        font-size: 8px;
    }

    .stay-rating i {
        font-size: 7px;
    }

    .stay-reviews {
        font-size: 8px;
    }

    .stay-price {
        font-size: 11px;
    }

    .stay-tag {
        font-size: 8px;
        padding: 2px 5px;
        top: 8px;
        left: 8px;
    }

    .stay-fav-btn {
        width: 24px;
        height: 24px;
        font-size: 11px;
        top: 8px;
        right: 8px;
    }
}

/* VERY SMALL MOBILE LAYOUT (300px - 360px) */
@media (max-width: 360px) {

    /* Header adjustments */
    .logo-text .main-title {
        font-size: 14px;
    }

    .logo-text .subtitle {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .logo-icon svg {
        width: 26px;
        height: 26px;
    }

    .mobile-toggle,
    .mobile-wishlist {
        font-size: 17px;
    }

    /* Hero Section adjustment */
    .hero-section {
        padding-top: 45px;
        padding-bottom: 20px;
    }

    .hero-cursive {
        font-size: 32px;
        margin-bottom: -8px;
    }

    .hero-title {
        font-size: 50px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 12px;
        max-width: 240px;
    }


    /* Features bar adjustments */
    .features-bar {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .features-container {
        padding: 12px 8px;
        gap: 12px 6px;
    }

    .feature-item {
        padding: 2px 0;
        gap: 8px;
    }

    .feature-badge {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .feature-title {
        font-size: 9px;
    }

    .feature-desc {
        font-size: 7.5px;
    }

    /* Popular Destinations adjustments */
    .popular-destinations {
        padding: 15px 4% 45px;
    }

    .destinations-header {
        margin-bottom: 15px;
    }

    .destinations-header .section-title {
        font-size: 16px;
    }

    .destinations-header .section-tag {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .view-all-link {
        font-size: 10px;
    }

    .destination-card {
        width: 105px;
        height: 165px;
        border-radius: 10px;
    }

    .destination-card .card-content {
        padding: 10px;
    }

    .destination-card .dest-tag {
        font-size: 7px;
        margin-bottom: 1px;
    }

    .destination-card .dest-name {
        font-size: 13px;
        margin-bottom: 1px;
    }

    .destination-card .dest-count {
        font-size: 8px;
    }
}


/* ==========================================
   SERVICES OVERVIEW SECTION
   ========================================== */
.services-overview {
    background-color: var(--text-light);
    padding: 48px var(--container-padding-x) 60px;
    border-top: 1px solid var(--border-color);
}

.services-overview-inner {
    display: grid;
    grid-template-columns: 1fr 1px 280px;
    /* Balance Tours and Things To Do */
    gap: 0 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.food-overview-inner {
    display: grid;
    grid-template-columns: 280px 1px 1fr;
    /* Food Tips on left, Restaurants on right */
    gap: 0 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Vertical divider */
.svc-divider {
    width: 1px;
    background-color: var(--border-color);
    align-self: stretch;
}



/* ---- Transport list ---- */
.transport-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.transport-item:hover .transport-name {
    color: var(--primary-color);
}

.transport-icon {
    width: 56px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transport-icon-fallback {
    display: none;
    width: 56px;
    height: 40px;
    background: var(--bg-input);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
}

.transport-info {
    display: flex;
    flex-direction: column;
}

.transport-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.transport-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* ---- Tour cards row ---- */
.tours-scroll-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tour-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.tour-card-img {
    height: 130px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

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

.tour-card-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tour-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.tour-location {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

.tour-reviews {
    color: #F59E0B;
    font-size: 10px;
    margin-top: 2px;
}

.tour-price {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.tour-price strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ---- Things to do list ---- */
.things-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.things-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.things-item:hover {
    background-color: #F8FAFC;
}

.things-item:hover .things-name {
    color: var(--primary-color);
}

.tips-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F0FDF4;
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.things-item:hover .tips-icon {
    background-color: #10B981;
    color: white;
    transform: scale(1.05);
}

.things-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.things-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.things-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {

    .services-overview-inner,
    .food-overview-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .svc-column {
        width: 100%;
        min-width: 0;
    }

    .svc-divider {
        width: 100%;
        height: 1px;
        margin: 36px 0;
    }

    .tours-scroll-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
    .services-overview {
        padding: 36px 4% 48px;
    }

    .services-overview-inner,
    .food-overview-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .svc-column {
        width: 100%;
        min-width: 0;
    }

    .svc-divider {
        width: 100%;
        height: 1px;
        margin: 28px 0;
    }

    .tours-scroll-row {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 16px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        align-items: stretch;
    }

    .tours-scroll-row::-webkit-scrollbar {
        display: none;
    }

    .tour-card {
        flex-shrink: 0;
        width: 140px;
        display: flex;
        flex-direction: column;
        height: auto;
    }

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

    .tour-card-body {
        padding: 10px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .tour-name {
        font-size: 10px;
    }

    .tour-location,
    .tour-price {
        font-size: 8px;
    }

    .things-thumb {
        width: 36px;
        height: 36px;
    }

    .things-name {
        font-size: 10px;
    }

    .things-desc {
        font-size: 8px;
    }
}

/* ---- Very small (≤360px) ---- */
@media (max-width: 360px) {
    .svc-title {
        font-size: 16px;
    }

    .svc-view-all {
        font-size: 11px;
    }

    .tour-card {
        flex-shrink: 0;
        width: 125px;
    }

    .tour-card-img {
        height: 85px;
    }
}

/* ==========================================
   10. TRANSPORT OPTIONS SECTION
   ========================================== */
.transport-options {
    padding: 60px var(--container-padding-x) 80px;
    background-color: #F8FAFC;
}

.transport-container {
    max-width: 1200px;
    margin: 0 auto;
}

.transport-carousel-wrapper {
    position: relative;
    width: 100%;
}

.transport-scroll-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.transport-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.transport-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.transport-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.transport-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    z-index: 2;
}

.transport-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-fast);
}

.transport-fav-btn:hover {
    background-color: #EF4444;
    border-color: #EF4444;
    color: white;
}

.transport-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.transport-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transport-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transport-rating-row {
    position: absolute;
    bottom: 8px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.transport-rating {
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 3px;
}

.transport-rating i {
    color: #FBBF24;
    font-size: 10px;
}

.transport-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: auto;
}

.transport-night {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

/* TRANSPORT SECTION RESPONSIVE */
@media (max-width: 1024px) {
    .transport-scroll-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .transport-options {
        padding: 24px 4% 40px;
    }

    .transport-scroll-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .transport-card {
        width: 100%;
        flex-shrink: 1;
    }

    .transport-img-wrapper {
        height: 100px;
    }

    .transport-card-body {
        padding: 10px;
    }

    .transport-name {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .transport-location {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .transport-night {
        font-size: 8px;
    }

    .transport-rating {
        font-size: 8px;
    }

    .transport-rating i {
        font-size: 7px;
    }

    .transport-price {
        font-size: 11px;
    }

    .transport-tag {
        font-size: 8px;
        padding: 2px 5px;
        top: 8px;
        left: 8px;
    }

    .transport-fav-btn {
        width: 24px;
        height: 24px;
        font-size: 11px;
        top: 8px;
        right: 8px;
    }
}

/* ==========================================
   10.5 FOOD & DRINK SECTION
   ========================================== */
.food-drink-options {
    padding: 60px var(--container-padding-x) 80px;
    background-color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

.food-drink-container {
    max-width: 1200px;
    margin: 0 auto;
}

.food-drink-carousel-wrapper {
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .food-drink-options {
        padding: 24px 4% 40px;
    }
}

/* ==========================================
   11. LATEST ARTICLES SECTION
   ========================================== */
.latest-articles {
    padding: 60px var(--container-padding-x) 80px;
    background-color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

/* Main Article Styles */
.main-article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.main-article-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.main-article-img {
    position: relative;
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    z-index: 2;
}

.article-category.bg-green {
    background-color: #059669;
}

.main-article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.main-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

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

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.meta-dot {
    color: var(--text-muted);
    font-size: 10px;
}

.article-date {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-time {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-article-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.main-article-card:hover .read-more {
    color: var(--primary-hover);
}

.read-more i {
    transition: transform 0.2s ease;
}

.main-article-card:hover .read-more i {
    transform: translateX(4px);
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Related Articles Styles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border-radius: 12px;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.related-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: transparent;
    transform: translateX(4px);
}

.related-img {
    width: 120px;
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.related-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.text-orange {
    color: #D97706;
}

.text-blue {
    color: #2563EB;
}

.text-purple {
    color: #7C3AED;
}

.related-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.read-time {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-card .article-date {
    margin-bottom: 0;
    font-size: 12px;
}

/* ARTICLES SECTION RESPONSIVE */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .latest-articles {
        padding: 40px 4% 60px;
    }

    .main-article-img {
        height: 160px;
    }

    .article-category {
        font-size: 9px;
        padding: 4px 8px;
        top: 10px;
        left: 10px;
    }

    .main-article-content {
        padding: 12px;
    }

    .main-article-meta {
        font-size: 10px;
        gap: 8px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .main-article-meta .author-name,
    .main-article-meta .article-date,
    .main-article-meta .read-time {
        font-size: 10px;
        margin-bottom: 0;
    }

    .main-article-meta .author-avatar {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }

    .main-article-meta .meta-dot {
        font-size: 8px;
    }

    .article-date {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .article-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .article-excerpt {
        font-size: 10px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .read-more {
        font-size: 11px;
    }

    .related-articles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-card {
        padding: 8px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .related-img {
        width: 100%;
        height: 90px;
    }

    .article-category-text {
        font-size: 8px;
        margin-bottom: 4px;
    }

    .related-title {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .related-excerpt {
        font-size: 9px;
        margin-bottom: 8px;
        line-height: 1.3;
        -webkit-line-clamp: 3;
    }

    .related-meta {
        gap: 8px;
        flex-wrap: wrap;
    }

    .related-card .article-date,
    .read-time {
        font-size: 8px;
    }
}

@media (max-width: 360px) {
    .main-article-img {
        height: 140px;
    }

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

    .related-img {
        height: 90px;
    }
}

/* ==========================================
   12. NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
    position: relative;
    padding: 80px var(--container-padding-x);
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/ella.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 38, 29, 0.95);
    z-index: 2;
}

.newsletter-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content {
    flex: 1;
    color: var(--text-light);
}

.newsletter-cursive {
    font-family: var(--font-cursive);
    font-size: 36px;
    color: var(--text-light);
    display: block;
    margin-bottom: -5px;
    margin-left: 4px;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.newsletter-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form-wrapper {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.newsletter-form {
    display: flex;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.newsletter-form .btn-subscribe {
    background-color: #059669;
    color: white;
    font-weight: 700;
    padding: 0 32px;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.newsletter-form .btn-subscribe:hover {
    background-color: #047857;
}

.newsletter-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   13. FOOTER SECTION
   ========================================== */
.main-footer {
    background-color: #111827;
    color: var(--text-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px var(--container-padding-x) 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-light);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

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

.payment-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pay-icon {
    width: 44px;
    height: 28px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pay-icon.visa {
    color: #1a1f71;
}

.pay-icon.mastercard {
    color: #eb001b;
}

.pay-icon.amex {
    color: #007bc1;
}

.pay-icon.apple {
    color: #000;
}

.secure-payment {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px var(--container-padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.made-with i {
    color: #ef4444;
    margin: 0 4px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .newsletter-form-wrapper {
        align-items: center;
        width: 100%;
    }

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

    .brand-col {
        grid-column: span 3;
    }

    .brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 4%;
    }

    .newsletter-cursive {
        font-size: 28px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-desc {
        font-size: 12px;
    }

    .newsletter-form {
        flex-direction: column;
        background-color: transparent;
        gap: 12px;
    }

    .newsletter-input {
        border-radius: 6px;
        background-color: var(--text-light);
        text-align: center;
        width: 100%;
    }

    .newsletter-form .btn-subscribe {
        border-radius: 6px;
        padding: 16px;
        width: 100%;
    }

    .footer-container {
        padding: 40px 4% 20px;
    }

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

    .brand-col {
        grid-column: span 2;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 4%;
    }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

/* --- Base hidden state for animated elements --- */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-scale-in,
.anim-fade-in {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-duration: 1.0s;
    will-change: opacity, transform;
}

.anim-fade-up {
    transform: translateY(48px);
}

.anim-fade-left {
    transform: translateX(-50px);
}

.anim-fade-right {
    transform: translateX(50px);
}

.anim-scale-in {
    transform: scale(0.88);
}

.anim-fade-in {
    transform: none;
}

/* --- Visible (animated-in) state --- */
.anim-fade-up.is-visible,
.anim-fade-left.is-visible,
.anim-fade-right.is-visible,
.anim-scale-in.is-visible,
.anim-fade-in.is-visible {
    opacity: 1;
    transform: none;
}

/* --- Stagger delays for child elements --- */
.anim-delay-1 {
    transition-delay: 0.08s;
}

.anim-delay-2 {
    transition-delay: 0.18s;
}

.anim-delay-3 {
    transition-delay: 0.28s;
}

.anim-delay-4 {
    transition-delay: 0.38s;
}

.anim-delay-5 {
    transition-delay: 0.48s;
}

.anim-delay-6 {
    transition-delay: 0.58s;
}

/* --- Hero entrance animation (runs once on load) --- */
@keyframes heroSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Separate keyframe for booking widget — must preserve translateX(-50%) centering */
@keyframes bookingWidgetFadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.hero-cursive {
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-title {
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-subtitle {
    animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

/* Desktop only — mobile uses mobileBookingFadeUp inside @media (max-width: 768px) */
@media (min-width: 769px) {
    .booking-widget {
        animation: bookingWidgetFadeUp 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
    }
}

/* --- Card hover lift enhancement --- */
.destination-card,
.stay-card,
.tour-card,
.transport-card,
.related-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.destination-card:hover,
.stay-card:hover,
.transport-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

/* Feature items pop-in */
.feature-item {
    transition: transform 0.3s ease, opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item:hover {
    transform: translateY(-3px);
}

/* things-item hover */
.things-item {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease,
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 10px;
    padding: 10px 8px;
}

.things-item:hover {
    background: rgba(6, 58, 45, 0.05);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(6, 58, 45, 0.08);
}

/* Small Devices Hero Margin Fix */
@media (min-width: 280px) and (max-width: 360px) {
    .hero-section {
        padding-top: 120px;
    }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {

    .anim-fade-up,
    .anim-fade-left,
    .anim-fade-right,
    .anim-scale-in,
    .anim-fade-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-cursive,
    .hero-title,
    .hero-subtitle,
    .booking-widget {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================
   MAP & DESTINATIONS LAYOUT
   ========================================== */
.map-destinations-section {
    padding: 80px var(--container-padding-x);
    background-color: var(--bg-light);
}

.map-destinations-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 30px;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);

    /* Animation container styles */
    position: relative;
    z-index: 1;
    background: var(--border-color);
    /* Base border color */
    border: none;
    overflow: hidden;
}

/* Spinning rainbow border base */
.map-destinations-layout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -2;
    background-image: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 160deg,
            rgba(255, 0, 0, 0.4) 200deg,
            rgba(255, 255, 0, 0.4) 240deg,
            rgba(0, 255, 0, 0.4) 280deg,
            rgba(0, 0, 255, 0.4) 320deg,
            transparent 360deg);
    filter: blur(12px);
    /* Makes it a soft shade */
    animation: spinRainbow 5s linear infinite;
    /* Smoother spin */
}

/* Inner white card */
.map-destinations-layout::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    /* Border thickness */
    z-index: -1;
    background: var(--text-light);
    border-radius: calc(var(--border-radius) - 2px);
}

@keyframes spinRainbow {
    100% {
        transform: rotate(360deg);
    }
}

.map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-places-wrapper {
    display: flex;
    flex-direction: column;
}

#slmap {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.06));
}

#slmap path {
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: var(--border-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

#slmap path:hover,
#slmap path.active {
    fill: var(--primary-color);
    transform: translateY(-3px);
}

/* Tooltip for map */
.map-info-box {
    position: fixed;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 9999;
    box-shadow: var(--shadow-medium);
    white-space: nowrap;
}

/* Map Layout Card Adjustments for Desktop */
#dynamic-places-container .related-card {
    padding: 10px;
    gap: 15px;
    border-radius: 8px;
}

#dynamic-places-container .related-img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
}

#dynamic-places-container .related-title {
    font-size: 1rem;
    margin-bottom: 4px;
}

#dynamic-places-container .related-excerpt {
    font-size: 0.75rem !important;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Scrollbar for places list */
.top-places-list::-webkit-scrollbar {
    width: 6px;
}

.top-places-list::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.top-places-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.top-places-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.top-places-list {
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
    padding-bottom: 20px;
}

/* Mobile View adjustments */
@media (max-width: 991px) {
    .map-destinations-layout {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .map-wrapper {
        padding: 0;
    }

    .top-places-list {
        max-height: 400px;
        padding-right: 0 !important;
    }

    /* Mobile select details adjustments */
    #dynamic-places-container {
        padding-top: 10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #dynamic-places-container .destinations-header {
        margin-bottom: 10px !important;
    }

    #dynamic-places-container .related-card {
        padding: 6px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        margin-bottom: 0 !important;
    }

    #dynamic-places-container .related-img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

    #dynamic-places-container .related-title {
        font-size: 12px;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    #dynamic-places-container .related-excerpt {
        font-size: 10px !important;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.2;
    }

    #selected-district-title {
        font-size: 1.2rem !important;
        line-height: 1.2;
    }

    #selected-district-subtitle {
        font-size: 0.7rem !important;
    }
}

/* ==========================================
   9. REVIEWS SECTION
   ========================================== */
.reviews-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 5px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(50% - 12px);
    /* 2 cards with a 24px gap */
    background: var(--text-light);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-rating {
    color: #F59E0B;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    font-style: italic;
    flex-grow: 1;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.author-country {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1300px) {
    .reviews-slider {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 0;
    }
}

/* Write Review Button */
.write-review-container {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
}

.btn-write-review {
    border-radius: 50px;
    padding: 12px 28px;
    gap: 8px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .review-card {
        flex: 0 0 100%;
        /* Shows exactly 1 card */
        padding: 15px;
        gap: 10px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .author-name {
        font-size: 13px;
    }

    .author-country {
        font-size: 11px;
    }

    .write-review-container {
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }

    .btn-write-review {
        padding: 8px 16px !important;
        font-size: 11px !important;
        gap: 5px !important;
    }
}
