/* Ерөнхий тохиргоо */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Links рүү дарахад зөөлөн гүйх */
    /* Монгол фонтыг илүү гоё харагдуулахын тулд Montserrat нэмэв */
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f4f4;
    overflow-x: hidden; /* Хөндлөн scroll үүсэхээс сэргийлнэ */
}

/* Текст сонгох үеийн өнгө */
::selection {
    background: #FF4D00;
    color: white;
}

/* Scrollbar-ын загвар */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #FF4D00;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffa47d;
}

/* Нүүр хэсгийн дэвсгэр */
.main-hero {
    height: 100vh;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    overflow: hidden; /* Slide хийх үед илүү гарсан хэсгийг нуух */
}

/* Шинээр нэмэгдэх арын зурагны гулсах зам */
.hero-bg-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out;
    z-index: 0;
}

.hero-bg-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Дээд баар */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 5%;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.4); /* Бага зэрэг бараан болгов */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 1px;
    position: relative;
    z-index: 1000;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: 0.3s;
}

.top-links a:hover {
    color: #FF4D00;
}

/* Үндсэн навигаци */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute; /* Анх абсолют байрлалтай байх ба хуудастай цуг дээшлэнэ */
    width: 100%;
    top: 45px; /* Top bar-ны доор байрлана */
    z-index: 1000;
    transition: all 0.4s ease; /* Шилжилт */
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF4D00;
}

/* Sticky Navigation Styles (Гүйлгэх үеийн загвар) */
.main-nav.sticky {
    position: fixed; /* Гүйлгэх үед тогтмол болно */
    top: 0; /* Дээшээ наалдах */
    background-color: rgba(255, 255, 255, 0.95); /* Цагаан дэвсгэр */
    padding: 10px 5%; /* Хэмжээг бага зэрэг багасгах */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.main-nav.sticky .nav-links a {
    color: #333333; /* Хар фонт */
}

.main-nav.sticky .nav-links a:hover {
    color: #FF4D00;
}

/* Sticky үед логог багасгах */
.main-nav.sticky .logo-img {
    height: 50px;
}

.main-nav.sticky .dropdown > a::after {
    color: #333333; /* Сумны өнгийг хар болгох */
}

/* Dropdown Arrow Indicator - Нэмэх тэмдэг */
.dropdown > a::after {
    content: '+';
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(45deg); /* Хулгана очиход эргэх */
    color: #FF4D00;
}

/* Dropdown Menu Styles */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 15px); /* Доороос дээш гарч ирэх бэлтгэл, мөн голлуулах */
    transition: all 0.3s ease;
    position: absolute;
    background-color: #ffffff;
    min-width: 280px; /* Урт текстүүдэд зориулж өргөнийг нэмэв */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 50%;
    padding: 15px 0;
    border-top: 3px solid #FF4D00;
    list-style: none;
    border-radius: 0 0 6px 6px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-content li {
    margin: 0;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Тусгаарлагч зураас */
}

.dropdown-header {
    padding: 15px 25px 5px 25px;
    font-size: 11px;
    font-weight: 700;
    color: #FF4D00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content a {
    padding: 14px 25px;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #333333;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: rgba(0,0,0,0.05);
    color: #FF4D00;
    padding-left: 30px; /* Баруун тийш гулсах эффект */
    border-left-color: #FF4D00;
}

/* --- Гар утасны цэс (Mobile Menu) --- */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.main-nav.sticky .menu-toggle {
    color: #333333;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(51, 51, 51, 0.98);
        flex-direction: column;
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        margin: 0;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-nav.sticky .nav-links {
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .main-nav.sticky .nav-links a {
        color: #333;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.1);
        display: none;
        padding: 10px 0;
        min-width: 100%;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 10px 25px;
        color: white !important;
        text-align: center;
    }
    
    .main-nav.sticky .dropdown-content a {
        color: #333 !important;
    }
    
    .btn-appointment {
        display: none;
    }
}

@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding: 10px 2%;
    }
    .main-nav {
        top: 60px; /* Top-bar өндөр болох үед доошлуулах */
    }
}

/* Логоны хэсэг */
.logo-img {
    height: 60px; /* 100px хэт том байсан тул 60px болгов */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Шар товчлуур */
.btn-appointment {
    background-color: #FF4D00;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
}

.btn-appointment:hover {
    background-color: #333333;
    background-color: #ff7d45;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.4);
}

/* Төв хэсэг ба Гарчиг */
.hero-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 2; /* Арын зурагны дээр гаргах */
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-content h1 {
    font-size: clamp(28px, 6vw, 50px); /* Дэлгэцийн хэмжээнээс хамаарч автоматаар томорч жижгэрнэ */
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    line-height: 1.2;
}

.hero-content p {
    max-width: 700px; /* Текстийн хамгийн их өргөнийг хязгаарлах */
    margin-left: auto; /* Голлуулах */
    margin-right: auto; /* Голлуулах */
    line-height: 1.6; /* Мөр хоорондын зайг уншихад эвтэйхэн болгох */
}

/* Текст гарч ирэх анимейшн */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-text {
    animation: fadeInUp 1s ease-out forwards;
}

/* Ногоон товчлуур */
.btn-discover {
    background-color: #ff4d00;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-discover:hover {
    background-color: #333333;
    background-color: #ff7d45;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Слайдерын цэгүүд - ЗАСВАР ОРУУЛАВ */
.slider-dots {
    margin-top: 40px; /* -100px байсныг ингэж засав */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background-color: #FF4D00;
    width: 30px; /* Идэвхтэй үед урт болж харагдана */
    border-radius: 10px;
}

/* Хажуугийн сумнууд */

/* Энэ хэсгийг CSS файлынхаа хамгийн доор хуулж тавиарай */

.tours-section {
    padding: 80px 0; /* Хажуугийн зайг арилгаж дэлгэц дүүрэн болгох */
    background-color: #ffffff; /* Цагаан дэвсгэр */
    text-align: center;
    clear: both; /* Бусад элементээс тусгаарлах */
}

.tours-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Хажуу тийш гүйлгэхийн тулд илүү гарсан хэсгийг нуух */
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #FF4D00;
    display: block;
    padding: 0 20px; /* Гарчигт зай өгөх */
}

.tours-container {
    display: flex; /* Картуудыг хажуу хажууд нь өрөх */
    gap: 30px;
    margin-top: 30px;
    padding: 0 30px; /* Картуудын эхлэл төгсгөлд зай өгөх */
    transition: transform 0.6s ease-in-out; /* Гулсах эффектийг нэмэх */
}

.tour-card {
    flex-shrink: 0; /* Картуудыг жижгэрэхээс сэргийлнэ */
    background: white;
    width: 350px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tour-img {
    height: 220px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}
.tour-overlay-top {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: flex-end; /* Rating-г хассан тул баруун талд байрлуулна */
    padding: 12px 15px;
    color: white;
    font-size: 11px;
    font-weight: 500;
}

.tour-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Үлдсэн зайг дүүргэнэ */
}

.tour-info h3 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    margin-bottom: 4px;
}

.tour-tags {
    font-size: 11px;
    color: #888;
    margin-bottom: 12px;
}

.tour-card .tour-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.tour-card .tour-tags {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    min-height: 63px;
    margin-bottom: 15px;
}

.tour-card .btn-small {
    margin-top: auto; /* auto-г устгаснаар бүх картын товч нэг түвшинд зэрэгцэнэ */
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}

/* Ногоон хямдралын тэмдэг */
.sale-tag {
    background: #00875a;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px; 
    font-weight: 800;
    display: inline-block;
    margin-bottom: 12px;
}

/* Үнийн хэсэг */
.price-container {
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    background-color: #fff8f2; /* Цайвар улбар шар дэвсгэр */
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ffe8d6;
    justify-content: center; /* Үнийг голлуулах */
    margin-top: auto; /* Үлдсэн зайг дүүргэж, доод хэсгийг хамтад нь ёроол руу шахах */
}

.price-from {
        font-size: 11px;
    color: #FF4D00;
 text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-val {
    font-size: 26px;
    font-weight: 800;
    color: #333;
}

.per-person {
    font-size: 12px;
    color: #666;
}

.tour-date, .found-time {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 2px;
}

/* Хуваагч шугам */
.card-divider {
    border: 0;
    border-top: 1px solid #f5f5f5;
    margin: 15px 0;
}

.tour-footer-desc {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Tour Region Badge Styles */
.tour-region-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.tour-region-badge.gobi { background-color: #f39c12; }
.tour-region-badge.taiga { background-color: #27ae60; }
.tour-region-badge.altai { background-color: #2c3e50; }
.tour-region-badge.steppe { background-color: #8e44ad; }

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: #333333;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-small:hover {
    background-color: #FF4D00;
    color: #333333 !important;
    background-color: #ff7d45;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
}

/* Slider Arrows - Сумнуудыг дээр гаргах тохиргоо */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 999; /* Хамгийн дээд давхаргад гаргана */
    pointer-events: none; /* Дунд хэсгийн товчлуур дарахад саад болохгүй */
}

.arrow {
    color: white;
    font-size: 45px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3); /* Ард нь бүдэг дугуй дэвсгэр өгөх */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    pointer-events: auto; /* Сум өөрөө дарагдах боломжтой */
    user-select: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.6);
    color: #FF4D00;
    color: #ff7d45;
    transform: scale(1.1);
}

.tour-arrow {
    position: absolute;
    top: 45%; /* Зургийн голд тааруулах */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
}

.tour-arrow:hover {
    background: #FF4D00;
    background: #ff7d45;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.tours-slider-wrapper:hover .tour-arrow {
    opacity: 1;
    visibility: visible;
}

.tour-arrow.prev {
    left: 20px;
}

.tour-arrow.next {
    right: 20px;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background-color: #333333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
}

.btn-view-all:hover {
    background-color: #FF4D00;
    color: #333333;
    background-color: #ff7d45;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
}

/* Modern 4 Realms Section for Home Page */
.realms-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}
.realms-section .tm-header {
    padding: 0 5%;
}
.realms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0;
}
.realm-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s ease;
}
.realm-card:hover {
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.15);
    z-index: 1;
}
.realm-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.realm-card:hover .realm-bg {
    transform: scale(1.08);
}
.realm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: background 0.4s ease;
}
.realm-card:hover .realm-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.2) 100%);
}
.realm-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: #FF4D00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.realm-overlay h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    transition: margin-bottom 0.4s ease;
}
.realm-card:hover .realm-overlay h3 {
    margin-bottom: 15px;
}
.realm-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    will-change: max-height, opacity, transform;
    transition: max-height 0.5s ease, opacity 0.35s ease, transform 0.5s ease;
}
.realm-card:hover .realm-hover-content {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}
.realm-overlay p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 15px;
}
.realm-btn {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.realm-btn i {
    color: #FF4D00;
    transition: transform 0.3s ease;
}
.realm-card:hover .realm-btn i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .realms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .realm-card {
        aspect-ratio: 4/3;
    }
}
@media (max-width: 600px) {
    .realms-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features-section {
    position: relative;
    padding: 100px 5%;
    background-color: #ff4d00;
    text-align: center;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/logo-mark-icon.svg') right bottom/1200px no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.features-section > * {
    position: relative;
    z-index: 1;
}

.features-section .section-title {
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Шинэ өнгөлөг айкон загвар */
.feature-icon-box {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 
    all 0.3s ease;
    position: relative;
}

.feature-icon-box i {
    font-size: 32px;
    color: #FF4D00;
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Өнгөний хувилбарууд */
.icon-teal {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border: 4px solid #ffffff;
}

.icon-gold {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border: 4px solid #ff4d0025;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    max-width: 250px;
    font-weight: 500;
}

/* Mobile Responsive for Features */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* --- About Page Styles --- */

.about-hero {
    height: 60vh; /* Нүүр хуудаснаас намхан */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1200&q=80');
    background-position: center;
    background-size: cover;
}

.tm-hero {
    height: 80vh;
    min-height: 600px;
}
.tm-hero .hero-content {
    padding-top: 60px; /* Цэсний цаагуур орохоос сэргийлэх */
}

.about-section {
    padding: 100px 10%;
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 25px;
    position: relative;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-masonry {
    flex: 1.2;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 40px; /* Space for the staggered items */
}

.team-member-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    height: 300px; /* Fixed height for uniformity in grid cells */
}

.team-member-card:nth-child(even) {
    transform: translateY(40px); /* Stagger effect */
}

.team-member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover img {
    transform: scale(1.05);
}

.member-name {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF4D00;
    color: #333333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
}

/* Language Switcher */
.lang-switch {
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    font-weight: bold;
    color: white;
}
.lang-switch span {
    padding: 0 5px;
    opacity: 0.7;
    transition: 0.3s;
}
.lang-switch span:hover, .lang-switch span.active {
    opacity: 1;
    color: #FF4D00;
}

/* Footer Styles */
.main-footer {
    background-color: #111111; /* Хар саарлаас гүн хөх саарал руу */
    color: #ecf0f1;
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 5%;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #FF4D00;
    font-size: 14px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.footer-col ul li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FF4D00;
    padding-left: 5px;
}

.footer-col ul li i[class*="fa-"] {
    color: #FF4D00;
    width: 16px;
    margin-right: 10px;
    text-align: center;
    margin-top: 3px; /* Align icon better with text */
}

.footer-logo{
scale: 1.1;
margin-left: 15px;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    letter-spacing: -1px;
}

.footer-desc {
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF4D00;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 5% 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 12px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #FF4D00;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul li a:hover {
        padding-left: 0;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .legal-links a {
        margin: 0 10px;
    }
}

/* Quiz Section - Find Your Ideal Expedition */
.quiz-section {
    padding: 120px 5%;
    /* Бараан дэвсгэр зураг + Parallax эффект */
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0)), url('https://correctmongolia.com/wp-content/uploads/2025/04/Terelj-National-Park-Mongolia.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    position: relative;
}

.quiz-section .section-title {
    color: #FF4D00;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.quiz-intro {
    font-size: 18px;
    margin-bottom: 45px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-quiz {
    display: inline-block;
    padding: 18px 50px;
    background-color: #FF4D00;
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-quiz:hover {
    background-color: white;
    color: #333333;
    background-color: #ff7d45;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Map Section */
.map-section {
    position: relative;
    padding: 88px 5%;
    background:
        radial-gradient(circle at top left, rgba(255, 77, 0, 0.08) 0%, transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #f4efe8 100%);
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    inset: 24px 5% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31, 45, 71, 0.16), transparent);
}

.map-section-intro {
    max-width: 760px;
    margin: 14px auto 0;
    text-align: center;
    color: #5f6572;
    font-size: 15px;
    line-height: 1.75;
}

.map-container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.78fr);
    align-items: start;
    gap: 34px;
    margin-top: 34px;
}

.map-visual {
    --map-frame-padding: 24px;
    position: sticky;
    top: 92px;
    padding: var(--map-frame-padding);
    border-radius: 28px;
    background: linear-gradient(135deg, #fbf7f2 0%, #ffffff 100%);
    border: 1px solid rgba(31, 45, 71, 0.08);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
    z-index: 10;
    overflow: hidden;
}

.map-visual::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px dashed rgba(31, 45, 71, 0.12);
    pointer-events: none;
}

.map-visual svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 26px rgba(15, 23, 42, 0.10));
    overflow: visible;
}

.map-visual .s0 { fill: #bdb2a6; transition: 0.3s; }
.map-visual .s1 { fill: #d86a2b; transition: 0.3s; }
.map-visual .s2 { fill: #688a61; transition: 0.3s; }
.map-visual .s3 { fill: #7b5b43; transition: 0.3s; }
.map-visual .s4 { fill: #5a7f9d; transition: 0.3s; }

.map-visual path {
    transition: all 0.35s ease;
    transform-box: fill-box;
    transform-origin: center;
    stroke: #ffffff;
    stroke-width: 2.5px;
    cursor: pointer;
}

.map-visual path.active-region {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.24));
    z-index: 10;
}

.map-badges {
    position: absolute;
    inset: var(--map-frame-padding);
    z-index: 3;
    pointer-events: none;
}

.map-badge {
    --badge-color: #d86a2b;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--badge-color), rgba(31, 45, 71, 0.95));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
    cursor: pointer;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform: translate(-50%, -50%);
}

.map-badge i,
.region-icon i,
.map-badge svg,
.region-icon svg,
.map-badge img,
.region-icon img {
    line-height: 1;
    display: block;
}

.map-badge i,
.map-badge svg,
.map-badge img {
    font-size: 19px;
    width: 36px;
    height: 36px;
}

.region-icon svg,
.region-icon img {
    width: 24px;
    height: 24px;
}

.badge-icon-image,
.region-icon-image {
    object-fit: contain;
    pointer-events: none;
}

.badge-icon-image {
    transform: scale(1.08);
    transform-origin: center;
}

.map-badge:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.28);
}

.badge-south { top: 69%; left: 53%; --badge-color: #d86a2b; }
.badge-north { top: 30%; left: 43%; --badge-color: #688a61; }
.badge-west  { top: 40%; left: 20%; --badge-color: #7b5b43; }
.badge-east  { top: 43%; left: 78%; --badge-color: #5a7f9d; }

.map-visual-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.map-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 228px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 77, 0, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, #FF4D00 0%, #ff6a2a 100%);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 77, 0, 0.28);
}

.map-view-all-btn span {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.map-view-all-btn:hover {
    background: linear-gradient(135deg, #ff5f1f 0%, #FF4D00 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 77, 0, 0.34);
}

.map-view-all-btn:hover span {
    transform: translateX(3px);
}

.map-info {
    width: 100%;
    max-width: 410px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modern-region-card {
    --region-accent: #d86a2b;
    --region-deep: #9e461d;
    --region-soft: rgba(216, 106, 43, 0.12);
    --region-glow: rgba(216, 106, 43, 0.16);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ee 100%);
    border: 1px solid rgba(31, 45, 71, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.modern-region-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--region-accent), rgba(255, 255, 255, 0.92));
}

.modern-region-card::after {
    content: '';
    position: absolute;
    top: -48px;
    right: -24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--region-glow) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.modern-region-card:hover,
.modern-region-card.active {
    transform: translateX(-4px);
    border-color: rgba(31, 45, 71, 0.12);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.card-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 14px;
    cursor: pointer;
}

.region-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: linear-gradient(135deg, var(--region-accent), var(--region-deep));
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.card-header-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.region-subtitle {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--region-accent);
}

.region-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #243047;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 45, 71, 0.08);
}

.region-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    color: #1f2d47;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.region-preview {
    margin: 0;
    color: #616b79;
    font-size: 13px;
    line-height: 1.55;
    max-width: 28ch;
}

.card-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.25s ease;
}

.modern-region-card.active .card-body {
    opacity: 1;
}

.card-body-inner {
    padding: 0 18px 18px 76px;
    border-top: 1px solid rgba(31, 45, 71, 0.08);
    margin-top: 4px;
}

.modern-region-card .toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--region-accent);
    border: 1px solid rgba(31, 45, 71, 0.10);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.modern-region-card.active .toggle-icon {
    transform: rotate(45deg);
    background: var(--region-accent);
    color: #fff;
}

.card-body p {
    font-size: 13px;
    color: #4f5868;
    line-height: 1.68;
    margin: 0 0 12px;
}

.region-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 45, 71, 0.10);
    background: #fff;
    color: #1f2d47;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.region-link:hover {
    transform: translateX(4px);
    color: var(--region-accent);
    border-color: rgba(31, 45, 71, 0.18);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.region-south { --region-accent: #d86a2b; --region-deep: #9e461d; --region-soft: rgba(216, 106, 43, 0.12); --region-glow: rgba(216, 106, 43, 0.16); }
.region-north { --region-accent: #688a61; --region-deep: #406446; --region-soft: rgba(104, 138, 97, 0.12); --region-glow: rgba(104, 138, 97, 0.16); }
.region-west { --region-accent: #7b5b43; --region-deep: #57402f; --region-soft: rgba(123, 91, 67, 0.12); --region-glow: rgba(123, 91, 67, 0.16); }
.region-east { --region-accent: #5a7f9d; --region-deep: #3c5f79; --region-soft: rgba(90, 127, 157, 0.12); --region-glow: rgba(90, 127, 157, 0.16); }

@media (max-width: 1100px) {
    .map-container {
        grid-template-columns: 1fr;
    }

    .map-visual {
        position: relative;
        top: 0;
    }

    .map-info {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .map-section {
        padding: 72px 5%;
    }

    .map-visual {
        --map-frame-padding: 14px;
        padding: var(--map-frame-padding);
    }

    .map-badge {
        width: 30px;
        height: 30px;
    }

    .map-badge i,
    .map-badge svg,
    .map-badge img {
        width: 20px;
        height: 20px;
    }

    .card-header {
        grid-template-columns: 1fr auto;
    }

    .region-icon {
        display: none;
    }

    .card-body-inner {
        padding: 0 16px 16px;
    }
}

/* Team Section */
.team-section {
    padding: 100px 5%;
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0)), url('images/team-BKG.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-bottom: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: #FF4D00;
}

.team-card h3 {
    font-size: 16px;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Testimonials Section (Stories from the Field) */
.testimonials-section {
    padding: 100px 5%;
    background-color: #ffffff;
    text-align: center;
}

.testimonials-masonry {
    column-count: 3; /* 3 баганаар харагдана */
    column-gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: left;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px; /* Доод талын зай */
    break-inside: avoid; /* Карт багана дунд хуваагдахаас сэргийлнэ */
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.quote-icon {
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: #FF4D00;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-text {
    font-family: 'Georgia', serif; /* Editorial style */
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FF4D00;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .testimonials-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .testimonials-masonry {
        column-count: 1;
    }
}

/* Stories Section (New Layout) */
.stories-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.stories-text {
    flex: 1;
    min-width: 300px;
}

.stories-text h2 {
    font-size: 36px;
    color: #333333;
    margin-bottom: 25px;
    font-weight: 800;
}

.stories-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.stories-masonry {
    width: 100%;
    column-count: 4;
    column-gap: 20px;
    padding-bottom: 40px;
}

.stories-masonry .team-member-card {
    height: auto; /* Зургийн өндрөөр автоматаар тохируулах */
    margin-bottom: 20px;
    break-inside: avoid; /* Багана дунд хуваагдахаас сэргийлэх */
    display: inline-block; /* Column layout-д зөв харагдуулах */
    width: 100%;
    transform: none !important; /* Grid stagger эффектийг арилгах */
}

@media (max-width: 900px) {
    .stories-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .stories-masonry {
        column-count: 1;
    }
}

/* Expedition Insights Section */
.insights-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #FF4D00 0%, #ff4d00 60%, #ff4d00 100%);
    text-align: center;
}

.home-info-shell,
.home-faq-shell {
    max-width: 1240px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 26px;
    align-items: start;
    text-align: left;
}

.home-section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffb38f;
}

.home-info-intro,
.faq-side-intro {
    border-radius: 24px;
    padding: 30px;
}

.home-info-intro {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.insights-section .section-title,
.faq-side-intro .section-title {
    color: #ffffff;
    text-align: left;
    margin-bottom: 12px;
}

.home-info-intro p,
.faq-side-intro p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
    font-size: 15px;
}

.home-info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.home-info-pills span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.insights-wrapper {
    max-width: none;
    margin: 0;
    text-align: left;
}

.insight-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 45, 71, 0.08);
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15,23,42,0.16);
}

.insight-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: transparent;
}

.insight-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.insight-number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1e8;
    color: #FF4D00;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.insight-header h3 {
    font-size: 18px;
    color: #1f2d47;
    font-weight: 700;
    margin: 0;
}

.toggle-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3eb;
    font-size: 24px;
    color: #FF4D00;
    font-weight: 300;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.insight-card.active .toggle-icon {
    transform: rotate(45deg);
    background: #FF4D00;
    color: #ffffff;
}

.insight-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: transparent;
}

.insight-body p {
    padding: 0 24px 24px 72px;
    color: #5f6572;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Newsletter / Lead Magnet Section */
.newsletter-section {
    padding: 80px 5%;
    background-color: #333333;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-section .section-title {
    margin-bottom: 15px; /* Гарчиг болон дэд текстийн зайг багасгах */
}

.newsletter-subtext {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 15px 25px;
    border-radius: 30px;
    border: none;
    outline: none;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    font-size: 14px;
}

.btn-download {
    padding: 15px 40px;
    background-color: #FF4D00;
    color: #333333;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.btn-download:hover {
    background-color: white;
    background-color: #ff7d45;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    height: 70vh; /* Дэлгэцийн өндрийн 70% */
    min-height: 500px;
    /* Cinematic Background Image */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.final-cta-content {
    max-width: 900px;
    padding: 0 20px;
}

.final-cta-content h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 50px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: #FF4D00;
    color: #333333;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.3);
}

.btn-cta-primary:hover {
    background-color: white;
    background-color: #ff7d45;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 43px; /* Хүрээний хэмжээг тооцож багасгав */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-secondary:hover {
    background-color: white;
    color: #333333;
    background-color: #ff7d45;
    color: white;
    border-color: #ff7d45;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #fffdf9 0%, #f5f7fa 100%);
    text-align: center;
}

.faq-side-intro {
    background: linear-gradient(160deg, #ff4d00 0%, #ffa680 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.faq-side-intro .btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

.faq-wrapper {
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.faq-card {
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 45, 71, 0.08);
}

.faq-card:hover, .faq-card.active {
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.09);
    border-color: rgba(255, 77, 0, 0.2);
}

.faq-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-header h3 {
    font-size: 18px;
    color: #1f2d47;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}

.faq-card.active .toggle-icon {
    transform: rotate(45deg);
    background: #FF4D00;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 77, 0, 0.3);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: transparent;
}

.faq-body-content {
    padding: 0 24px 24px 24px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.faq-body p {
    padding: 0 24px 24px 24px;
    color: #5f6572;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 980px) {
    .home-info-shell,
    .home-faq-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-header h3,
    .insight-header h3 {
        font-size: 16px;
    }

    .insight-header,
    .faq-header {
        padding: 18px 18px;
    }

    .insight-body p,
    .faq-body p {
        padding-left: 18px;
        padding-right: 18px;
    }

    .insight-title-group {
        align-items: flex-start;
    }
}

/* ==========================================================================
   QUOTE PAGE STYLES
   ========================================================================== */

.quote-hero {
    height: 50vh;
    min-height: 500px;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-trust-badges span {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trust-badges i {
    color: #FF4D00;
    margin-right: 5px;
}

.quote-section {
    padding: 80px 5%;
    background-color: #f4f7f6; /* Very light cool gray for contrast */
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
}

.form-card-title {
    font-size: 20px;
    color: #FF4D00;
    margin-bottom: 25px;
    font-weight: 800;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.half-width {
    flex: 1;
}

.form-label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-helper-text {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    line-height: 1.5;
}

.form-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #FF4D00;
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
    background-color: #fff;
}

/* Утасны дугаар болон улсын кодын хэсэг */
.phone-input-group {
    width: 100%;
}

.phone-input-group .iti {
    position: relative;
}

.phone-input-group .iti input {
    min-height: 50px;
}

/* intl-tel-input Plugin Styles */
.iti {
    width: 100%;
}
.iti__flag-container {
    z-index: 10;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Custom Radio Buttons */
.radio-group {
    display: flex;
    gap: 15px;
}

.row-group {
    flex-wrap: wrap;
}

.col-group {
    flex-direction: column;
    gap: 10px;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
}

.custom-radio input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    display: grid;
    place-content: center;
    transition: all 0.2s ease;
}

.custom-radio input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s transform ease-in-out;
    box-shadow: inset 1em 1em #FF4D00;
}

.custom-radio input[type="radio"]:checked {
    border-color: #FF4D00;
}

.custom-radio input[type="radio"]:checked::before {
    transform: scale(1);
}

.custom-radio:hover input[type="radio"] {
    border-color: #FF4D00;
}

.custom-radio:hover span {
    color: #333;
}

/* Trust Message Box */
.trust-message-box {
    background: #fff8f2;
    border-left: 4px solid #FF4D00;
    padding: 30px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}

.trust-message-box h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.trust-message-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.trust-message-box ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 5px;
}

.trust-message-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.trust-message-box ul li::before {
    content: "•";
    color: #FF4D00;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -4px;
}

.trust-highlight {
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 0 !important;
}

/* Form Submit Area */
.form-submit-section {
    text-align: center;
}

.btn-submit-quote {
    background-color: #FF4D00;
    color: #ffffff;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.btn-submit-quote:hover {
    background-color: #333333;
    background-color: #ff7d45;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(51, 51, 51, 0.4);
}

.privacy-micro-text {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.privacy-micro-text i {
    margin-right: 5px;
}

/* Mobile Responsive for Quote Form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-card {
        padding: 25px 20px;
    }
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-trust-badges span {
        width: 100%;
        text-align: left;
    }
}

/* ==========================================================================
   FULL FAQ PAGE STYLES (faq.html)
   ========================================================================== */

.faq-page-wrapper {
    padding: 80px 5%;
    background-color: #f4f7f6;
}

.faq-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Sidebar-г дээд талд наалдуулах */
}

.faq-sidebar {
    width: 320px;
    position: sticky;
    top: 100px; /* Header-ийн доор гацах зай */
    flex-shrink: 0;
}

.faq-nav-list {
    list-style: none;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
}

.faq-nav-link {
    display: block;
    padding: 15px 30px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-nav-link:hover, .faq-nav-link.active {
    background-color: #fff8f2;
    color: #FF4D00;
    border-left-color: #FF4D00;
}

.sidebar-help-box {
    margin-top: 30px;
    background: #333333;
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.sidebar-help-box h4 {
    color: #FF4D00;
    margin-bottom: 10px;
    font-size: 18px;
}

.sidebar-help-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #ddd;
}

.faq-main-content {
    flex: 1;
}

.faq-category-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px; /* Link-ээр очиход header-т дарагдахаас сэргийлэх */
}

.faq-category-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 800;
    border-bottom: 2px solid #FF4D00;
    padding-bottom: 10px;
    display: inline-block;
}

.faq-list {
    padding-left: 20px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.faq-list li {
    margin-bottom: 5px;
}

@media (max-width: 900px) {
    .faq-page-container {
        flex-direction: column;
    }
    .faq-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
}

/* ==========================================================================
   EXPEDITIONS PAGE STYLES (Filters & Grids)
   ========================================================================== */

.expeditions-page-wrapper {
    padding: 80px 5%;
    background-color: #fcfcfc;
}

.expedition-filters-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-controls .form-input {
    width: auto;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-radius: 30px;
    background-color: #f4f4f4;
    border-color: #e0e0e0;
}

.filter-header h3 {
    font-size: 18px;
    color: #222;
    font-weight: 800;
    margin: 0;
}

.filter-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.filter-title-wrapper h3 {
    transition: color 0.3s ease;
}

.filter-title-wrapper:hover h3 {
    color: #FF4D00;
}

#filter-toggle-icon {
    transition: transform 0.3s ease;
    color: #FF4D00;
    font-size: 18px;
}

.btn-reset {
    background: transparent;
    border: 1px solid #ccc;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}
.btn-reset:hover {
    background: #f0f0f0;
    border-color: #aaa;
    color: #333;
}
.btn-recommend {
    background: linear-gradient(135deg, #FF4D00, #f39c12);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(255, 77, 0, 0.3);
}

.btn-recommend:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 77, 0, 0.5);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s ease-out;
    max-height: 1000px;
    opacity: 1;
    overflow: hidden;
    padding: 25px 30px;
}

.filter-options.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-label {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    min-width: 70px;
}

.filter-btn {
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover {
    background: #e9e9e9;
    border-color: #ccc;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #FF4D00;
    color: white;
    border-color: #FF4D00;
    box-shadow: 0 3px 10px rgba(255, 77, 0, 0.25);
}

/* Regions blocks */
.region-block {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.region-header {
    margin-bottom: 30px;
    border-left: 4px solid #FF4D00;
    padding-left: 20px;
}

.region-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.region-badge {
    padding: 4px 12px;
    border-radius: 4px;
    color: #FF4D00;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region-header h2 {
    font-size: 28px;
    color: #333;
    font-weight: 800;
    margin: 0;
}

.region-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    align-items: stretch; /* Картуудын өндрийг эгнээ тус бүрт ижил байлгах */
}

.tours-grid .tour-card {
    width: 100%; /* Override slider fixed width */
    margin: 0;
}

.small-btn {
    padding: 10px 20px; 
    width: 100%; 
    text-align: center;
    font-size: 11px;
}

.icon-dark { background-color: #333333; }
.icon-blue { background-color: #3498db; }

.hidden-card {
    display: none !important;
}


.product-main-content p, .product-main-content .bullet-list, .day-by-day-accordion .accordion-body p {
    font-family: 'Georgia', serif;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}


/* Product Detail Page Specific Styles */
.product-hero {
    position: relative;
    height: 62vh;
    min-height: 460px;
}

.product-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 77, 0, 0.22) 100%);
    pointer-events: none;
}

.product-hero .hero-content {
    top: auto;
    left: 5%;
    bottom: 34px;
    transform: none;
    width: min(760px, 72vw);
    padding: 24px 28px;
    text-align: left;
    background: rgba(255, 255, 255, 0.192);
    border-left: 4px solid #FF4D00;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(255, 77, 0, 0.10);
    z-index: 2;
}

.product-hero .hero-content h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 0.98;
    margin-bottom: 10px;
    letter-spacing: -0.04em;
    color: #FF4D00;
}

.product-hero .hero-content p {
    max-width: 680px;
    margin: 0;
    font-size: 17px !important;
    line-height: 1.75;
    color: #ffffff;
}

/* Floating Price Badge on Hero */
.hero-price-badge {
    position: absolute;
    right: 5%;
    bottom: 34px;
    padding: 14px 18px;
    border-radius: 16px;
    text-align: left;
    background: hsla(0, 0%, 0%, 0.5);
    border: 1px solid rgba(255, 77, 0, 0.16);
    box-shadow: 0 12px 26px rgba(255, 77, 0, 0.08);
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-price-badge .price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 77, 0, 0.72);
    display: block;
    margin-bottom: 5px;
}

.hero-price-badge .price-value {
    font-size: 30px;
    font-weight: 800;
    color: #FF4D00;
    line-height: 1;
    text-shadow: none;
}

.hero-price-badge .price-unit {
    font-size: 13px;
    color: #7a6053;
    margin-left: 5px;
    font-weight: 500;
}

.product-detail-section {
    padding: 48px 4% 90px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
}

.product-detail-container {
    max-width: 1340px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

.product-main-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.product-main-content > .intro-text,
.product-main-content > .quick-facts-box,
.product-main-content > .section-block {
    grid-column: 1 / -1;
    grid-row: auto;
}

.product-main-content > .intro-text {
    margin-bottom: 0;
}

.product-main-content .intro-text {
    position: relative;
    font-size: 18px;
    line-height: 1.85;
    color: #5d4a40;
    margin-bottom: 0;
    font-style: italic;
    padding: 28px 28px 28px 34px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(255, 77, 0, 0.12);
    box-shadow: 0 14px 30px rgba(255, 77, 0, 0.05);
}

.product-main-content .intro-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: #FF4D00;
}

.section-block {
    margin-bottom: 0;
    padding: 30px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(255, 77, 0, 0.12);
    box-shadow: 0 16px 34px rgba(255, 77, 0, 0.05);
}

.section-block h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: #FF4D00;
    margin-bottom: 20px;
    border: none;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 77, 0, 0.08);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-block h2::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF4D00;
}

.section-block > p {
    position: relative;
    margin: 0 0 14px;
    padding: 16px 18px 16px 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f6 100%);
    border: 1px solid rgba(255, 77, 0, 0.10);
    box-shadow: 0 8px 18px rgba(255, 77, 0, 0.04);
}

.section-block > p::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF4D00;
    box-shadow: 0 0 0 6px rgba(255, 77, 0, 0.10);
}

.section-block > p:first-of-type {
    font-size: 18px;
    line-height: 1.85;
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.08) 0%, #ffffff 90%);
    border-color: rgba(255, 77, 0, 0.16);
}

.section-block > p:last-of-type {
    margin-bottom: 0;
}

.section-block > .bullet-list {
    list-style: none;
    margin-left: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.section-block > .bullet-list li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
    border: 1px solid rgba(255, 77, 0, 0.10);
    box-shadow: 0 8px 18px rgba(255, 77, 0, 0.04);
}

.section-block > .bullet-list li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 12px;
    color: #FF4D00;
    font-size: 16px;
    line-height: 1;
}

/* Quick Facts Box */
.quick-facts-box {
    position: relative;
    top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
    border: 1px solid rgba(255, 77, 0, 0.14);
    border-top: 4px solid #FF4D00;
    padding: 26px;
    border-radius: 20px;
    margin-bottom: 0;
    box-shadow: 0 16px 32px rgba(255, 77, 0, 0.06);
}

.quick-facts-box h3 {
    font-size: 22px;
    color: #FF4D00;
    margin-bottom: 20px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255, 77, 0, 0.12);
    padding-bottom: 12px;
}

.quick-facts-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.quick-facts-box ul li {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 14px;
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255, 77, 0, 0.10);
    min-height: 74px;
}

.quick-facts-box ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 77, 0, 0.08);
}

.fact-icon {
    background: rgba(255, 77, 0, 0.10);
    color: #FF4D00;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.fact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.fact-label {
    font-size: 10px;
    color: #8a7367;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.fact-value {
    font-size: 14px;
    color: #3c312b;
    font-weight: 700;
    margin-top: 4px;
    line-height: 1.45;
}

.quick-facts-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 0;
}

.quick-facts-cta .btn-discover,
.quick-facts-cta .btn-appointment {
    flex: 1 1 220px;
    padding: 12px 16px;
    font-size: 12px;
    border-radius: 999px;
    text-align: center;
}

.quick-facts-cta .btn-discover {
    background: #FF4D00;
    color: #ffffff;
}

.quick-facts-cta .btn-appointment {
    background: #ffffff;
    color: #FF4D00;
    border: 1px solid rgba(255, 77, 0, 0.18);
}

/* Highlights List */
.highlights-list {
    list-style: none;
    padding: 4px 0 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.highlights-list li {
    position: relative;
    min-height: 210px;
    display: block;
    padding: 118px 16px 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #4d3c34;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(255, 77, 0, 0.06);
    border: 1px solid rgba(255, 77, 0, 0.12);
    margin-bottom: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlights-list li::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 96px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.highlights-list li::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 96px;
    background: rgba(255, 255, 255, 0);
}

.highlights-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(255, 77, 0, 0.10);
    border-color: rgba(255, 77, 0, 0.18);
}

.highlights-list li:nth-child(1) {
    background: linear-gradient(180deg, #ffffff 0%, #fff5ef 100%);
}

.highlights-list li:nth-child(2) {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f5 100%);
}

.highlights-list li:nth-child(3) {
    background: linear-gradient(180deg, #ffffff 0%, #fff4ed 100%);
}

.highlights-list li:nth-child(4) {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
}

.highlights-list li:nth-child(5) {
    background: linear-gradient(180deg, #ffffff 0%, #fff6f0 100%);
}

.highlights-list li:nth-child(6) {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f4 100%);
}

.highlights-list li:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?auto=format&fit=crop&w=900&q=80');
}

.highlights-list li:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80');
}

.highlights-list li:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80');
}

.highlights-list li:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80');
}

.highlights-list li:nth-child(5)::before {
    background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=900&q=80');
}

.highlights-list li:nth-child(6)::before {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80');
}

.highlights-list li span {
    display: none;
}

/* Day-by-Day Accordion */
.day-by-day-accordion {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 28px;
    counter-reset: expedition-days;
}

.day-by-day-accordion::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 77, 0, 0.16) 0%, #FF4D00 50%, rgba(255, 77, 0, 0.16) 100%);
}

.day-by-day-accordion .accordion-item {
    counter-increment: expedition-days;
    position: relative;
    margin-left: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
    border: 1px solid rgba(255, 77, 0, 0.12);
    border-radius: 18px;
    margin-bottom: 0;
    overflow: visible;
    box-shadow: 0 10px 22px rgba(255, 77, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.day-by-day-accordion .accordion-item::before {
    content: counter(expedition-days, decimal-leading-zero);
    position: absolute;
    left: -40px;
    top: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FF4D00;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(255, 77, 0, 0.16);
    z-index: 2;
}

.day-by-day-accordion .accordion-item::after {
    content: 'DAY';
    position: absolute;
    left: 18px;
    top: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255, 77, 0, 0.72);
}

.day-by-day-accordion .accordion-item:hover {
    box-shadow: 0 16px 30px rgba(255, 77, 0, 0.09);
    transform: translateY(-3px);
    border-color: rgba(255, 77, 0, 0.18);
}

.day-by-day-accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 30px 20px 18px;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s ease;
}

.day-by-day-accordion .accordion-header:hover {
    background: rgba(255, 77, 0, 0.04);
}

.day-by-day-accordion .accordion-item.active {
    box-shadow: 0 18px 34px rgba(255, 77, 0, 0.12);
    border-color: rgba(255, 77, 0, 0.22);
}

.day-by-day-accordion .accordion-item.active .accordion-header {
    background: rgba(255, 77, 0, 0.05);
}

.day-by-day-accordion .accordion-header h3 {
    font-size: 17px;
    color: #3f332d;
    margin: 0;
    font-weight: 700;
    line-height: 1.45;
}

.day-by-day-accordion .accordion-item.active .accordion-header h3 {
    color: #FF4D00;
}

.day-by-day-accordion .toggle-icon {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF4D00;
    border-radius: 50%;
    transition: all 0.35s ease;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(255, 77, 0, 0.16);
}

.day-by-day-accordion .accordion-item.active .toggle-icon {
    transform: rotate(45deg) scale(1.03);
}

.day-by-day-accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fffdfb;
    border-top: 1px solid rgba(255, 77, 0, 0.08);
}

.day-by-day-accordion .accordion-body > *:first-child {
    padding-top: 16px;
}

.day-by-day-accordion .accordion-body p {
    padding: 0 20px;
    margin-bottom: 12px;
}

.day-by-day-accordion .accordion-body p:last-child {
    margin: 16px 20px 20px 20px;
    padding: 14px 0 0 0;
    border-top: 1px dashed rgba(255, 77, 0, 0.16);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #6a564b !important;
}

.day-by-day-accordion .accordion-body .bullet-list {
    margin-left: 36px;
    padding-right: 20px;
    margin-bottom: 16px;
}

/* General Bullet List */
.bullet-list {
    list-style: disc;
    margin-left: 20px;
    color: #5d4a40;
    line-height: 1.75;
    font-size: 15px;
}

/* Included/Not Included Lists */
.included-list, .not-included-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.included-list li, .not-included-list li {
    font-size: 15px;
    color: #4d3c34;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff9f5;
    border: 1px solid rgba(255, 77, 0, 0.10);
}

.included-list li i,
.not-included-list li i {
    color: #FF4D00;
    margin-right: 10px;
}

/* Pricing Guidance */
.price-guidance {
    font-size: 24px;
    font-weight: 800;
    color: #FF4D00;
    margin-bottom: 10px;
}

.price-guidance strong {
    font-size: 32px;
}

.booking-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.booking-info-wrapper .section-block {
    margin-bottom: 0;
}

/* Traveler Review */
.traveler-review-block {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 77, 0, 0.12);
    text-align: left;
}

.traveler-review-block h2 {
    border-bottom: none;
    margin-bottom: 18px;
    color: #FF4D00;
}

.review-quote {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-style: italic;
    color: #4d3c34;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: #7a6053;
}

/* Final CTA on Product Page */
.final-cta-product {
    background: linear-gradient(135deg, #FF4D00 0%, #ff6a26 100%);
    padding: 48px;
    border-radius: 22px;
    text-align: center;
    color: white;
    margin-top: 10px;
    box-shadow: 0 18px 36px rgba(255, 77, 0, 0.16);
}

.final-cta-product h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 18px;
    border-bottom: none;
    padding-bottom: 0;
}

.final-cta-product p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #ffffff;
}

.final-cta-product .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta-product .btn-cta-primary,
.final-cta-product .btn-cta-secondary {
    padding: 14px 28px;
    font-size: 13px;
    border-radius: 999px;
}

.final-cta-product .btn-cta-primary {
    background: #ffffff;
    color: #FF4D00;
}

.final-cta-product .btn-cta-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for product page */
@media (max-width: 1100px) {
    .product-main-content,
    .day-by-day-accordion,
    .booking-info-wrapper {
        grid-template-columns: 1fr;
    }

    .highlights-list {
        grid-auto-flow: row;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-main-content > .intro-text,
    .product-main-content > .quick-facts-box,
    .product-main-content > .section-block {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .quick-facts-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .product-hero {
        height: auto;
        min-height: 400px;
    }

    .product-hero .hero-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 20px 18px;
    }

    .product-detail-container {
        max-width: 94vw;
    }

    .quick-facts-box,
    .section-block,
    .traveler-review-block,
    .final-cta-product,
    .product-main-content .intro-text {
        padding: 22px 18px;
    }

    .quick-facts-cta,
    .quick-facts-box ul,
    .highlights-list,
    .included-list, .not-included-list {
        grid-template-columns: 1fr;
    }

    .day-by-day-accordion .accordion-header h3 {
        font-size: 16px;
    }

    .final-cta-product {
        padding: 30px 20px;
    }

    .final-cta-product h2 {
        font-size: 24px;
    }

    .hero-price-badge {
        right: 16px;
        bottom: 16px;
        padding: 12px 14px;
    }

    .hero-price-badge .price-value {
        font-size: 24px;
    }
}

/* ==========================================================================
   DESTINATIONS PAGE STYLES (Editorial Layout)
   ========================================================================== */

.dest-nav-section {
    padding: 90px 5%;
    background: linear-gradient(180deg, #f8f5f0 0%, #f4f7f6 100%);
}

.dest-map {
    padding: 60px 5%;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
}

.dest-map .map-visual {
    max-width: 900px;
    width: 100%;
    position: relative;
    top: 0;
}

.dest-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-nav-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfaf8 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px solid #ece7e1;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dest-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-bottom-color: #FF4D00;
}

.dest-nav-card .subtitle {
    color: #FF4D00;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.dest-nav-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.dest-nav-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Editorial Region Blocks */
.region-detail-wrapper {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding-bottom: 40px;
}

.region-detail-header {
    text-align: center;
    padding: 60px 5% 40px;
    max-width: 800px;
    margin: 0 auto;
}

.region-detail-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: #222;
    font-weight: 800;
    margin-bottom: 10px;
}

.region-detail-header p {
    font-size: 18px;
    color: #FF4D00;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.editorial-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editorial-content p {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.editorial-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* Info Panels (Wildlife & Seasons) */
.info-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 5%;
    background: #fdfdfd;
    max-width: 1200px;
    margin: 0 auto 50px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.info-box h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
    border-bottom: 2px solid #FF4D00;
    padding-bottom: 8px;
    display: inline-block;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.info-box ul li i {
    color: #FF4D00;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 14px;
}

/* Featured Expeditions Grid */
.featured-exp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
}

.featured-exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.featured-exp-grid[data-marquee="true"] {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow: hidden;
    padding: 6px 2px 18px;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-exp-grid[data-marquee="true"]::-webkit-scrollbar {
    display: none;
}

.featured-exp-grid[data-marquee="true"] .tour-card {
    flex: 0 0 350px;
    width: 350px;
    margin: 0;
}

.feat-exp-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.feat-exp-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #FF4D00;
    transform: translateY(-3px);
}

.feat-exp-card h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.feat-exp-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.dest-cta-text {
    margin-top: auto;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FF4D00;
}

.region-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FF4D00;
}

.region-storyline {
    font-size: 18px;
    color: #5a5a5a !important;
    font-style: normal !important;
    line-height: 1.7;
}

.info-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.season-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 18px;
}

.season-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff8f2;
    border: 1px solid #ffe1d0;
    color: #8a4b2a;
    font-size: 12px;
    font-weight: 700;
}

.region-detail-wrapper {
    scroll-margin-top: 100px;
}

.destinations-hub-section {
    padding: 90px 5% 36px;
    background: linear-gradient(180deg, #f8f5f0 0%, #f4f7f6 100%);
}

.destinations-map-frame {
    max-width: 980px;
    margin: 0 auto;
}

.destinations-map-visual {
    position: relative;
    top: 0;
    max-width: 980px;
    margin: 0 auto;
}

.destinations-map-visual .map-badge {
    text-decoration: none;
}

.destinations-map-object {
    display: block;
    width: 100%;
    min-height: 420px;
    height: auto;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.destinations-carousel-section {
    padding: 10px 0 100px;
    background: linear-gradient(180deg, #f4f7f6 0%, #fffdf9 100%);
}

.region-marquee {
    width: 100%;
    overflow: hidden;
    padding: 6px 0 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.region-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: destinationMarquee 26s linear infinite;
}

.region-marquee:hover .region-marquee-track {
    animation-play-state: paused;
}

.region-marquee-card {
    --accent: #d86a2b;
    flex: 0 0 320px;
    width: 320px;
    padding: 24px;
    border-radius: 20px;
    text-decoration: none;
    color: #1f2d47;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
    border: 1px solid rgba(31, 45, 71, 0.08);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.region-marquee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.12);
    border-color: rgba(31, 45, 71, 0.16);
}

.region-marquee-card.is-south { --accent: #d86a2b; }
.region-marquee-card.is-north { --accent: #688a61; }
.region-marquee-card.is-west { --accent: #7b5b43; }
.region-marquee-card.is-east { --accent: #5a7f9d; }

.region-marquee-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.region-marquee-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 0 0 1px rgba(31, 45, 71, 0.08), 0 8px 18px rgba(15, 23, 42, 0.08);
}

.region-marquee-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.region-marquee-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #1f2d47;
}

.region-marquee-card p {
    margin: 0;
    color: #5f6572;
    line-height: 1.7;
    font-size: 14px;
}

.region-marquee-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

@keyframes destinationMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 900px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .editorial-grid:nth-child(even) .editorial-content {
        order: 2; /* Reverse order on mobile so text is always under image */
    }
    .editorial-grid:nth-child(even) .editorial-image {
        order: 1;
    }
    .info-panel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   TAILOR-MADE PAGE STYLES (Luxury Layout)
   ========================================================================== */

.tm-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.tm-section-alt {
    background-color: #f4f7f6;
}

.tm-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tm-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #222;
    font-weight: 800;
    margin-bottom: 15px;
}

.tm-header p {
    font-size: 18px;
    color: #555;
    font-family: 'Georgia', serif;
    font-style: italic;
    line-height: 1.7;
}

/* Who This Is For - Editorial Luxury Layout */
.tm-editorial-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.tm-editorial-item {
    display: flex;
    align-items: center;
    gap: 40px;
}
.tm-editorial-item:nth-child(even) {
    flex-direction: row-reverse;
}
.tm-ed-content {
    flex: 1;
}
.tm-ed-num {
    font-size: 14px;
    font-weight: 800;
    color: #FF4D00;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    position: relative;
}
.tm-ed-num::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #FF4D00;
    margin-left: 15px;
    vertical-align: middle;
}
.tm-ed-content h3 {
    font-size: 24px;
    color: #222;
    font-weight: 800;
    margin-bottom: 15px;
}
.tm-ed-content p {
    font-family: 'Georgia', serif;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
.tm-ed-visual {
    flex: 1;
    position: relative;
}
.tm-ed-visual::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #FF4D00;
    border-radius: 12px;
    z-index: 0;
    opacity: 0.2;
    transition: all 0.4s ease;
}
.tm-editorial-item:nth-child(even) .tm-ed-visual::before {
    left: 10px;
    right: -10px;
}
.tm-ed-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}
.tm-editorial-item:hover .tm-ed-visual img {
    transform: translateY(-8px);
}
.tm-editorial-item:hover .tm-ed-visual::before {
    transform: translate(10px, 10px);
    opacity: 0.4;
}
.tm-editorial-item:nth-child(even):hover .tm-ed-visual::before {
    transform: translate(-10px, 10px);
}

/* What We Can Customize */
.customize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    text-align: left;
}

.custom-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: #FF4D00;
    transform: translateY(-5px);
}

.custom-icon { font-size: 32px; color: #FF4D00; margin-bottom: 20px; }
.custom-item h4 { font-size: 18px; color: #333; margin-bottom: 12px; font-weight: 800; }
.custom-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* Bespoke Process Step Diagram */
.process-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 30px;
}

.process-step {
    flex: 1;
    position: relative;
    padding-top: 35px;
}

/* Timeline line */
.process-step::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #eee; }
.process-step:last-child::before { width: 0; } /* Remove line after last item on desktop */

/* Timeline dot */
.process-step::after { content: ''; position: absolute; top: -6px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: #FF4D00; border: 3px solid #fff; box-shadow: 0 0 0 2px #FF4D00; }

.process-step-num { font-size: 11px; font-weight: 800; color: #FF4D00; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 10px; }
.process-step h4 { font-size: 20px; color: #222; margin-bottom: 15px; font-weight: 800; }
.process-step p { font-size: 14px; color: #666; line-height: 1.6; }

/* CTA Form Section Overlay */
.tm-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 1100px;
    margin: -100px auto 100px; /* Overlaps previous section */
    position: relative;
    z-index: 10;
}

.tm-cta-image {
    background-image: url('https://images.unsplash.com/photo-1542640244-7e672d6cb466?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.tm-cta-content { padding: 60px 50px; }
.tm-cta-content h2 { font-size: 28px; font-weight: 800; color: #222; margin-bottom: 15px; }
.tm-cta-content p { font-size: 15px; color: #555; margin-bottom: 30px; line-height: 1.6; }

@media (max-width: 900px) {
    .process-container { flex-direction: column; gap: 40px; }
    .process-step { padding-top: 0; padding-left: 40px; }
    .process-step::before { width: 3px; height: 100%; top: 0; left: 6px; }
    .process-step:last-child::before { height: 100%; } /* Keep vertical line connected */
    .process-step::after { top: 0; left: 0; }
    .tm-cta-wrapper { grid-template-columns: 1fr; margin-top: 0; box-shadow: none; border: 1px solid #eee; }
    .tm-cta-image { min-height: 250px; }
    .tm-cta-content { padding: 40px 20px; }
}

/* ==========================================================================
   TRAVEL JOURNAL STYLES
   ========================================================================== */
.journal-page-wrapper {
    padding: 80px 5%;
    background-color: #fdfdfd;
}

.journal-container {
    max-width: 1200px;
    margin: -120px auto 0;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Sidebar */
.journal-sidebar {
    width: 280px;
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.journal-sidebar h3 {
    font-size: 16px;
    color: #FF4D00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.journal-nav {
    list-style: none;
    padding: 0;
}

.journal-nav li {
    margin-bottom: 12px;
}

.journal-nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.journal-nav a:hover, .journal-nav a.active {
    color: #FF4D00;
    transform: translateX(5px);
}

/* Content Area */
.journal-content {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.journal-intro {
    font-family: 'Georgia', serif;
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
    font-style: italic;
    border-bottom: 2px solid #eee;
    padding-bottom: 40px;
}

.journal-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.journal-section-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.journal-section-title span {
    background: #FF4D00;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.journal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.journal-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #FF4D00;
    transition: all 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.journal-card h4 { font-size: 20px; color: #333; margin-bottom: 15px; }
.journal-card p { font-size: 15px; color: #666; line-height: 1.6; }

.journal-list { list-style: none; padding: 0; }
.journal-list li {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.journal-list li .icon {
    font-size: 24px;
    background: #fdf3e7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FF4D00;
    flex-shrink: 0;
}
.journal-list li h5 { font-size: 16px; color: #333; margin-bottom: 5px; }
.journal-list li p { font-size: 14px; color: #666; margin: 0; }

.identity-card { background: #222; color: white; padding: 40px; border-radius: 12px; }
.identity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.id-item span { display: block; font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.id-item strong { font-size: 18px; color: #fff; }

.mindset-box { background: #FF4D00; color: white; padding: 40px; border-radius: 12px; text-align: center; }
.mindset-box h3 { font-size: 24px; margin-bottom: 20px; }
.mindset-box ul { list-style: none; padding: 0; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.mindset-box ul li { margin-bottom: 10px; }
.mindset-box p { font-style: italic; font-family: 'Georgia', serif; font-size: 16px; }

.journal-highlight-text { font-size: 16px; font-weight: 700; color: #FF4D00; background: #fff8f2; padding: 15px 25px; border-radius: 8px; display: inline-block; }
.mt-4 { margin-top: 30px; }

.info-blocks-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.practical-block { background: #fdfdfd; border: 1px solid #eaeaea; padding: 25px; border-radius: 8px; }
.practical-block h4 { font-size: 16px; color: #333; margin-bottom: 15px; font-weight: 800; border-bottom: 2px solid #FF4D00; padding-bottom: 10px; display: inline-block; }
.practical-block p, .practical-block ul { font-size: 14px; color: #666; line-height: 1.6; }
.practical-block ul { padding-left: 20px; }
.practical-block ul li { margin-bottom: 8px; }
.highlight-mini { margin-top: 15px; font-weight: 700; color: #FF4D00 !important; }

.kit-box { background: #fdfdfd; border: 1px dashed #ccc; padding: 30px; border-radius: 12px; }
.kit-box h4 { font-size: 18px; color: #222; margin-bottom: 20px; font-weight: 800; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 15px; color: #555; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: #27ae60; font-size: 14px; }
.app-list { list-style: none; padding: 0; }
.app-list li { background: #f4f4f4; padding: 10px 15px; border-radius: 6px; margin-bottom: 10px; font-size: 14px; color: #444; }

/* Journal Images Styles */
.journal-featured-img { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }

@media (max-width: 900px) {
    .journal-container { flex-direction: column; margin-top: 0; }
    .journal-sidebar { width: 100%; position: relative; top: 0; margin-bottom: 30px; }
    .journal-content { padding: 30px 20px; }
    .journal-grid-2 { grid-template-columns: 1fr; }
}
