/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #555;
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.3;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: #f7921e;
    color: #fff;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #f7921e;
    border-radius: 0;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #f7921e;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a2e;
    padding: 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: color 0.3s;
}

.top-contact:hover {
    color: #f7921e;
}

.top-contact i {
    color: #f7921e;
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-social {
    display: flex;
    gap: 0;
}

.top-social a {
    color: #ccc;
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    font-size: 13px;
}

.top-social a:hover {
    color: #f7921e;
    background: rgba(255, 255, 255, 0.05);
}

.btn-book-now {
    background: #f7921e;
    color: #fff;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    display: inline-block;
}

.btn-book-now:hover {
    background: #e07d0a;
    color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, transform 0.4s ease;
    padding: 0;
}

/* At top of page - transparent with white text */
.navbar.at-top {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Scrolled past hero - glassmorphism with black text */
.navbar.scrolled-past-hero {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled-past-hero .logo-text {
    color: #111;
}

.navbar.scrolled-past-hero .nav-links li a {
    color: #111;
}

.navbar.scrolled-past-hero .nav-links li a:hover,
.navbar.scrolled-past-hero .nav-links li a.active {
    color: #f7921e;
}

.navbar.scrolled-past-hero .secondary-nav-bar .secondary-nav-links li a {
    color: #333;
}

.navbar.scrolled-past-hero .secondary-nav-bar .secondary-nav-links li a:hover,
.navbar.scrolled-past-hero .secondary-nav-bar .secondary-nav-links li a.active {
    color: #f7921e;
}

.navbar.scrolled-past-hero .mobile-toggle span {
    background: #111;
}

.navbar.hide-header {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.navbar.show-header {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 24px 18px;
    display: block;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: color 0.4s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #f7921e;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #f7921e;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-icons a {
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-icons a:hover {
    color: #f7921e;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 2px;
    background: #f7921e;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* ===== SECONDARY NAVIGATION (merged inside navbar) ===== */
.secondary-nav-bar {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.4s ease;
}

.navbar.scrolled-past-hero .secondary-nav-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.secondary-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    display: block;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: color 0.4s ease, background 0.3s;
    white-space: nowrap;
}

.secondary-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #f7921e;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.secondary-nav-links li a:hover,
.secondary-nav-links li a.active {
    color: #f7921e;
}

.secondary-nav-links li a:hover::after,
.secondary-nav-links li a.active::after {
    transform: scaleX(1);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-subtitle {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Dancing Script', cursive;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: none;
}

.hero-squiggle {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.hero-squiggle svg {
    width: 120px;
    height: 20px;
}

/* Travel Guide Button */
.btn-travel-guide {
    display: inline-block;
    background: #f7921e;
    color: #fff;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-color: #f7921e;
}

.btn-travel-guide:hover {
    background-color: #e07d0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 146, 30, 0.4);
}

/* ===== TOP DESTINATIONS SECTION ===== */
.top-destinations {
    padding: 50px 0 50px;
    background: #f5f5f0;
}

.dest-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dest-left {
    flex: 0 0 auto;
    min-width: 200px;
}

.dest-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
}

.dest-cards-area {
    flex: 1;
    overflow: hidden;
}

.dest-cards-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.dest-card-circle {
    width: 200px;
    height: 200px;
    min-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dest-card-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dest-card-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-nav-arrows {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.dest-circle-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #222;
    background: transparent;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.dest-circle-arrow:hover {
    background: #222;
    color: #fff;
}

/* ===== ADVENTURE / STATS SECTION ===== */
.adventure-section {
    position: relative;
    padding: 80px 0 70px;
    background: #f0efe8;
    overflow: hidden;
}

.adventure-map-bg {
    position: absolute;
    inset: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/map-bg.png') center/contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.adventure-airplane {
    position: absolute;
    top: 30px;
    right: 22%;
    opacity: 0.35;
    transform: rotate(-30deg);
    pointer-events: none;
}

.adventure-dotted-path {
    position: absolute;
    top: 20px;
    right: 5%;
    opacity: 0.3;
    pointer-events: none;
}

.adventure-circle-decor {
    position: absolute;
    bottom: 20px;
    right: 8%;
    width: 60px;
    height: 60px;
    border: 2px dashed #ccc;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.adventure-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.adventure-pin-icon {
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
}

.adventure-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.adventure-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin-bottom: 50px;
}

.adventure-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.adventure-stat-item {
    text-align: left;
}

.adventure-stat-circle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
}

.brush-circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.adventure-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}

.adventure-btn-wrap {
    text-align: center;
}

.section-label-orange {
    color: #f7921e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.section-label-orange i {
    font-size: 14px;
}

/* ===== EXPLORE WORLD SECTION (NEW - matching screenshot) ===== */
.explore-world-section {
    padding: 100px 0 80px;
    background: #f5f5f0;
    position: relative;
    overflow: hidden;
}

.explore-world-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.explore-world-left {
    flex: 0 0 340px;
    max-width: 340px;
    padding-top: 10px;
}

.explore-world-pin {
    margin-bottom: 10px;
}

.explore-world-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.explore-world-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 24px;
}

.explore-world-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
}

.explore-world-right {
    flex: 1;
    position: relative;
}

.explore-world-cards-wrapper {
    overflow: hidden;
}

.explore-world-cards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.explore-world-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.explore-world-card-inner {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 200px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.explore-world-card-inner:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.explore-world-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.explore-world-card-inner:hover img {
    transform: scale(1.08);
}

/* Default state: only country name visible at center */
.explore-world-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    transition: background 0.5s ease;
}

/* Hover state: golden/amber overlay */
.explore-world-card-inner:hover .explore-world-card-overlay {
    background: linear-gradient(to top,
            rgba(180, 130, 50, 0.85) 0%,
            rgba(200, 150, 60, 0.7) 30%,
            rgba(210, 170, 80, 0.55) 50%,
            rgba(220, 180, 90, 0.4) 70%,
            rgba(200, 160, 70, 0.3) 100%);
}

.explore-world-card-overlay h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, margin 0.4s ease;
}

/* On hover, move title slightly up to make room for description */
.explore-world-card-inner:hover .explore-world-card-overlay h3 {
    transform: translateY(-10px);
}

.explore-world-card-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    max-width: 180px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

/* Show description on hover */
.explore-world-card-inner:hover .explore-world-card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* READ MORE link */
.explore-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, gap 0.3s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.explore-read-more i {
    font-size: 11px;
    transition: transform 0.3s;
}

/* Show READ MORE on hover */
.explore-world-card-inner:hover .explore-read-more {
    opacity: 1;
    transform: translateY(0);
}

.explore-read-more:hover {
    gap: 10px;
}

.explore-read-more:hover i {
    transform: translateX(3px);
}

.explore-world-img-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

/* Navigation Arrows */
.explore-world-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.explore-world-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #333;
    background: transparent;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.explore-world-arrow:hover {
    background: #333;
    color: #fff;
}

/* ===== ACTIVITIES SECTION ===== */
.activities-section {
    padding: 80px 0 60px;
    background: #f0efe8;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

/* New activity card layout - matching reference image */
.activity-card-new {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 10px 0;
}

.activity-card-new-left {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Large faded background number */
.activity-num-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Outline icon sitting on top of the number */
.activity-icon-outline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon-outline svg {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.activity-card-new:hover .activity-icon-outline svg {
    opacity: 0.85;
}

.activity-card-new-right {
    flex: 1;
    padding-left: 10px;
}

.activity-card-new-right h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.activity-card-new-right p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* ===== BEST DESTINATIONS GRID (Redesigned - Brush Frame) ===== */
.best-dest-section {
    padding: 80px 0 60px;
    background: #f0efe8;
    position: relative;
    overflow: hidden;
}

.best-dest-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/map-bg.png') center/contain no-repeat;
    opacity: 0.04;
}

.best-dest-section .container {
    position: relative;
    z-index: 1;
}

/* Pin icon at top center */
.best-dest-pin-icon {
    text-align: center;
    margin-bottom: 10px;
}

/* Cursive subtitle */
.best-dest-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
    font-style: italic;
}

/* Main heading */
.best-dest-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #888;
    font-size: 15px;
    line-height: 1.8;
}

/* New grid */
.best-dest-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 35px;
}

/* Each card */
.best-dest-card-new {
    text-align: center;
    transition: transform 0.3s;
}

.best-dest-card-new:hover {
    transform: translateY(-5px);
}

/* Brush frame container */
.best-dest-brush-frame {
    position: relative;
    width: 100%;
    padding-bottom: 90%;
    margin-bottom: 18px;
}

.brush-frame-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Image clipped with organic shape */
.best-dest-img-clip {
    position: absolute;
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
    overflow: hidden;
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    z-index: 1;
}

.best-dest-img-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.best-dest-card-new:hover .best-dest-img-clip img {
    transform: scale(1.08);
}

/* Card info below image */
.best-dest-info-new {
    text-align: center;
}

.best-dest-info-new h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.best-dest-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f7921e;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.best-dest-location i {
    font-size: 14px;
    color: #f7921e;
}

.best-dest-location span {
    color: #555;
    font-weight: 500;
}

/* ===== MEMBERSHIP BANNER ===== */
.membership-banner {
    position: relative;
    padding: 250px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.membership-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.membership-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.membership-content h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.3;
}

/* ===== TRAVEL TYPES SECTION (Redesigned - Icon Grid) ===== */
.travel-types-section {
    padding: 80px 0 70px;
    background: #f0ece0;
    position: relative;
    overflow: hidden;
}

.travel-types-topo-bg {
    position: absolute;
    inset: 0;
    background:
        /* Topographic-style curved lines */
        radial-gradient(ellipse 600px 300px at 30% 50%, transparent 58%, rgba(180, 170, 145, 0.12) 59%, transparent 60%),
        radial-gradient(ellipse 500px 250px at 70% 40%, transparent 58%, rgba(180, 170, 145, 0.10) 59%, transparent 60%),
        radial-gradient(ellipse 700px 350px at 50% 60%, transparent 58%, rgba(180, 170, 145, 0.08) 59%, transparent 60%),
        radial-gradient(ellipse 400px 200px at 20% 70%, transparent 58%, rgba(180, 170, 145, 0.10) 59%, transparent 60%),
        radial-gradient(ellipse 550px 280px at 80% 30%, transparent 58%, rgba(180, 170, 145, 0.09) 59%, transparent 60%),
        radial-gradient(ellipse 650px 320px at 40% 80%, transparent 58%, rgba(180, 170, 145, 0.07) 59%, transparent 60%),
        radial-gradient(ellipse 450px 220px at 60% 20%, transparent 58%, rgba(180, 170, 145, 0.11) 59%, transparent 60%),
        radial-gradient(ellipse 350px 180px at 15% 30%, transparent 58%, rgba(180, 170, 145, 0.09) 59%, transparent 60%),
        radial-gradient(ellipse 500px 260px at 85% 70%, transparent 58%, rgba(180, 170, 145, 0.08) 59%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.travel-types-new-container {
    position: relative;
    z-index: 1;
}

/* Icon row - 4 items with vertical dividers */
.travel-types-icon-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.travel-type-icon-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
}

.travel-type-icon-circle {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.travel-type-icon-circle svg {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.travel-type-icon-item:hover .travel-type-icon-circle svg {
    opacity: 1;
}

.travel-type-icon-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #222;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Vertical divider between items */
.travel-type-divider {
    width: 1px;
    height: 150px;
    background: rgba(0, 0, 0, 0.1);
    align-self: center;
    flex-shrink: 0;
}

/* Description text */
.travel-types-description {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.travel-types-description p {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
}

/* Book To Start button - brush/grunge style */
.travel-types-btn-wrap {
    text-align: center;
}

.btn-book-to-start {
    display: inline-block;
    background: #f7921e;
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    position: relative;
    /* Brush/grunge texture effect */
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-color: #f7921e;
    /* Rough edges effect */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M3 8 C10 2, 30 0, 60 3 C90 0, 130 1, 160 4 C180 1, 195 5, 198 10 C200 20, 200 40, 197 50 C194 56, 180 59, 160 57 C130 60, 90 59, 60 57 C30 60, 10 58, 4 52 C1 45, 0 25, 3 8 Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M3 8 C10 2, 30 0, 60 3 C90 0, 130 1, 160 4 C180 1, 195 5, 198 10 C200 20, 200 40, 197 50 C194 56, 180 59, 160 57 C130 60, 90 59, 60 57 C30 60, 10 58, 4 52 C1 45, 0 25, 3 8 Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    padding: 18px 50px;
}

.btn-book-to-start:hover {
    background-color: #e07d0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 146, 30, 0.4);
}

/* ===== BEST PLACES SECTION (Redesigned - Image Card Style) ===== */
.best-places-section {
    padding: 100px 0;
    background: #f0efe8;
    position: relative;
    overflow: hidden;
}

.bp-map-bg {
    position: absolute;
    inset: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/map-bg.png') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.bp-airplane {
    position: absolute;
    top: 40px;
    right: 20%;
    opacity: 0.3;
    transform: rotate(-30deg);
    pointer-events: none;
}

.bp-dotted-path {
    position: absolute;
    top: 30px;
    right: 5%;
    opacity: 0.25;
    pointer-events: none;
}

.bp-container {
    position: relative;
    z-index: 1;
}

/* Pin icon */
.bp-pin-icon {
    text-align: center;
    margin-bottom: 10px;
}

/* Cursive subtitle */
.bp-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
    font-style: italic;
}

/* Main heading */
.bp-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 40px;
}

/* Filter buttons with brush/grunge texture */
.bp-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bp-filter-btn {
    background: #f7921e;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    position: relative;
    /* Brush texture */
    background-image:
        radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-color: #f7921e;
    /* Organic shape mask */
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 50'%3E%3Cpath d='M3 7 C8 2, 25 0, 50 2 C75 0, 110 1, 130 3 C148 1, 156 4, 158 8 C160 16, 160 34, 157 42 C155 47, 148 49, 130 48 C110 50, 75 49, 50 48 C25 50, 8 48, 3 43 C1 38, 0 18, 3 7 Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 50'%3E%3Cpath d='M3 7 C8 2, 25 0, 50 2 C75 0, 110 1, 130 3 C148 1, 156 4, 158 8 C160 16, 160 34, 157 42 C155 47, 148 49, 130 48 C110 50, 75 49, 50 48 C25 50, 8 48, 3 43 C1 38, 0 18, 3 7 Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.bp-filter-btn:hover {
    background-color: #e07d0a;
    transform: translateY(-2px);
}

/* "All" button - dark/black style */
.bp-filter-btn.bp-filter-all.active {
    background-color: #222;
    background-image:
        radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

.bp-filter-btn.active {
    background-color: #f7921e;
}

/* Cards grid */
.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Individual card */
.bp-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
}

.bp-card.hidden {
    display: none;
}

.bp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Card image - full bleed */
.bp-card-img {
    position: absolute;
    inset: 0;
}

.bp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.bp-card:hover .bp-card-img img {
    transform: scale(1.08);
}

/* Dark overlay bar at bottom */
.bp-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.bp-card-info-left h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.bp-card-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.bp-card-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.bp-card-stars i {
    color: #f7921e;
    font-size: 13px;
}

/* ===== OUR CLIENTS & GUEST TESTIMONIALS SECTION ===== */
.clients-testimonials-section {
    padding: 100px 0 80px;
    background: #f5f5f0;
    position: relative;
    overflow: hidden;
}

.clients-test-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-test-label {
    color: #f7921e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.clients-test-label i {
    font-size: 14px;
}

.clients-test-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

/* Slider area with arrows */
.clients-test-slider-area {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.clients-test-slider-wrapper {
    flex: 1;
    overflow: hidden;
}

.clients-test-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.clients-test-card {
    flex: 0 0 calc(50% - 12.5px);
    min-width: calc(50% - 12.5px);
    flex-shrink: 0;
}

.clients-test-card-inner {
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px 35px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.clients-test-card-inner:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Quote icon */
.clients-test-quote-icon {
    margin-bottom: 20px;
}

.clients-test-quote-icon i {
    font-size: 36px;
    color: #f7921e;
    opacity: 0.8;
}

/* Testimonial text */
.clients-test-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}

/* Stars */
.clients-test-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 25px;
}

.clients-test-stars i {
    color: #f7921e;
    font-size: 14px;
}

/* Author area */
.clients-test-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.clients-test-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #f7921e;
}

.clients-test-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-test-author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}

.clients-test-author-info span {
    font-size: 13px;
    color: #f7921e;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Navigation arrows */
.clients-test-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    background: transparent;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 5;
}

.clients-test-arrow:hover {
    background: #f7921e;
    border-color: #f7921e;
    color: #fff;
}

/* Dots navigation */
.clients-test-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.clients-test-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.clients-test-dot.active {
    background: #f7921e;
    transform: scale(1.2);
}

/* ===== TRAVEL NEWS & UPDATES SECTION ===== */
.travel-news-section {
    padding: 100px 0;
    background: #fff;
}

.travel-news-header {
    margin-bottom: 45px;
}

.travel-news-label {
    color: #f7921e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.travel-news-label i {
    font-size: 14px;
}

.travel-news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

/* Layout: Featured left + List right */
.travel-news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Featured Large Article (Left) */
.travel-news-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 520px;
}

.travel-news-featured-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.travel-news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
    min-height: 520px;
}

.travel-news-featured:hover .travel-news-featured-img img {
    transform: scale(1.05);
}

.travel-news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 50%, transparent 100%);
    padding: 40px 30px 30px;
    z-index: 2;
}

.travel-news-featured-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f7921e;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.travel-news-featured-date i {
    font-size: 13px;
}

.travel-news-featured-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.travel-news-featured-overlay h3 a {
    color: #fff;
    transition: color 0.3s;
}

.travel-news-featured-overlay h3 a:hover {
    color: #f7921e;
}

.travel-news-featured-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.travel-news-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f7921e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    transition: gap 0.3s, color 0.3s;
}

.travel-news-read-more-btn:hover {
    gap: 14px;
    color: #fff;
}

.travel-news-read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.travel-news-read-more-btn:hover i {
    transform: translateX(3px);
}

/* Right: News List */
.travel-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.travel-news-list-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
    align-items: flex-start;
}

.travel-news-list-item:first-child {
    padding-top: 0;
}

.travel-news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.travel-news-list-item:hover {
    background: rgba(247, 146, 30, 0.03);
}

.travel-news-list-img {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.travel-news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.travel-news-list-item:hover .travel-news-list-img img {
    transform: scale(1.08);
}

.travel-news-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.travel-news-list-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f7921e;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.travel-news-list-date i {
    font-size: 12px;
}

.travel-news-list-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #222;
}

.travel-news-list-info h4 a {
    color: #222;
    transition: color 0.3s;
}

.travel-news-list-info h4 a:hover {
    color: #f7921e;
}

.travel-news-list-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: #0e1525;
}

.newsletter-inner {
    text-align: center;
}

.newsletter-inner h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 650px;
    margin: 0 auto 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: #f7921e;
}

.newsletter-form .btn-primary {
    white-space: nowrap;
    padding: 15px 30px;
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ===== FOOTER GALLERY ===== */
.footer-gallery {
    overflow: hidden;
    height: 300px;
}

.footer-gallery-track {
    display: flex;
    animation: scrollGallery 20s linear infinite;
}

.footer-gallery-track img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.footer-gallery-track img:hover {
    opacity: 0.7;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0e1525;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/main-home-bg-pattan.png') center/cover no-repeat;
    opacity: 0.03;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-address {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-phones {
    color: #aaa;
    font-size: 14px;
}

.footer-phones a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-phones a:hover {
    color: #f7921e;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #f7921e;
    padding-left: 5px;
}

.footer-form {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
}

.footer-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    outline: none;
    border-radius: 0;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-form button {
    background: #f7921e;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s;
    white-space: nowrap;
}

.footer-form button:hover {
    background: #e07d0a;
}

.follow-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 50%;
}

.footer-social a:hover {
    background: #f7921e;
    border-color: #f7921e;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    text-align: center;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom a {
    color: #f7921e;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #f7921e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(247, 146, 30, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e07d0a;
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE TOUR LINKS (hidden on desktop, shown in hamburger) ===== */
.mobile-tour-divider {
    display: none;
}

.mobile-tour-link {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .secondary-nav-links li a {
        font-size: 10px;
        padding: 10px 10px;
        letter-spacing: 0.3px;
    }

    .hero-title {
        font-size: 48px;
    }

    .adventure-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .adventure-title {
        font-size: 38px;
    }

    .travel-types-icon-row {
        flex-wrap: wrap;
        gap: 0;
    }

    .travel-type-icon-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .travel-type-divider {
        display: none;
    }

    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: span 3;
        margin-bottom: 20px;
    }

    .footer-newsletter {
        grid-column: span 3;
    }

    .travel-news-layout {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .travel-news-featured {
        min-height: 420px;
    }

    .travel-news-featured-img img {
        min-height: 420px;
    }

    .travel-news-title {
        font-size: 36px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .best-dest-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }

    .bp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-card {
        height: 350px;
    }

    .dest-card-circle {
        width: 160px;
        height: 160px;
        min-width: 160px;
    }

    .explore-world-container {
        gap: 40px;
    }

    .explore-world-left {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .explore-world-title {
        font-size: 44px;
    }

    .explore-world-card-inner {
        height: 360px;
    }
}

@media (max-width: 768px) {

    /* Hide secondary nav bar on mobile - tour links are in hamburger menu */
    .secondary-nav-bar {
        display: none !important;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        padding: 80px 0 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        align-items: flex-start;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a::after {
        display: none;
    }

    /* Show mobile tour links in hamburger menu */
    .mobile-tour-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(247, 146, 30, 0.3);
        margin: 10px 0;
    }

    .mobile-tour-link {
        display: block;
        width: 100%;
    }

    .mobile-tour-link a {
        color: #f7921e !important;
        font-size: 12px !important;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 12px 25px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s;
    }

    .mobile-tour-link a:hover {
        color: #fff !important;
        background: rgba(247, 146, 30, 0.15);
    }

    .nav-icons {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .adventure-title {
        font-size: 30px;
    }

    .adventure-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .adventure-stat-circle {
        width: 90px;
        height: 90px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .membership-content h2 {
        font-size: 28px;
    }

    .dest-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .dest-left {
        min-width: auto;
    }

    .dest-cards-area {
        width: 100%;
    }

    .dest-card-circle {
        width: 140px;
        height: 140px;
        min-width: 140px;
    }

    .dest-nav-arrows {
        align-self: flex-end;
    }

    .clients-test-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .clients-test-slider-area {
        flex-direction: column;
        gap: 20px;
    }

    .clients-test-arrow {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-inner h2 {
        font-size: 24px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .best-dest-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    .best-dest-heading {
        font-size: 36px;
    }

    .bp-grid {
        grid-template-columns: 1fr;
    }

    .bp-card {
        height: 320px;
    }

    .bp-heading {
        font-size: 36px;
    }

    .travel-news-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .travel-news-featured {
        min-height: 350px;
    }

    .travel-news-featured-img img {
        min-height: 350px;
    }

    .travel-news-title {
        font-size: 32px;
    }

    .travel-news-list-img {
        width: 130px;
        height: 100px;
    }

    .travel-news-list-info h4 {
        font-size: 15px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    /* Explore World responsive */
    .explore-world-container {
        flex-direction: column;
        gap: 40px;
    }

    .explore-world-left {
        flex: auto;
        max-width: 100%;
        text-align: center;
    }

    .explore-world-title {
        font-size: 40px;
    }

    .explore-world-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .explore-world-card-inner {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .adventure-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .adventure-title {
        font-size: 26px;
    }

    .adventure-stat-circle {
        width: 80px;
        height: 80px;
    }

    .stat-number {
        font-size: 30px;
    }

    .dest-card-circle {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .bp-filter {
        gap: 8px;
    }

    .bp-filter-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .explore-world-title {
        font-size: 34px;
    }

    .explore-world-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .explore-world-card-inner {
        height: 350px;
    }
}