/* =========================================================
   LOVELY TOUR AND TRAVELS
   FINAL PREMIUM RESPONSIVE CSS
   Mobile • Tablet • Laptop • Desktop
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --navy: #0b1f3a;
    --navy-2: #102f56;

    --blue: #1479ff;
    --blue-dark: #0757c9;

    --yellow: #f4b942;
    --orange: #ff7a30;

    --green: #25d366;
    --red: #ef4444;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-blue: #edf5ff;

    --dark: #172033;
    --text: #536174;
    --border: #e4e9f0;

    --shadow-sm:
        0 8px 25px rgba(11, 31, 58, 0.08);

    --shadow:
        0 18px 50px rgba(11, 31, 58, 0.12);

    --shadow-lg:
        0 25px 70px rgba(11, 31, 58, 0.18);

    --radius: 20px;
    --radius-sm: 12px;

    --transition: 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--dark);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at top right,
            #174f91 0,
            transparent 35%
        ),
        var(--navy);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.preloader-content p {
    color: var(--yellow);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.preloader-content img {
    width: 100px;
    height: 100px;

    object-fit: contain;

    margin: 0 auto 18px;

    animation:
        logoPulse 1.6s ease-in-out infinite;
}

.preloader-content h1 {
    font-size:
        clamp(
            28px,
            5vw,
            52px
        );

    line-height: 1.05;

    letter-spacing: 2px;
}

.loader-line {
    width: 180px;
    height: 4px;

    margin: 28px auto 0;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--yellow),
            var(--orange)
        );

    border-radius: 100px;

    animation:
        loader 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes loader {
    0% {
        transform: scaleX(0.35);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.35);
        opacity: 0.5;
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    min-height: 96px;

    background:
        linear-gradient(
            135deg,
            #0b1f3a 0%,
            #102f56 55%,
            #1479ff 100%
        );

    border-bottom:
        1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 8px 30px rgba(5,19,39,0.20);

    backdrop-filter: blur(15px);
}

.header-inner {
    min-height: 96px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: max-content;

    overflow: visible !important;

    position: relative;

    z-index: 20;
}

.logo img {
    width: 125px !important;
    height: 125px !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: contain !important;

    flex: 0 0 125px !important;

    position: relative;

    z-index: 30;
}

.logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1.05;
}

.logo-text strong {
    color: var(--white);

    font-size: 19px;

    font-weight: 900;
}

.logo-text span {
    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    margin-top: 5px;
}


/* =========================================================
   LOGO VISUAL ZOOM
   ========================================================= */

.logo img {
    transform: scale(1.12);
    transform-origin: center;
}

@media (max-width: 820px) {
    .logo img {
        transform: scale(1.09);
    }
}

@media (max-width: 600px) {
    .logo img {
        transform: scale(1.07);
    }
}

@media (max-width: 480px) {
    .logo img {
        transform: scale(1.06);
    }
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 22px;
}

.desktop-nav a {
    position: relative;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    padding: 30px 0;

    transition: var(--transition);
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 22px;

    width: 0;

    height: 3px;

    border-radius: 20px;

    background: var(--yellow);

    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--yellow);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER CALL
========================================================= */

.header-call {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: var(--navy);

    background: var(--yellow);

    padding: 12px 18px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 900;

    white-space: nowrap;

    box-shadow:
        0 8px 22px
        rgba(244,185,66,0.25);

    transition: var(--transition);
}

.header-call:hover {
    color: var(--white);

    background: var(--blue);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    place-items: center;

    border-radius: 12px;

    color: var(--navy);

    background: var(--yellow);

    font-size: 22px;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.18);
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;
}

.hero-slider {
    position: relative;

    height: 64vh;

    min-height: 520px;

    max-height: 720px;
}

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;

    visibility: visible;
}

.hero-image {
    position: absolute;

    inset: 0;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    transform: scale(1.04);

    transition:
        transform 6s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-image-one {
    background-image:
        url("images/h1.jpg");
}

.hero-image-two {
    background-image:
        url("images/h2.jpg");
}

.hero-image-three {
    background-image:
        url("images/h3.jpg");
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,19,39,0.88) 0%,
            rgba(5,19,39,0.62) 45%,
            rgba(5,19,39,0.18) 100%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    color: var(--white);
}

.hero-tag {
    display: inline-flex;

    padding: 8px 13px;

    margin-bottom: 18px;

    color: var(--navy);

    background: var(--yellow);

    border-radius: 100px;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.3px;
}

.hero-content h1,
.hero-content h2 {
    max-width: 700px;

    font-size:
        clamp(
            40px,
            6vw,
            76px
        );

    line-height: 0.98;

    letter-spacing: -2px;
}

.hero-content p {
    max-width: 620px;

    margin-top: 22px;

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

    font-size:
        clamp(
            15px,
            2vw,
            18px
        );
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 100px;

    font-size: 14px;

    font-weight: 900;

    transition: var(--transition);
}

.btn-gold {
    color: var(--navy);

    background: var(--yellow);

    box-shadow:
        0 12px 28px
        rgba(244,185,66,0.28);
}

.btn-gold:hover {
    transform: translateY(-3px);

    background: var(--white);
}

.btn-whatsapp {
    color: var(--white);

    background: var(--green);

    box-shadow:
        0 12px 28px
        rgba(37,211,102,0.22);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);

    background: #1fba58;
}

.btn-outline {
    color: var(--white);

    border:
        2px solid
        rgba(255,255,255,0.75);

    background: transparent;
}

.btn-outline:hover {
    color: var(--navy);

    background: var(--white);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow {
    position: absolute;

    z-index: 5;

    top: 50%;

    width: 48px;
    height: 48px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    color: var(--white);

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );

    backdrop-filter: blur(8px);

    font-size: 30px;

    line-height: 1;

    transition: var(--transition);
}

.hero-arrow:hover {
    color: var(--navy);

    background: var(--yellow);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots {
    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 24px;

    transform:
        translateX(-50%);

    display: flex;

    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.5
        );

    transition: var(--transition);
}

.hero-dot.active {
    width: 30px;

    border-radius: 100px;

    background: var(--yellow);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 650px;

    margin-bottom: 50px;
}

.section-heading.centered {
    margin-inline: auto;

    text-align: center;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}

.section-heading h2,
.category-heading h2 {
    color: var(--navy);

    font-size:
        clamp(
            32px,
            5vw,
            52px
        );

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.section-heading p,
.category-heading p {
    margin-top: 15px;

    color: var(--text);
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #f3f7fc;
}

.about-layout {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 70px;

    align-items: center;
}

.about-content h2 {
    color: var(--navy);

    font-size:
        clamp(
            32px,
            5vw,
            52px
        );

    line-height: 1.06;

    letter-spacing: -1.5px;
}

.about-content p {
    max-width: 650px;

    margin-top: 20px;

    color: var(--text);
}

.text-button {
    display: inline-flex;

    margin-top: 25px;

    color: var(--blue);

    font-weight: 900;

    transition: var(--transition);
}

.text-button:hover {
    color: var(--orange);

    transform:
        translateX(5px);
}


/* =========================================================
   ABOUT CARD
========================================================= */

.about-card {
    min-height: 390px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;

    border-radius: 30px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--blue-dark)
        );

    box-shadow: var(--shadow-lg);

    position: relative;

    overflow: hidden;
}

.about-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background: var(--yellow);

    opacity: 0.2;
}

.about-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.2;
}

.about-card img {
    position: relative;

    z-index: 1;

    width: 140px;
    height: 140px;

    object-fit: contain;

    margin-bottom: 25px;
}

.about-card span {
    position: relative;

    z-index: 1;

    color: var(--yellow);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 3px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #eaf4ff;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0,1fr)
        );

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 30px 24px;

    min-height: 280px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: var(--transition);
}

.service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--yellow),
            var(--orange)
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition: var(--transition);
}

.service-card:hover {
    transform:
        translateY(-9px);

    box-shadow: var(--shadow);
}

.service-card:hover::after {
    transform:
        scaleX(1);
}

.service-number {
    color: var(--orange);

    font-size: 12px;

    font-weight: 900;
}

.service-icon {
    margin: 28px 0 18px;

    font-size: 38px;
}

.service-card h3 {
    color: var(--navy);

    font-size: 18px;

    line-height: 1.2;
}

.service-card p {
    margin-top: 12px;

    color: var(--text);

    font-size: 14px;
}


/* =========================================================
   TOURS
========================================================= */

.tours {
    background: #f5f1ff;
}

.main-tour-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 22px;
}

.main-tour-card {
    overflow: hidden;

    border-radius: 22px;

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.main-tour-card:hover {
    transform:
        translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.tour-cover {
    position: relative;

    height: 245px;

    overflow: hidden;
}

.tour-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.main-tour-card:hover
.tour-cover img {
    transform:
        scale(1.08);
}

.tour-cover-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 25px;

    color: var(--white);

    background:
        linear-gradient(
            transparent 25%,
            rgba(5,19,39,0.88)
        );
}

.tour-cover-overlay span {
    color: var(--yellow);

    font-size: 12px;

    font-weight: 900;
}

.tour-cover-overlay h3 {
    margin-top: 5px;

    font-size: 23px;

    line-height: 1.1;
}

.main-tour-content {
    padding: 23px;
}

.main-tour-content p {
    color: var(--text);

    font-size: 14px;
}

.card-actions {
    display: flex;

    gap: 9px;

    margin-top: 20px;
}

.outline-btn,
.dark-btn {
    flex: 1;

    min-height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 8px 12px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 900;

    transition: var(--transition);
}

.outline-btn {
    color: var(--blue);

    border:
        1.5px solid var(--blue);

    background: transparent;
}

.outline-btn:hover {
    color: var(--white);

    background: var(--blue);
}

.dark-btn {
    color: var(--white);

    background: var(--navy);
}

.dark-btn:hover {
    background: var(--orange);
}


/* =========================================================
   TOUR MODAL
========================================================= */

.tour-modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.tour-modal.active {
    opacity: 1;

    visibility: visible;
}

.tour-modal-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(
            3,
            13,
            28,
            0.82
        );

    backdrop-filter: blur(7px);
}

.tour-modal-box {
    position: relative;

    z-index: 2;

    width:
        min(
            950px,
            100%
        );

    max-height: 92vh;

    overflow-y: auto;

    border-radius: 25px;

    background: var(--white);

    box-shadow: var(--shadow-lg);

    transform:
        translateY(30px)
        scale(0.97);

    transition:
        transform 0.4s ease;
}

.tour-modal.active
.tour-modal-box {
    transform:
        translateY(0)
        scale(1);
}

.modal-close {
    position: absolute;

    z-index: 10;

    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--navy);

    background: var(--white);

    font-size: 28px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.modal-close:hover {
    color: var(--white);

    background: var(--orange);

    transform:
        rotate(90deg);
}

.modal-hero {
    position: relative;

    height: 320px;

    overflow: hidden;
}

.modal-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.modal-hero-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    color: var(--white);

    background:
        linear-gradient(
            transparent 20%,
            rgba(5,19,39,0.9)
        );
}

.modal-hero-overlay span {
    color: var(--yellow);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}

.modal-hero-overlay h2 {
    margin-top: 4px;

    font-size:
        clamp(
            30px,
            5vw,
            48px
        );

    line-height: 1;
}

.modal-hero-overlay p {
    max-width: 650px;

    margin-top: 10px;

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );
}

.modal-content {
    padding: 30px;
}

.modal-tour-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 20px;
}

.modal-tour-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.modal-tour-card:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow);
}

.modal-tour-image {
    height: 190px;

    overflow: hidden;
}

.modal-tour-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}

.modal-tour-card:hover
.modal-tour-image img {
    transform:
        scale(1.06);
}

.modal-tour-info {
    padding: 20px;
}

.modal-tour-info h3 {
    color: var(--navy);

    font-size: 20px;
}

.modal-tour-info p {
    margin-top: 8px;

    color: var(--text);

    font-size: 14px;
}

.modal-book-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 43px;

    margin-top: 15px;

    border-radius: 10px;

    color: var(--white);

    background: var(--blue);

    font-size: 13px;

    font-weight: 900;

    transition: var(--transition);
}

.modal-book-btn:hover {
    background: var(--orange);
}


/* =========================================================
   POPULAR DESTINATIONS
========================================================= */

.popular-destinations {
    background:
        linear-gradient(
            135deg,
            var(--navy),
            #123c6d
        );
}

.light-heading
.section-kicker {
    color: var(--yellow);
}

.light-heading h2 {
    color: var(--white);
}

.light-heading p {
    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}

.popular-grid {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0,1fr)
        );

    gap: 18px;
}

.popular-card {
    overflow: hidden;

    border-radius: 17px;

    background: var(--white);

    transition: var(--transition);
}

.popular-card:hover {
    transform:
        translateY(-7px);

    box-shadow: var(--shadow-lg);
}

.popular-image {
    height: 190px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #fef3c7
        );
}

.popular-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}

.popular-card:hover
.popular-image img {
    transform:
        scale(1.06);
}

.popular-content {
    padding: 18px;
}

.popular-content h3 {
    color: var(--navy);

    font-size: 16px;

    line-height: 1.25;
}

.popular-book {
    display: inline-block;

    margin-top: 12px;

    color: var(--blue);

    font-size: 13px;

    font-weight: 900;

    transition: var(--transition);
}

.popular-book:hover {
    color: var(--orange);

    transform:
        translateX(4px);
}


/* =========================================================
   VEHICLES
========================================================= */

.vehicles {
    background: #f1f5f9;
}

.vehicle-grid {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0,1fr)
        );

    gap: 20px;
}

.vehicle-card {
    overflow: hidden;

    border-radius: 20px;

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.vehicle-card:hover {
    transform:
        translateY(-7px);

    box-shadow: var(--shadow);
}

.vehicle-image {
    height: 190px;

    overflow: hidden;

    background: #edf2f7;
}

.vehicle-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}

.vehicle-card:hover
.vehicle-image img {
    transform:
        scale(1.06);
}

.vehicle-info {
    padding: 18px;
}

.vehicle-info h3 {
    color: var(--navy);

    font-size: 18px;
}

.vehicle-info p {
    margin-top: 3px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us {
    background: #fff7e8;
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 20px;
}

.why-item {
    padding: 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f9ff
        );

    border:
        1px solid var(--border);

    transition: var(--transition);
}

.why-item:hover {
    transform:
        translateY(-6px);

    border-color: var(--blue);

    box-shadow: var(--shadow);
}

.why-item > span {
    color: var(--orange);

    font-size: 13px;

    font-weight: 900;
}

.why-item h3 {
    margin-top: 20px;

    color: var(--navy);

    font-size: 19px;
}

.why-item p {
    margin-top: 10px;

    color: var(--text);

    font-size: 14px;
}


/* =========================================================
   HAPPY CUSTOMERS
========================================================= */

.happy-customers {
    background: #eef8f5;
}

.customer-slider {
    overflow: hidden;

    border-radius: 22px;
}

.customer-track {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap: 15px;
}

.customer-photo {
    height: 280px;

    overflow: hidden;

    border-radius: 17px;

    background: #dce7f5;
}

.customer-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: var(--transition);
}

.customer-photo:hover img {
    transform:
        scale(1.06);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    background: #f7f9fc;
}

.review-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 22px;
}

.review-card {
    padding: 30px;

    border-radius: 20px;

    background: var(--off-white);

    border:
        1px solid var(--border);

    transition: var(--transition);
}

.review-card:hover {
    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}

.stars {
    color: var(--yellow);

    font-size: 20px;

    letter-spacing: 2px;
}

.review-card p {
    margin-top: 18px;

    color: var(--text);

    font-size: 15px;
}

.review-card strong {
    display: block;

    margin-top: 20px;

    color: var(--navy);

    font-size: 14px;
}


/* =========================================================
   BOOKING
========================================================= */

.booking {
    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #edf5ff
        );
}

.booking-layout {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 60px;

    align-items: start;
}

.booking-intro {
    position: sticky;

    top: 110px;
}

.booking-intro h2 {
    color: var(--navy);

    font-size:
        clamp(
            34px,
            5vw,
            54px
        );

    line-height: 1;

    letter-spacing: -1.5px;
}

.booking-intro p {
    max-width: 480px;

    margin-top: 20px;

    color: var(--text);
}

.booking-phone {
    display: inline-flex;

    margin-top: 25px;

    color: var(--blue);

    font-weight: 900;
}

.booking-form {
    padding: 32px;

    border-radius: 25px;

    background: var(--white);

    box-shadow: var(--shadow);
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 16px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 11px;

    outline: none;

    color: var(--dark);

    background: var(--white);

    padding: 13px 14px;

    transition: var(--transition);
}

.form-field textarea {
    resize: vertical;

    min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 4px
        rgba(
            20,
            121,
            255,
            0.08
        );
}

.submit-booking {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    border-radius: 13px;

    color: var(--white);

    background: var(--green);

    font-weight: 900;

    box-shadow:
        0 12px 25px
        rgba(
            37,
            211,
            102,
            0.2
        );

    transition: var(--transition);
}

.submit-booking:hover {
    background: #1fb957;

    transform:
        translateY(-2px);
}


/* =========================================================
   POLICIES
========================================================= */

.policies {
    padding: 25px 0;

    background: #08182d;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}

.policy-links {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px 25px;
}

.policy-links a {
    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size: 13px;

    transition: var(--transition);
}

.policy-links a:hover {
    color: var(--yellow);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    background: var(--navy);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 60px;

    padding: 75px 0;
}

.footer-brand .footer-logo {
    width: 85px;
    height: 85px;

    object-fit: contain;

    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--white);

    font-size: 22px;
}

.footer-brand p,
.footer-brand address {
    max-width: 450px;

    margin-top: 10px;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 14px;

    font-style: normal;
}

.footer h4 {
    margin-bottom: 18px;

    color: var(--yellow);

    font-size: 15px;
}

.footer-contact,
.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-contact a,
.footer-links a {
    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 14px;

    transition: var(--transition);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--yellow);

    transform:
        translateX(4px);
}

.footer-bottom {
    padding: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    font-size: 12px;
}

.footer-bottom strong {
    color: var(--yellow);
}


/* =========================================================
   FLOATING CALL + WHATSAPP
========================================================= */

.floating-actions {
    position: fixed;

    right: 20px;

    bottom: 22px;

    z-index: 3000;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-call,
.floating-whatsapp {
    display: flex;

    align-items: center;

    gap: 9px;

    min-height: 48px;

    padding:
        0 16px 0 12px;

    border-radius: 100px;

    color: var(--white);

    box-shadow:
        0 10px 28px
        rgba(
            0,
            0,
            0,
            0.2
        );

    transition: var(--transition);
}

.floating-call {
    background: var(--blue);
}

.floating-whatsapp {
    background: var(--green);
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform:
        translateX(-5px)
        scale(1.03);
}

.floating-icon,
.whatsapp-icon {
    width: 31px;
    height: 31px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: currentColor;

    background:
        rgba(
            255,
            255,
            255,
            0.18
        );

    font-size: 16px;
}

.whatsapp-icon {
    font-size: 19px;
}

.floating-label,
.whatsapp-label {
    font-size: 12px;

    font-weight: 900;
}


/* =========================================================
   LARGE TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 13px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .header-call {
        padding:
            10px 13px;
    }

    .services-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            );
    }

    .main-tour-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .popular-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            );
    }

    .vehicle-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            );
    }

    .why-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 820px) {

    .section {
        padding: 75px 0;
    }

    .site-header {
        min-height: 88px;
    }

    .header-inner {
        min-height: 88px;
    }

    .desktop-nav,
    .header-call {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
    }

    .logo img {
        width: 105px !important;
        height: 105px !important;

        flex: 0 0 105px !important;
    }

    .mobile-nav {
        display: flex;

        flex-direction: column;

        max-height: 0;

        overflow: hidden;

        background:
            linear-gradient(
                135deg,
                #0b1f3a,
                #102f56
            );

        transition:
            max-height 0.4s ease;
    }

    .mobile-nav.active {
        max-height: 500px;

        border-top:
            1px solid
            rgba(
                255,
                255,
                255,
                0.12
            );
    }

    .mobile-nav a {
        padding: 14px 20px;

        color: var(--white);

        font-size: 14px;

        font-weight: 800;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.10
            );
    }

    .mobile-nav a:hover {
        color: var(--yellow);

        background:
            rgba(
                255,
                255,
                255,
                0.05
            );
    }

    .hero-slider {
        height: 62vh;

        min-height: 520px;
    }

    .about-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-card {
        min-height: 320px;
    }

    .services-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .popular-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .vehicle-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .customer-track {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .booking-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .booking-intro {
        position: static;
    }

    .footer-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap: 40px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 28px);
    }

    .section {
        padding: 60px 0;
    }

    .logo {
        gap: 7px;
    }

    .logo img {
        width: 92px !important;
        height: 92px !important;

        flex: 0 0 92px !important;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .site-header {
        min-height: 82px;
    }

    .header-inner {
        min-height: 82px;
    }

    .hero-slider {
        height: 67vh;

        min-height: 500px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5,19,39,0.9),
                rgba(5,19,39,0.5)
            );
    }

    .hero-content {
        justify-content: center;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size:
            clamp(
                38px,
                11vw,
                58px
            );

        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        min-height: 48px;

        padding: 0 17px;

        font-size: 13px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;

        font-size: 25px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 17px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .category-heading h2,
    .about-content h2 {
        font-size: 34px;
    }

    .services-grid,
    .main-tour-grid,
    .popular-grid,
    .vehicle-grid,
    .why-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .tour-cover {
        height: 230px;
    }

    .popular-image {
        height: 220px;
    }

    .vehicle-image {
        height: 220px;
    }

    .customer-track {
        grid-template-columns: 1fr;
    }

    .customer-photo {
        height: 300px;
    }

    .review-card {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .booking-form {
        padding: 22px;

        border-radius: 18px;
    }

    .policy-links {
        gap: 10px 17px;
    }

    .policy-links a {
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 55px 0;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .floating-actions {
        right: 12px;

        bottom: 14px;
    }

    .floating-call,
    .floating-whatsapp {
        min-height: 46px;

        padding-right: 13px;
    }

    .floating-label,
    .whatsapp-label {
        font-size: 11px;
    }

    .modal-hero {
        height: 250px;
    }

    .modal-hero-overlay {
        padding: 23px;
    }

    .modal-hero-overlay h2 {
        font-size: 32px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-tour-grid {
        grid-template-columns: 1fr;
    }

    .modal-tour-image {
        height: 200px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-header {
        min-height: 78px;
    }

    .header-inner {
        min-height: 78px;
    }

    .logo img {
        width: 82px !important;
        height: 82px !important;

        flex: 0 0 82px !important;
    }

    .logo-text strong {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .hero-slider {
        min-height: 540px;
    }

    .hero-tag {
        font-size: 9px;

        letter-spacing: 1px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .floating-label,
    .whatsapp-label {
        display: none;
    }

    .floating-call,
    .floating-whatsapp {
        width: 48px;
        height: 48px;

        padding: 0;

        justify-content: center;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .logo img {
        width: 75px !important;
        height: 75px !important;

        flex: 0 0 75px !important;
    }

    .logo-text strong {
        font-size: 13px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 33px;
    }
}


/* =========================================================
   POLICY PAGE SUPPORT
   Same blue header on all policy pages
========================================================= */

body.policy-page .site-header,
body.privacy-page .site-header,
body.payment-page .site-header,
body.booking-policy-page .site-header,
body.cancellation-page .site-header,
body.terms-page .site-header {
    background:
        linear-gradient(
            135deg,
            #0b1f3a 0%,
            #102f56 55%,
            #1479ff 100%
        );
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline:
        3px solid var(--yellow);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
/* ABOUT IMAGE - BIG & PREMIUM */

.about-card {
    padding: 0 !important;
    min-height: 430px !important;
    overflow: hidden !important;
    border-radius: 30px !important;
}

.about-card img {
    width: 100% !important;
    height: 430px !important;
    max-width: none !important;
    object-fit: cover !important;
    margin: 0 !important;
    border-radius: 30px !important;
    display: block !important;
}

@media (max-width: 600px) {
    .about-card {
        min-height: 300px !important;
    }

    .about-card img {
        height: 300px !important;
    }
}
/* =========================================================
   VEHICLE BOOK NOW BUTTON
========================================================= */

.vehicle-info {
    position: relative;
}

.vehicle-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 12px;

    min-height: 40px;
    padding: 0 16px;

    border-radius: 10px;

    color: var(--white);
    background: var(--blue);

    font-size: 12px;
    font-weight: 900;

    transition: var(--transition);
}

.vehicle-book-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

@media (min-width: 601px) {

    .vehicle-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .vehicle-info p {
        margin-right: auto;
    }

    .vehicle-book-btn {
        margin-top: 0;
        flex-shrink: 0;
    }

}
/* FIX: BACKGROUND DISAPPEARING WHILE SCROLLING */

.hero-image {
    transform: none;
    will-change: auto;
}

.hero-slide.active .hero-image {
    transform: none;
}

.tour-cover img,
.vehicle-image img,
.popular-image img,
.customer-photo img {
    will-change: auto;
}
/* ===== SCROLL BACKGROUND FIX ===== */

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
}

section {
    position: relative;
}

img {
    transform: none;
    will-change: auto;
}

.hero-image,
.tour-cover img,
.vehicle-image img,
.popular-image img,
.customer-photo img {
    will-change: auto;
}