/* ============================================================================
   GOOGLE FONTS IMPORT
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'TRTempusSansITC';
    src: url(../fonts/TRTempusSansITC.ttf) format('truetype');
}

@font-face {
    font-family: 'Suwargi';
    src: url(../fonts/Suwargi.ttf) format('truetype');
}

/* ============================================================================
   CSS DESIGN TOKENS & VARIABLES
   ============================================================================ */
:root {
    /* Color Palette */
    --color-primary: #F15F1B;
    --color-primary-hover: #F44E31;
    --color-light-blue: #E3E3F4;
    --color-light-yellow: #FAF0B6;
    --color-light-pink: #FEF1F0;
    --color-light-sand: #CEBEA3;
    --color-black: #000;
    --color-white: #fff;
    --color-light: #F1F1F1;
    --color-dark-text: #222;
    --color-gray: #777;
    --color-gray-light: #ddd;

    /* Typography | Font Families */
    --font-primary: 'Marcellus', serif;
    --font-special: 'TRTempusSansITC', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-suwargi: 'Suwargi', sans-serif;

    /* Typography | Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    /* Typography | Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-base: 20px;
    --spacing-md: 35px;
    --spacing-lg: 50px;
    --spacing-xl: 95px;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-base: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Layer Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Animation Durations */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
}

/* ============================================================================
   TYPOGRAPHY | HEADINGS & TEXT
   ============================================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: var(--spacing-base);
}

/* ============================================================================
   UTILITY & LAYOUT COMPONENTS
   ============================================================================ */
.container {
    position: relative;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-full {
    width: 100%;
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
}

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

/* ============================================================================
   BUTTON COMPONENTS
   ============================================================================ */
.button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    border: none;
    border-radius: var(--radius-base);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

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

.button--primary:hover {
    opacity: 0.9;
}

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

.button--secondary:hover {
    opacity: 0.9;
}

.btn-primary {
    background: var(--color-primary);
    text-align: center;
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.btn-primary.large {
    padding: 16px 40px;
}

.btn-outline {
    text-align: center;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--color-black);
    background: transparent;
    border-radius: 30px;
    border: 1px solid var(--color-gray);
    cursor: pointer;
}

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

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */
header {
    position: absolute;
    width: 100%;
    z-index: 1;
    padding-inline: var(--spacing-lg);
}

/* Info Bar | Top notification bar */
.info-bar {
    font-size: 14px;
    border-bottom: 1px solid #ccccccc4;
    padding: 10px 0;
    background: transparent;
}

.info-right {
    display: flex;
}

.info-bar a {
    text-decoration: none;
    color: var(--color-white);
    margin-left: 15px;
    transition: var(--transition-fast);
}

.info-bar span {
    color: var(--color-white);
    margin-right: 20px;
}

.info-bar a:has(i) {
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21px;
    height: 21px;
    color: var(--color-black);
}

/* Navigation Bar */
.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 50px;
}

.logo,
.logo img {
    max-width: 135px;
    height: auto;
    display: block;
}

.nav-links ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li:has(.sub-menu) {
    position: relative;
}

nav ul li:hover .sub-menu {
    display: block;
}

ul.sub-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    position: absolute;
    top: 100%;
    min-width: 150px;
}

ul.sub-menu li {
    margin-bottom: 10px;
}

.nav-links ul li a {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    transition: var(--transition-base);
}

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

.nav-icon {
    font-size: 20px;
    display: inline-block;
    transform: rotate(180deg);
    font-family: 'TRTempusSansITC';
    line-height: 1;
    margin-top: -10px;
    margin-left: 5px;
}

.mobile-info p {
    color: var(--color-white);
}

.hamburger {
    color: var(--color-white);
    display: none;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    height: clamp(800px, 75vw, 850px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: end;
    padding: 70px 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgb(35 35 35 / 60%);
}

.hero-content {
    padding-block: 70px;
    position: relative;
    text-align: center;
    padding: 0 var(--spacing-base);
    width: 80%;
    margin: 0 auto;
}

.hero-logo {
    max-width: clamp(90px, 12vw, 190px);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-special);
    color: var(--color-white);
    font-size: clamp(36px, 2.75vw, 50px);
    line-height: 1.35;
    margin-bottom: 20px;
    font-weight: var(--font-weight-normal);
}

.hero p {
    color: var(--color-white);
    max-width: 950px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: clamp(18px, 1.25vw, 22px);
}

.form-heading {
    color: var(--color-white);
    font-weight: var(--font-weight-normal);
    font-size: 32px;
    margin-bottom: 20px;
}

/* ============================================================================
   OFFCANVAS MENU (Mobile Navigation)
   ============================================================================ */
.offcanvas {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    height: 100%;
    background: #111;
    transition: var(--transition-slow);
    z-index: 2000;
    padding: 30px;
    overflow-y: auto;
}

.offcanvas.active {
    right: 0;
}

.offcanvas .mob-nav ul {
    list-style: none;
}

.offcanvas .mob-nav ul li a {
    color: var(--color-white);
    margin: 15px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.offcanvas .mob-nav ul li a:hover {
    color: var(--color-primary);
}

.mob-nav li:hover ul.sub-menu {
    display: flex;
}

.mob-nav li ul.sub-menu {
    position: relative;
    top: 0;
    min-width: 100%;
}

.mob-nav li ul.sub-menu li a {
    margin: 0px;
}

.mob-nav+.btn-primary {
    margin-top: 20px;
}

.close-btn {
    color: var(--color-white);
    text-align: right;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================================================
   DESTINATION SLIDER SECTION
   ============================================================================ */
.destination-slider {
    padding: 60px 0;
    overflow: hidden;
}

.slider .slide {
    padding: 0 15px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Remove default outline on Slick carousel slides */
.slick-slide {
    outline: none;
}

/* ==================================================
WHY CHOOSE SECTION
==================================================== */
.why-choose {
    padding: 30px 0 0;
    text-align: center;
}

.why-choose .container {
    width: 100%;
    max-width: 1340px;
    padding: 0 var(--spacing-base);
    margin: 0 auto;
}

/* HEADER */
.section-header h2 {
    font-family: 'Marcellus', sans-serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1e1e1e;
}

.section-header p {
    max-width: 620px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

/* CARD */
.why-card {
    background: #F5F5F5;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #f26422;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-wrap img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* CARD TEXT */
.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e1e1e;
}

.why-card p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* BUTTON */
.primary-btn {
    text-align: center;
    display: inline-block;
    background: #f26422;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #d9551c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================================
   POPULAR TOURS SECTION
   ============================================================================ */
.popular-tours {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 58px);
    margin-bottom: 25px;
    font-weight: var(--font-weight-medium);
}

.popular-tours h2.section-title {
    margin-bottom: 50px;
}

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

.tour-card {
    background: transparent;
    transition: var(--transition-base);
}

.tour-img {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-base);
}

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

.tour-content {
    margin-top: 15px;
}

.tour-content h3 {
    font-size: 25px;
    margin-bottom: 6px;
    font-weight: var(--font-weight-medium);
    color: var(--color-dark-text);
}

.rating {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating .star {
    color: #F44E31;
}

.tour-content span i {
    font-style: normal;
    color: #F44E31;
}

.rating .location {
    color: rgba(0, 0, 0, 0.9);
}

.price {
    font-size: 18px;
    font-weight: var(--font-weight-normal);
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* ============================================================================
   ACTIVITIES SECTION
   ============================================================================ */
.trending-activities {
    padding: 20px 0 80px;
    text-align: center;
}

.activities-block {
    max-width: 100%;
    padding-inline: var(--spacing-xl);
}

.section-subtitle {
    color: rgb(0 0 0 / 90%);
    max-width: 475px;
    margin: 0 auto 55px;
    font-size: 18px;
    line-height: 1.6;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}

.activity-item {
    position: relative;
    display: block;
    text-decoration: none;
    color: #000;
    overflow: hidden;
    transition: var(--transition-base);
}

.activity-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.65);
    transition: var(--transition-base);
    display: block;
}

.activity-item span {
    position: relative;
    display: block;
    bottom: auto;
    width: 100%;
    left: auto;
    transform: none;
    font-size: 23px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    line-height: 1.2;
}

.activity-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.75);
}

/* ============================================================================
   VIDEO SECTION
   ============================================================================ */
.video-wrapper {
    position: relative;
    max-width: 1470px;
    margin: auto;
    border-radius: 50px;
    overflow: hidden;
}

.video-wrapper img {
    width: 100%;
    display: block;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
}

.video-overlay {
    position: absolute;
    text-decoration: none;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-black);
    transition: var(--transition-base);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--color-white);
}

.video-overlay span {
    color: var(--color-white);
    font-size: 14px;
}

.hero-content p a {
    color: #fff;
}

/* ============================================================================
   LOGO SLIDER SECTION & MARQUEE SLIDER SECTION
   ============================================================================ */
.logos-section,
.marquee-section {
    padding: 50px 0;
    background-color: azure;
    background-blend-mode: multiply;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.logos-section h2 {
    text-align: center;
    font-family: var(--font-suwargi);
    font-weight: 400;
    font-size: clamp(30px, 3.25vw, 60px);
    margin-bottom: 50px;
}

.logo-slider .slide img {
    max-width: 240px;
    margin: 0 auto;
    height: auto;
}

.marquee-section {
    overflow-x: hidden;
}

.marquee-slider {
    color: var(--color-white);
}

.marquee-slider .slick-track {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: var(--color-primary);
}

.marquee-slider span {
    font-size: 25px;
    line-height: 1;
    padding: 20.5px 0;
}

.marquee-slider img {
    margin-top: 7px;
}

/* ============================================================================
   TESTIMONIAL SECTION
   ============================================================================ */

.testimonial-section {
    padding: 65px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-item {
    display: flex !important;
    align-items: start;
    gap: 80px;
    padding-block: var(--spacing-md);
    padding-inline: var(--spacing-lg);
}

/* LEFT IMAGE STACK */

.image-stack {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.image-stack::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    transform: rotate(10deg);
    left: 0;
    top: 0;
    z-index: 0;
}

.image-stack img {
    position: relative;
    width: 100%;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */

.testimonial-right {
    max-width: 500px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* AUTHOR */

.author {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    font-size: 14px;
    margin: 0;
}

.author span {
    font-size: 12px;
    color: #777;
}

/* ARROWS */

.testimonial-arrows {
    display: flex;
    gap: 10px;
    position: absolute;
    left: 590px;
    bottom: 30px;
}

.testimonial-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgb(255 255 255 / 50%);
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-arrows button:hover {
    background: #d6c8b5;
}

.testimonial-review-source {
    display: flex;
    gap: 10px;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */
.how-it-works {
    padding: 100px 0;
}

.how-it-works .container {
    width: 1470px;
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.how-left {
    position: relative;
    flex: 1;
    max-width: fit-content;
}

.image-wrapper {
    width: 545px;
    height: 600px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.help-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #fff;
    padding: 30px;
    width: 260px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.help-icon {
    max-width: 42px;
    margin-bottom: 10px;
}

.help-icon img {
    max-width: 100%;
}

.help-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.help-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.help-btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    background: #f26422;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
}

/* RIGHT SIDE */
.how-right {
    flex: 1;
    max-width: 530px;
}

.how-right h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    max-width: 425px;
}

.step h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.step p {
    font-size: 14px;
    color: #555;
}

/* Step Colors */
.step-1 {
    background: #f3e7e6;
}

.step-2 {
    background: #efe5b9;
    margin-left: auto;
}

.step-3 {
    background: #dcdceb;
}

.step-icon {
    background: #fff;
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ============================================================================
    TOUR SECTION
   ============================================================================ */
.walking-tours {
    padding: 100px 0 0;
}

.walking-tours .container {
    max-width: 1820px;
    margin: auto;
}

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

/* WRAPPER */
.tours-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CARD */
.tours-card {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #d8d8d8;
}

/* IMAGE */
.tours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* CONTENT */
.tours-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.tours-content h3 {
    font-family: var(--font-suwargi);
    font-weight: 400;
    color: var(--color-black);
    font-size: clamp(28px, 2.5vw, 40px);
    margin-bottom: 10px;
}

.tours-subtitle {
    font-weight: 600;
    margin-bottom: 15px;
}

.tours-content p {
    font-family: var(--font-roboto);
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tours-content h4 {
    font-size: clamp(18px, 1.35vw, 25px);
    margin-bottom: 10px;
}

.tours-content p.tours-includes {
    font-weight: 500;
    font-family: var(--font-primary);
}

/* BUTTON */
.tours-btn {
    display: inline-block;
    text-align: center;
    background: #f26422;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}

.tours-btn:hover {
    background: #d6541e;
}

.tours-btn-group {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    justify-content: center;
}

/* BUTTON */
.tab-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    border: 1px solid #c2c2c2;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: .3s;
}

.tab-btn.active {
    color: #fff;
    border: 1px solid #f26422;
    background: #f26422;
}

.tab-btn:hover {
    background: #d9561f;
}

/* ============================================================================
   Planning Tour
   ============================================================================ */
.planning-tour {
    padding: 100px 0;
}

.planning-tour.reverse {
    padding-top: 0;
}

.planning-tour .container {
    max-width: 1700px;
    margin: auto;
}

/* GRID */
.planning-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.planning-tour.reverse .planning-grid {
    grid-template-columns: 1fr 1.5fr;
}

/* HEADING */
.planning-content h2 {
    font-family: var(--font-suwargi);
    font-size: clamp(30px, 3.5vw, 58px);
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--color-black);
    font-weight: 400;
}

/* TEXT */
.planning-content p {
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

/* ORANGE LABELS */
.planning-content span {
    color: #f26422;
    font-weight: 600;
}

/* BOOKING TEXT */
.planning-content p.booking-text {
    font-family: var(--font-suwargi);
    margin-top: 20px;
    color: #564831;
}

/* IMAGE */
.planning-image img {
    width: 100%;
    display: block;
}

.text-block {
    display: flex;
    gap: 10px;
}

.planning-content span img {
    max-width: 35px;
}

/* BUTTON */
.primary-btn {
    display: inline-block;
    margin-top: 25px;
    text-align: center;
    background: #f26422;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}

.primary-btn:hover {
    background: #d9561f;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.faq-section {
    padding: 70px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

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

.faq-section .section-header h2 {
    font-family: var(--font-suwargi);
}

/* GRID */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* ITEM */

.faq-item {
	max-height: fit-content;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
}

/* QUESTION */

.faq-question {
    font-family: var(--font-suwargi);
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */

.faq-icon {
    font-size: clamp(18px, 1.25vw, 22px);
    transition: .3s;
    transform: rotate(180deg);
    font-family: 'Font Awesome 6 Free';
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

/* ANSWER */

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all .35s ease;
    color: #555;
    line-height: 1.6;
}

/* OPEN */

.faq-item.active .faq-answer {
    padding: 10px 15px 15px;
    max-height: 200px;
	height: 100%;
}

/* ============================================================================
   Content and video Section
   ============================================================================ */

.video-wrapper-full {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.desk-content {
    max-width: 1330px;
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 200px;
    margin-bottom: 50px;
}

.desk-heading h2 {
    font-family: var(--font-suwargi);
    font-size: clamp(30px, 3.25vw, 60px);
    font-weight: 500;
    margin-bottom: 25px;
    color: #1e1e1e;
}

.desk-container h4 {
    font-size: clamp(20px, 1.75vw, 27px);
    margin-bottom: 10px;
}

.desk-container p {
    font-size: 18px;
}

.video-and-content-section {
    padding-top: 100px;
}

.video-content-box h2 {
    font-family: var(--font-suwargi);
    font-size: clamp(30px, 3.25vw, 60px);
    font-weight: 500;
    margin-bottom: 25px;
    color: #1e1e1e;
}

.video-content-box a {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    gap: 10px;
}

.video-content-box .play-btn {
    background: var(--color-primary);
    width: 60px;
    height: 60px;
    margin: 0;
}

.video-wrapper-full img {
    width: 100%;
}

.video-content-box {
    position: absolute;
    bottom: 40px;
    left: 5%;
    max-width: 600px;
}

/* ============================================================================
   Intro Blocx
   ============================================================================ */
.intro-section {
    padding: 70px 0;
}

.intro-container {
    max-width: 1620px;
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 85px;
}

.text-blocx h2 {
    font-family: var(--font-suwargi);
    font-weight: 400;
    font-size: clamp(30px, 3.25vw, 60px);
    margin-bottom: 30px;
}

.text-blocx p {
    font-size: 18px;
}

.img-blocx {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.img-blocx img {
    max-width: 100%;
}

.minimal-section {
    padding-top: 70px;
}

.minimal-section img {
    width: 100%;
}

.minimal-section .section-header h2 {
    font-family: var(--font-suwargi);
    font-weight: 400;
    font-size: clamp(30px, 3.5vw, 60px);
}

/* ============================================================================
   Support Section
   ============================================================================ */
.support-section {
    padding: 40px 0 50px;
    border-bottom: 1px solid #707070;
}

.support-section .container {
    width: 1200px;
    max-width: 90%;
    margin: auto;
}

/* GRID */

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* CENTER DIVIDER */

.support-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: #707070;
}

/* HEADINGS */

.support-left h2,
.support-right h2 {
    font-family: var(--font-suwargi);
    font-weight: 400;
    font-size: clamp(30px, 3.5vw, 60px);
    margin-bottom: 20px;
}

/* TEXT */

.support-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 460px;
}

.support-contact {
    margin-top: 25px;
}

/* EMAIL LINK */

.support-contact a {
    color: #f26422;
    text-decoration: underline;
}

/* RIGHT */

.support-right {
    text-align: center;
}

.support-right img {
    width: 160px;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
    border-bottom: 1px solid #CECECE;
}

/* GRID */

.contact-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 50px;
    align-items: end;
}

/* LEFT HEADING */

.contact-left h2 {
    font-family: var(--font-suwargi);
    font-size: clamp(30px, 3.5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* FORM CARD */

.form-card {
    border: 1px solid #d9d9d9;
    background: #f4f3f1;
    border-radius: 25px;
    padding: 25px 40px;
}

/* FORM */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    min-height: 70px;
    font-family: var(--font-primary);
}

.contact-form textarea {
    height: 260px;
    resize: none;
    grid-column: span 2;
    font-family: 'Marcellus', sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-row:last-child {
    grid-template-columns: 1fr;
}

/* BUTTON */

.submit-btn {
    background: #f26422;
    color: #fff;
    text-align: center;
    border: none;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 16px;
    font-family: var(--font-primary);
    cursor: pointer;
    margin-top: 10px;
    transition: .3s;
}

.submit-btn:hover {
    background: #d9571f;
}

/* RIGHT SIDE */

.contact-right p {
    margin-bottom: 20px;
    color: #444;
}

.contact-right img {
    width: 100%;
    border-radius: 10px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.main-footer {
    padding: 50px 0 30px;
    color: var(--color-dark-text);
    font-size: 16px;
}

.main-footer .container {
    max-width: 1570px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 10px;
}

.footer-logo img {
    max-width: 135px;
    margin: 0 auto;
    height: auto;
    display: block;
}

.footer-grid {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: var(--font-weight-medium);
    color: var(--color-dark-text);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--color-dark-text);
    transition: var(--transition-base);
    font-size: 16px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

/* Footer Social Icons */

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

.social-list li {
    margin-bottom: 10px;
    max-width: fit-content;
}

.social-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-dark-text);
    transition: var(--transition-base);
}

.social-list img {
    width: 24px;
    height: 24px;
    transition: var(--transition-base);
}

.info-right img {
    max-width: 20px;
}

.social-list li a:hover img {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--color-gray-light);
    padding-top: 20px;
    font-size: 13px;
    color: #555;
}

/* ============================================================================
   Tour Detail 
   ============================================================================ */
body.single-tours .info-left i, body.page-template-Waiver .info-left i {
    color: var(--color-primary);
}

body.single-tours .info-right, body.page-template-Waiver .info-right {
    display: flex;
    filter: invert(1);
}

body.single-tours .info-bar span, body.page-template-Waiver .info-bar span {
    color: var(--color-black);
}

body.single-tours header, body.page-template-Waiver header {
    background: var(--color-white);
    position: relative;
}

body.single-tours .nav-links ul li a, body.page-template-Waiver .nav-links ul li a {
    color: var(--color-black);
}

body.single-tours .navbar.sticky, body.page-template-Waiver .navbar.sticky {
    background: var(--color-white);
}

/* template */
.tour-detail-template {
    padding: var(--spacing-lg);
    border-bottom: 1px solid #ccc;
}

.single-tour-img-slider {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.single-tour-img-slider .img-slide .img-full {
    width: 100%;
}

.tour-detail-template h1 {
    margin-bottom: 40px;
    font-size: clamp(30px, 3.5vw, 50px);
    font-family: var(--font-suwargi);
    font-weight: 400;
}

.single-tour-img-slider .slick-prev,
.single-tour-img-slider .slick-next {
    z-index: 1;
    width: 50px;
    height: 50px;
}

.single-tour-img-slider .slick-prev::before,
.single-tour-img-slider .slick-next::before {
    font-size: 50px;
    color: #000;
}

.single-tour-img-slider .slick-next {
    right: 25px;
}

.single-tour-img-slider .slick-prev {
    left: 25px;
}

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

body.single-tours .hamburger {
    color: #000;
}

.tour-detail-content h3 {
    font-size: clamp(24px, 2.5vw, 40px);
    font-family: var(--font-suwargi);
    font-weight: 400;
    margin-bottom: 20px;
}

.tour-detail-content p,
.tour-detail-content li {
    font-size: 18px;
    margin-bottom: 20px;
}

.tour-detail-content .featured-points {
    list-style: none;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.tour-detail-content .featured-points li .dot {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: block;
    background: #CEBEA3;
    border-radius: 50%;
}

.tour-detail-content .featured-points li {
    display: flex;
    gap: 10px;
}

.tour-detail-content a {
    color: var(--color-primary);
}

.tour-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

hr {
    margin-block: 30px;
}

.cta-box,
.why-list {
    border-radius: 15px;
    border: 1px solid #ccc;
    padding: 25px;
    max-width: 500px;
    margin: 20px auto;
}

.why-list ul {
    list-style: none;
    margin-top: 20px;
}

.why-list ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 10px;
}

.why-list ul li img {
    max-width: 18px;
}

.why-list h3 {
    font-family: var(--font-suwargi);
    font-weight: 400;
    font-size: clamp(20px, 1.75vw, 28px);
}

.cta-box h4 {
    font-size: 20px;
    font-family: var(--font-suwargi);
    font-weight: 400;
}

.tour-price {
    font-size: 22px;
    margin-bottom: 5px;
}

.cta-box small,
.cta-box small * {
    font-size: 15px;
    color: dimgray;
}

.action-buttons {
    margin-top: 20px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

/* ============================================================================
   About Us section
   ============================================================================ */
.about-section {
    padding: 50px 0;
    background-position: top right;
    background-size: 500px;
    background-repeat: no-repeat;
}

.header-point {
    max-width: 655px;
    margin: 0 auto 50px;
    text-align: center;
}

.header-point h2 {
    font-size: clamp(30px, 3.5vw, 60px);
    font-family: var(--font-suwargi);
    font-weight: 400;
    margin-bottom: 20px;
}

.header-point p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* team section */
.team-section {
    background: #FFFAF0;
    padding: 50px 0;
}

.team-section .container {
    max-width: 100%;
    margin: auto;
}

.team-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

/* GRID */

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.img-odd-slider .odd-slide img {
    max-width: 100%;
    padding: 0 10px;

}

.img-odd-slider .slick-slide:nth-child(odd) .odd-slide {
    margin-top: 5vw;
}

/* CARD */

.team-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 18px;
    padding: 15px;
    gap: 30px;
    align-items: center;
}

/* CONTENT */

.team-role {
    color: #e96a2c;
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.team-name {
    font-size: clamp(30px, 3.5vw, 60px);
    font-family: var(--font-suwargi);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 14px;
    color: #444;
}

/* IMAGE */

.team-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* ==============================================
   Coming Soon
   ============================================== */

.coming-wrapper {
    min-height: 100vh;
    background: #f2eceb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding-block: 20px;
}

/* Content */

.coming-content {
    position: relative;
    z-index: 2;
    max-width: 590px;
    padding-inline: 20px;
}

.coming-content img {
    width: 100%;
    max-width: 100%;
}

.coming-content h3 {
    font-weight: 400;
    font-size: clamp(20px, 2vw, 30px);
    margin-bottom: 20px;
}

.coming-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

/* ============================================================================
   Gallery
   ============================================================================ */
.img-gallery-section,
.vid-gallery-section {
    padding: 50px 0;
}

.gallery-grid,
.vid-grid {
    padding: 0 var(--spacing-lg);
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vid-grid {
    grid-template-columns: repeat(6, 1fr);
}

.vid-grid .video-wrapper {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 10px;
}

.vid-grid .video-wrapper img {
    border-radius: 10px;
}

.vid-grid .video-wrapper:first-child {
    grid-column: span 4;
    grid-row: span 4;
}

.grid-item img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.grid-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

/* Lightbox Gallery Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: white;
    font-size: 16px;
    margin-top: 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-counter {
    min-width: 60px;
    text-align: center;
    font-weight: 500;
}

.image-box-item img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.private-tour-info .tours-card ul {
    padding-left: 1.5rem;
}

.private-tour-info .tours-card ul li::marker {
    color: #f26422;
    font-size: 25px;
}

.private-tour-info .tours-card li {
    font-size: clamp(20px, 1.25vw, 25px);
}

.tours-container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
}

section.private-tour-info {
    padding-block: 20px;
}

/* ============================================================================
   Private Tour Contact form
   ============================================================================ */
.private-tour {
    padding: 50px 0;
}

.pt-form-container {
    max-width: 1530px;
    padding: var(--spacing-base);
    margin: auto;
    display: flex;
    gap: 160px;
    align-items: start;
}

.tour-info h2 {
    font-family: var(--font-suwargi);
    margin-bottom: 20px;
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 400;
}

.subtitle {
    color: #555;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tour-info h3 {
    margin-bottom: 15px;
    font-family: var(--font-suwargi);
    font-weight: 400;
}

.expect-list {
    list-style: none;
    padding: 0;
}

.expect-list li {
    margin-bottom: 14px;
    font-size: 20px;
    padding-left: 20px;
    position: relative;
    color: #333;
}

.expect-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff6a00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* FORM */

.tour-form {
    max-width: 850px;
    background: #F8F8F8;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 0 1px #e5e5e5;
}

.tour-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tour-form input,
.tour-form textarea {
    width: 100%;
    padding: 20px 15px;
    line-height: 1.5;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 18px;
    font-family: var(--font-primary);
}

.tour-form textarea {
    height: 220px;
    resize: none;
}

.checkbox {
    display: flex;
    gap: 10px;
    font-size: 17px;
    color: #666;
    align-items: flex-start;
}

.tour-info {
    max-width: 512px;
}

.checkbox input[type="checkbox"] {
    max-width: 100%;
    margin-top: 3px;
    width: 25px;
    height: 25px;
}

form .btn-primary {
    font-family: var(--font-primary);
    padding: 20px 30px;
    font-size: 16px;
    max-width: fit-content;
}

/* ============================================================================
   RESPONSIVE DESIGN | TABLETS & SMALLER SCREENS
   ============================================================================ */

@media (max-width: 1400px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Large tablets (1200px and below) */
@media (max-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .tour-detail-template {
        padding: 0 var(--spacing-base) 50px;
    }

    .tour-detail-content .featured-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        background-size: 300px;
    }
}

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .info-bar {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .search-form {
        flex-direction: column;
        border-radius: 20px;
        gap: 0;
    }

    .select-wrapper,
    .date-wrapper {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 15px;
    }

    .date-wrapper {
        border-left: none;
    }

    .search-form button {
        width: 100%;
        padding: 15px;
        border-radius: 0;
    }

    .container {
        padding: 0 var(--spacing-base);
    }

    .testimonial-text {
        text-align: left;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .testimonial-right {
        max-width: 100%;
    }

    .testimonial-arrows {
        justify-content: center;
    }

    .container {
        flex-direction: column;
    }

    .step-2 {
        margin-left: 0;
    }
	
	.help-card {
		right: auto;
        bottom: auto;
        position: relative;
        margin-block: 30px;
        width: 100%;
	}
	
	.help-icon {
    	margin-inline: auto;
	}

    .image-wrapper {
        width: 100%;
        height: 500px;
    }

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

    .tour-content h3 {
        font-size: 26px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .planning-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .planning-content h2 {
        font-size: 40px;
    }

    .desk-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .support-grid::after {
        display: none;
    }

    .support-left p {
        margin: auto;
    }

    .tours-card {
        grid-template-columns: 1fr;
    }

    .pt-form-container {
        flex-direction: column;
        gap: 20px;
    }
}

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

    .tour-detail-template .tour-detail-grid .tour-detail-content {
        order: 2;
    }

    .tour-detail-template .tour-detail-grid .tour-detail-box {
        order: 1;
    }

    .cta-box,
    .why-list {
        margin-left: 0;
    }

    .about-section {
        background-size: 0;
    }

    .pt-form-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    header {
        padding-inline: var(--spacing-base);
    }

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

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

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

    .section-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 30px;
    }

    .activity-item span {
        font-size: 18px;
        bottom: 40px;
    }

    .video-wrapper {
        border-radius: 20px;
    }

    .video-wrapper video {
        border-radius: 20px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .social-list {
        justify-content: center;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-arrows {
        justify-content: space-between;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        padding: 0 15px;
    }

    .testimonial-item {
        padding: 0 50px;
    }

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

    .team-card {
        grid-template-columns: 1fr;
    }
	
	.planning-tour.reverse .planning-grid {
		grid-template-columns: 1fr;
	}
	.footer-logo img {
		margin-left: auto;
	}
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-list li a {
        justify-content: center;
    }

    .hero-content {
        width: 100%;
    }

    .section-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .form-heading {
        font-size: 24px;
    }

    .search-form {
        max-width: 100%;
        margin: 15px auto 25px;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar.sticky {
        padding: 10px 15px;
    }

    .logo,
    .logo img {
        max-width: 100px;
    }
}