/* =========================================================
   KASHMIR SELF DRIVE
   PREMIUM RESPONSIVE CSS
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --black: #080908;
    --black-soft: #101210;
    --black-card: #151815;

    --gold: #d69b32;
    --gold-light: #f0c36a;
    --gold-dark: #a96f16;

    --green: #173d2c;
    --green-light: #2e6848;

    --blue: #1d5267;
    --blue-light: #5da7bd;

    --white: #ffffff;
    --white-soft: #eeeeea;
    --grey: #a9aaa4;
    --grey-dark: #696c66;

    --border: rgba(255,255,255,0.11);
    --gold-border: rgba(214,155,50,0.45);

    --container: 1200px;

    --radius: 16px;
    --radius-small: 10px;

    --shadow:
        0 20px 60px rgba(0,0,0,0.28);

    --transition:
        0.35s ease;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    background: var(--black);

    color: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}

img {

    width: 100%;

    display: block;

    object-fit: cover;

}

a {

    color: inherit;

    text-decoration: none;

}

button,
input {

    font: inherit;

}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--gold);

    color: var(--black);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.8px;

}

.top-bar-inner {

    min-height: 34px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(8,9,8,0.93);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid var(--border);

}

.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

    flex-shrink: 0;

}

.logo-main {

    font-family:
        "Playfair Display",
        serif;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--gold-light);

}

.logo-sub {

    font-size: 9px;

    letter-spacing: 4px;

    color: var(--white);

    margin-top: 6px;

}


/* =========================================================
   NAV
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 23px;

}

.main-nav a {

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    color: var(--white-soft);

    transition: var(--transition);

}

.main-nav a:hover {

    color: var(--gold-light);

}

.nav-book-btn {

    background: var(--gold);

    color: var(--black) !important;

    padding: 12px 18px;

    border-radius: 6px;

    font-weight: 800;

}

.nav-book-btn:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {

    display: none;

    border: 1px solid var(--border);

    background: transparent;

    color: var(--white);

    width: 42px;

    height: 42px;

    border-radius: 8px;

    cursor: pointer;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 780px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}

.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            #17211c,
            #080908
        );

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9) 0%,
            rgba(0,0,0,0.67) 46%,
            rgba(0,0,0,0.2) 100%
        );

}

.hero-content {

    position: relative;

    z-index: 2;

    padding: 100px 0;

}

.eyebrow,
.section-label {

    display: block;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 16px;

}

.hero h1 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(54px, 8vw, 105px);

    line-height: 0.94;

    letter-spacing: -3px;

    max-width: 750px;

}

.hero-line {

    width: 80px;

    height: 3px;

    background: var(--gold);

    margin: 30px 0;

}

.hero-tagline {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(25px, 3vw, 38px);

    color: var(--white-soft);

}

.hero-tagline strong {

    color: var(--gold-light);

}

.hero-description {

    max-width: 580px;

    color: #d0d2cc;

    margin-top: 16px;

    font-size: 17px;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;

}

.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    border: 1px solid transparent;

    cursor: pointer;

    transition: var(--transition);

}

.btn-gold {

    background: var(--gold);

    color: var(--black);

}

.btn-gold:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(214,155,50,0.22);

}

.btn-outline {

    border-color:
        rgba(255,255,255,0.5);

    color: var(--white);

}

.btn-outline:hover {

    background: var(--white);

    color: var(--black);

}

.btn-dark {

    background: var(--black);

    color: var(--white);

}

.btn-outline-dark {

    border-color: var(--black);

    color: var(--black);

}

.btn-outline-dark:hover {

    background: var(--black);

    color: var(--white);

}

.large-btn {

    margin-top: 30px;

}

.hero-trust {

    display: flex;

    gap: 38px;

    margin-top: 60px;

}

.hero-trust div {

    display: flex;

    flex-direction: column;

}

.hero-trust strong {

    color: var(--gold-light);

    font-size: 17px;

}

.hero-trust span {

    color: var(--grey);

    font-size: 10px;

    letter-spacing: 1.5px;

}


/* =========================================================
   SEARCH
========================================================= */

.search-section {

    position: relative;

    z-index: 10;

    margin-top: -42px;

}

.search-box {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 9px;

    background:
        rgba(255,255,255,0.96);

    border-radius: 12px;

    box-shadow: var(--shadow);

}

.search-icon {

    color: var(--black);

    font-size: 25px;

    padding-left: 12px;

}

.search-box input {

    flex: 1;

    border: none;

    outline: none;

    min-width: 0;

    font-size: 14px;

    color: var(--black);

}

.search-btn {

    border: none;

    background: var(--gold);

    color: var(--black);

    padding: 14px 24px;

    border-radius: 8px;

    font-weight: 800;

    cursor: pointer;

}

.search-results {

    background: var(--white);

    color: var(--black);

    border-radius: 0 0 10px 10px;

    overflow: hidden;

}

.search-result-item {

    padding: 12px 20px;

    display: flex;

    justify-content: space-between;

    border-bottom: 1px solid #ddd;

}

.search-result-item span {

    color: #777;

    font-size: 11px;

}

.no-results {

    padding: 15px;

    background: var(--white);

    color: var(--black);

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 110px 0;

}

.section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;

}

.section-heading > p {

    max-width: 480px;

    color: var(--grey);

}

.section-heading.centered {

    display: block;

    text-align: center;

}

.section-heading.centered > p {

    margin:
        18px auto 0;

}

h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -2px;

}

h2 span {

    color: var(--gold-light);

}

h3,
h4 {

    line-height: 1.2;

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    background: var(--black);

}

.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 0.7fr;

    gap: 100px;

    align-items: center;

}

.intro-text p {

    max-width: 600px;

    color: var(--grey);

    margin-top: 18px;

}

.text-link {

    display: inline-block;

    margin-top: 25px;

    color: var(--gold-light);

    font-weight: 700;

}

.intro-feature {

    padding: 60px;

    border: 1px solid var(--gold-border);

    background:
        linear-gradient(
            145deg,
            rgba(214,155,50,0.08),
            rgba(255,255,255,0.02)
        );

    border-radius: var(--radius);

}

.feature-number {

    font-size: 13px;

    color: var(--gold);

    margin-bottom: 25px;

}

.intro-feature h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;

}

.intro-feature p {

    color: var(--grey);

    margin-top: 20px;

}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {

    background:
        linear-gradient(
            135deg,
            #101c16,
            #09100d
        );

}

.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--border);

    border-left:
        1px solid var(--border);

}

.benefit-card {

    min-height: 245px;

    padding: 35px;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    transition: var(--transition);

}

.benefit-card:hover {

    background:
        rgba(255,255,255,0.035);

    transform: translateY(-5px);

}

.benefit-icon {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

}

.benefit-card h3 {

    margin:
        25px 0 14px;

    font-size: 17px;

}

.benefit-card p {

    color: var(--grey);

    font-size: 14px;

}


/* =========================================================
   CAR SECTION
========================================================= */

.cars-section {

    background: #0b0c0b;

}

.filter-bar {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 30px;

}

.filter-btn {

    border:
        1px solid var(--border);

    background: transparent;

    color: var(--grey);

    padding: 10px 15px;

    border-radius: 50px;

    cursor: pointer;

    font-size: 10px;

    letter-spacing: 1px;

    font-weight: 700;

    transition: var(--transition);

}

.filter-btn:hover,
.filter-btn.active {

    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);

}


/* =========================================================
   VEHICLE GRID
========================================================= */

.vehicle-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}

.vehicle-card {

    background: var(--black-card);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}

.vehicle-card:hover {

    transform: translateY(-8px);

    border-color: var(--gold-border);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,0.35);

}

.vehicle-image {

    height: 215px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #222821,
            #111
        );

}

.vehicle-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}

.vehicle-card:hover
.vehicle-image img {

    transform: scale(1.06);

}

.vehicle-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: var(--gold);

    color: var(--black);

    padding: 6px 10px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.8px;

    border-radius: 5px;

}

.vehicle-content {

    padding: 22px;

}

.vehicle-type {

    font-size: 9px;

    text-transform: uppercase;

    color: var(--gold);

    letter-spacing: 1.5px;

}

.vehicle-content h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    margin-top: 7px;

}

.vehicle-specs {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7px;

    margin:
        20px 0;

}

.vehicle-specs span {

    font-size: 9px;

    color: var(--grey);

    border:
        1px solid var(--border);

    padding: 7px;

    border-radius: 5px;

}

.vehicle-bottom {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 12px;

    padding-top: 17px;

    border-top:
        1px solid var(--border);

}

.vehicle-bottom small {

    display: block;

    font-size: 8px;

    color: var(--grey);

    letter-spacing: 1px;

}

.vehicle-bottom strong {

    display: block;

    margin-top: 4px;

    color: var(--gold-light);

    font-size: 13px;

}

.book-btn {

    background: transparent;

    border:
        1px solid var(--gold);

    color: var(--gold-light);

    padding: 9px 11px;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;

    transition: var(--transition);

}

.book-btn:hover {

    background: var(--gold);

    color: var(--black);

}


/* =========================================================
   POPULAR
========================================================= */

.popular-section {

    background:
        linear-gradient(
            135deg,
            #17140e,
            #090a09
        );

}

.popular-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}

.popular-card {

    min-height: 250px;

    padding: 35px;

    border:
        1px solid var(--gold-border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(214,155,50,0.09),
            rgba(0,0,0,0.1)
        );

}

.popular-rank {

    font-family:
        "Playfair Display",
        serif;

    color: var(--gold);

    font-size: 42px;

}

.popular-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;

    margin-top: 25px;

}

.popular-card p {

    color: var(--grey);

    margin-top: 8px;

}


/* =========================================================
   BIKES
========================================================= */

.bikes-section {

    background:
        linear-gradient(
            135deg,
            #071416,
            #0a0d0d
        );

}

.bike-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}

.bike-card {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    background: var(--black-card);

}

.bike-image {

    min-height: 290px;

    background: #182220;

}

.bike-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.bike-content {

    padding: 35px;

}

.card-tag {

    color: var(--blue-light);

    font-size: 10px;

    letter-spacing: 1.5px;

}

.bike-content h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;

    margin: 15px 0;

}

.bike-content p {

    color: var(--grey);

}

.bike-price {

    display: block;

    color: var(--gold-light);

    margin:
        25px 0;

    font-weight: 700;

}

.book-bike-btn {

    border: none;

    background: var(--gold);

    color: var(--black);

    padding: 12px 16px;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

}


/* =========================================================
   RATES
========================================================= */

.rates-section {

    background: var(--black);

}

.table-wrapper {

    width: 100%;

    overflow-x: auto;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

}

.rates-table {

    width: 100%;

    min-width: 700px;

    border-collapse: collapse;

}

.rates-table th {

    background: var(--gold);

    color: var(--black);

    padding: 18px;

    text-align: left;

    font-size: 11px;

    letter-spacing: 1px;

}

.rates-table td {

    padding: 17px 18px;

    border-bottom:
        1px solid var(--border);

    color: var(--grey);

    font-size: 13px;

}

.rates-table tr:last-child td {

    border-bottom: none;

}

.rates-table tbody tr {

    transition: var(--transition);

}

.rates-table tbody tr:hover {

    background:
        rgba(255,255,255,0.035);

}

.rates-table td:nth-child(2) {

    color: var(--gold-light);

    font-weight: 700;

}

.rate-note {

    margin-top: 18px;

    padding: 18px 20px;

    border:
        1px solid var(--gold-border);

    border-radius: 10px;

    color: var(--grey);

    font-size: 13px;

}

.rate-note strong {

    color: var(--gold-light);

}


/* =========================================================
   KASHMIR DESTINATIONS
========================================================= */

.kashmir-section {

    background:
        linear-gradient(
            135deg,
            #10291e,
            #08110d
        );

}

.destination-category {

    margin-top: 60px;

}

.category-heading {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;

}

.category-heading h3 {

    color: var(--gold-light);

    font-size: 14px;

    letter-spacing: 2px;

}

.destination-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}

.destination-card {

    background:
        rgba(0,0,0,0.25);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);

}

.destination-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(255,255,255,0.28);

}

.destination-image {

    height: 190px;

    position: relative;

    background: #20342a;

}

.destination-image img {

    height: 100%;

    object-fit: cover;

}

.destination-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: var(--gold);

    color: var(--black);

    padding: 5px 8px;

    font-size: 8px;

    font-weight: 800;

}

.destination-content {

    padding: 20px;

}

.destination-content > span {

    color: var(--grey);

    font-size: 9px;

    letter-spacing: 1px;

}

.destination-content h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 26px;

    margin: 6px 0;

}

.destination-content p {

    color: var(--grey);

    font-size: 12px;

}

.destination-link {

    display: inline-block;

    margin-top: 18px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

}

.mini-destination-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

}

.mini-destination {

    padding: 25px;

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,0.025);

    border-radius: 10px;

}

.mini-destination > span {

    color: var(--gold);

    font-size: 11px;

}

.mini-destination h3 {

    font-family:
        "Playfair Display",
        serif;

    margin:
        15px 0 5px;

}

.mini-destination p {

    color: var(--grey);

    font-size: 12px;

}

.lake-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.lake-card {

    min-height: 170px;

    display: flex;

    flex-direction: column;

    justify-content: end;

    padding: 25px;

    border-radius: var(--radius);

    border:
        1px solid rgba(255,255,255,0.12);

    background:
        linear-gradient(
            145deg,
            rgba(55,137,163,0.22),
            rgba(0,0,0,0.35)
        );

}

.lake-card h3 {

    font-family:
        "Playfair Display",
        serif;

}

.lake-card p {

    color: var(--blue-light);

}


/* =========================================================
   GULMARG DETAIL
========================================================= */

.gulmarg-detail {

    background:
        linear-gradient(
            180deg,
            #080b0a,
            #101b17
        );

}

.detail-hero {

    height: 540px;

    position: relative;

    border-radius:
        var(--radius);

    overflow: hidden;

}

.detail-hero img {

    height: 100%;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            #263b2f,
            #0c100e
        );

}

.detail-hero-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: end;

    padding: 55px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.85)
        );

}

.detail-hero-overlay span {

    color: var(--gold-light);

    letter-spacing: 3px;

    font-size: 10px;

}

.detail-hero-overlay h2 {

    font-size:
        clamp(60px, 9vw, 110px);

}

.detail-hero-overlay p {

    color: var(--white-soft);

}

.detail-content {

    max-width: 1050px;

    margin:
        70px auto 0;

}

.detail-content > p {

    color: var(--grey);

    margin:
        20px 0;

}

.info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 35px;

}

.info-box {

    padding: 24px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.025);

}

.info-box span {

    font-size: 22px;

}

.info-box strong {

    display: block;

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 1px;

    margin-top: 15px;

}

.info-box p {

    color: var(--grey);

    font-size: 12px;

    margin-top: 5px;

}

.small-note {

    color: var(--grey-dark) !important;

    font-size: 11px;

    margin-top: 15px;

}


/* =========================================================
   ATTRACTIONS
========================================================= */

.attraction-section {

    margin-top: 80px;

}

.attraction-section > h3 {

    font-size: 16px;

    letter-spacing: 2px;

    color: var(--gold-light);

    margin-bottom: 25px;

}

.attraction-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.attraction-card {

    border:
        1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.02);

}

.attraction-card img {

    height: 155px;

    background: #1d3027;

}

.attraction-card h4 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;

    padding:
        18px 18px 8px;

}

.attraction-card p {

    padding:
        0 18px;

    color: var(--grey);

    font-size: 11px;

}

.attraction-card a {

    display: inline-block;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 800;

    margin:
        15px 18px 20px;

}


/* =========================================================
   ACTIVITIES
========================================================= */

.activities-box {

    margin-top: 55px;

    padding: 35px;

    background:
        linear-gradient(
            135deg,
            #163a29,
            #0e2018
        );

    border-radius: var(--radius);

    border:
        1px solid rgba(255,255,255,0.1);

}

.activities-box h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 32px;

}

.activity-list {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin:
        25px 0;

}

.activity-list span {

    padding: 8px 13px;

    border:
        1px solid rgba(255,255,255,0.15);

    border-radius: 50px;

    font-size: 10px;

}

.activities-box p {

    color: var(--grey);

    font-size: 12px;

}


/* =========================================================
   ITINERARY
========================================================= */

.itinerary-box {

    margin-top: 25px;

    padding: 35px;

    border:
        1px solid var(--gold-border);

    border-radius: var(--radius);

}

.itinerary-box h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;

}

.duration-badge {

    display: inline-block;

    margin:
        20px 0;

    padding: 8px 13px;

    background: var(--gold);

    color: var(--black);

    font-size: 10px;

    font-weight: 800;

}

.itinerary-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

}

.itinerary-grid h4 {

    color: var(--gold-light);

    margin-bottom: 12px;

}

.itinerary-grid p {

    color: var(--grey);

    font-size: 13px;

    margin-bottom: 7px;

}


/* =========================================================
   RECOMMENDED CARS
========================================================= */

.recommended-box {

    margin-top: 25px;

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        rgba(255,255,255,0.025);

}

.recommended-box h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 32px;

}

.recommended-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 25px;

}

.recommended-grid > div {

    padding: 20px;

    border:
        1px solid var(--border);

}

.recommended-grid strong {

    color: var(--gold-light);

}

.recommended-grid p {

    color: var(--grey);

    font-size: 12px;

    margin-top: 8px;

}


/* =========================================================
   LADAKH
========================================================= */

.ladakh-section {

    background:
        linear-gradient(
            180deg,
            #071116,
            #0a1519
        );

}

.ladakh-hero {

    position: relative;

    height: 540px;

    border-radius: var(--radius);

    overflow: hidden;

}

.ladakh-hero img {

    height: 100%;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            #34484d,
            #111b1e
        );

}

.ladakh-hero-text {

    position: absolute;

    inset: 0;

    padding: 55px;

    display: flex;

    justify-content: end;

    flex-direction: column;

    background:
        linear-gradient(
            transparent 20%,
            rgba(0,0,0,0.85)
        );

}

.ladakh-hero-text span {

    color: var(--blue-light);

    font-size: 10px;

    letter-spacing: 3px;

}

.ladakh-hero-text h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(55px, 8vw, 95px);

    line-height: .92;

    margin-top: 12px;

}

.ladakh-hero-text p {

    margin-top: 18px;

    color: var(--white-soft);

}

.ladakh-places {

    margin-top: 70px;

}

.ladakh-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}

.ladakh-card {

    background:
        #10191c;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);

}

.ladakh-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(93,167,189,0.5);

}

.ladakh-card img {

    height: 190px;

    background: #25383d;

}

.ladakh-card > div {

    padding: 22px;

}

.ladakh-card span {

    color: var(--blue-light);

    font-size: 10px;

}

.ladakh-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 26px;

    margin:
        7px 0;

}

.ladakh-card p {

    color: var(--grey);

    font-size: 12px;

}


/* =========================================================
   LADAKH ITINERARY
========================================================= */

.ladakh-itinerary {

    margin-top: 80px;

    padding: 45px;

    border:
        1px solid rgba(93,167,189,0.35);

    border-radius: var(--radius);

}

.ladakh-itinerary h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 5vw, 58px);

}

.itinerary-intro {

    max-width: 700px;

    color: var(--grey);

    margin-top: 12px;

}

.route-timeline {

    margin-top: 45px;

}

.route-stop {

    display: grid;

    grid-template-columns: 50px 200px 1fr;

    gap: 20px;

    align-items: center;

}

.route-stop > span {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--blue);

    font-size: 10px;

    font-weight: 800;

}

.route-stop h4 {

    color: var(--blue-light);

    letter-spacing: 1px;

}

.route-stop p {

    color: var(--grey);

    font-size: 12px;

}

.route-line {

    width: 1px;

    height: 38px;

    background:
        rgba(93,167,189,0.35);

    margin-left: 19px;

}

.travel-warning {

    margin-top: 25px;

    padding: 25px;

    border:
        1px solid rgba(214,155,50,0.4);

    background:
        rgba(214,155,50,0.05);

    border-radius: 10px;

}

.travel-warning strong {

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 1px;

}

.travel-warning p {

    color: var(--grey);

    font-size: 12px;

    margin-top: 8px;

}


/* =========================================================
   PACKAGES
========================================================= */

.packages-section {

    background:
        linear-gradient(
            135deg,
            #16130d,
            #0b0b09
        );

}

.package-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}

.package-card {

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    background: var(--black-card);

}

.package-card img {

    height: 230px;

    background:
        linear-gradient(
            135deg,
            #443b2a,
            #15140f
        );

}

.package-content {

    padding: 28px;

}

.package-content > span {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;

}

.package-content h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    margin: 10px 0;

}

.package-content p {

    color: var(--grey);

    font-size: 12px;

    margin-bottom: 20px;

}

.package-note {

    margin-top: 25px;

    padding: 20px;

    border:
        1px solid var(--gold-border);

    border-radius: 10px;

    color: var(--grey);

    font-size: 12px;

}

.package-note strong {

    color: var(--gold-light);

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: var(--black);

}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border:
        1px solid var(--border);

}

.process-card {

    min-height: 220px;

    padding: 28px;

    border-right:
        1px solid var(--border);

    transition: var(--transition);

}

.process-card:last-child {

    border-right: none;

}

.process-card:hover {

    background:
        rgba(255,255,255,0.035);

}

.process-card > span {

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

}

.process-card h3 {

    margin:
        35px 0 12px;

    font-size: 15px;

}

.process-card p {

    color: var(--grey);

    font-size: 12px;

}


/* =========================================================
   REQUIREMENTS
========================================================= */

.requirements-section {

    background:
        #111a15;

}

.requirements-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border:
        1px solid var(--border);

}

.requirements-grid > div {

    min-height: 190px;

    padding: 28px;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}

.requirements-grid strong {

    color: var(--gold);

}

.requirements-grid h3 {

    font-size: 15px;

    margin:
        20px 0 8px;

}

.requirements-grid p {

    color: var(--grey);

    font-size: 12px;

}


/* =========================================================
   VEHICLE CARE
========================================================= */

.vehicle-care-section {

    background: var(--green);

}

.care-panel {

    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 70px;

    align-items: center;

}

.care-heading h2 {

    font-size: 58px;

}

.care-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

}

.care-list div {

    padding: 15px;

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius: 8px;

    color: var(--white-soft);

}


/* =========================================================
   MAP
========================================================= */

#jk-map-box {
    width: 90%;
    height: 400px;
    margin: 30px auto;
    overflow: hidden;
}

#jk-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    #jk-map-box {
        width: 95%;
        height: 230px;
    }
}

   

/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {

    background:
        linear-gradient(
            135deg,
            #10170f,
            #090b09
        );

}

.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}

.review-card {

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

}

.stars {

    color: var(--gold);

    letter-spacing: 4px;

}

.review-card h3 {

    margin:
        22px 0 10px;

    font-family:
        "Playfair Display",
        serif;

}

.review-card p {

    color: var(--grey);

    font-size: 13px;

}

.review-card > span {

    display: block;

    color: var(--grey-dark);

    font-size: 10px;

    margin-top: 20px;

}

.review-button-wrapper {

    text-align: center;

    margin-top: 35px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background:
        var(--gold);

    color: var(--black);

}

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    gap: 80px;

}

.contact-main .section-label {

    color: var(--black);

}

.contact-main h2 span {

    color: var(--white);

}

.contact-main p {

    max-width: 600px;

    margin-top: 20px;

    color: rgba(0,0,0,0.7);

}

.contact-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;

}

.contact-details {

    border-left:
        1px solid rgba(0,0,0,0.2);

    padding-left: 45px;

}

.contact-detail {

    padding:
        17px 0;

    border-bottom:
        1px solid rgba(0,0,0,0.18);

}

.contact-detail span {

    display: block;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;

}

.contact-detail a {

    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px;

    margin-top: 5px;

}

.contact-detail p {

    margin-top: 5px;

}


/* =========================================================
   TERMS
========================================================= */

.terms-section {

    background: var(--black);

}

.terms-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

}

.terms-grid > div {

    padding: 24px;

    border:
        1px solid var(--border);

    border-radius: 10px;

}

.terms-grid h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;

}

.terms-grid p {

    color: var(--grey);

    font-size: 11px;

    margin-top: 8px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        70px 0 25px;

    background:
        #050605;

    border-top:
        1px solid var(--border);

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;

}

.footer-logo {

    margin-bottom: 20px;

}

.footer-tagline {

    color: var(--gold-light) !important;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;

}

.footer-brand p {

    max-width: 350px;

    color: var(--grey);

    font-size: 12px;

    margin-top: 10px;

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 9px;

}

.footer-column h3 {

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 1.5px;

    margin-bottom: 10px;

}

.footer-column a,
.footer-column span {

    color: var(--grey);

    font-size: 11px;

    transition: var(--transition);

}

.footer-column a:hover {

    color: var(--gold-light);

}

.footer-bottom {

    padding-top: 22px;

    border-top:
        1px solid var(--border);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: var(--grey-dark);

    font-size: 10px;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 999;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        #25D366;

    color: white;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.35);

    animation:
        whatsappPulse 2.4s infinite;

}

.floating-whatsapp span {

    font-size: 28px;

}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0.4);
    }

    70% {
        box-shadow:
            0 0 0 13px rgba(37,211,102,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0);
    }

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 95px;

    z-index: 900;

    width: 40px;

    height: 40px;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background: var(--black);

    color: var(--white);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE — LARGE TABLETS
========================================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 13px;

    }

    .main-nav a {

        font-size: 10px;

    }

    .vehicle-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .destination-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .attraction-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .process-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .process-card {

        border-bottom:
            1px solid var(--border);

    }

    .ladakh-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .mobile-menu-btn {

        display: block;

    }

    .main-nav {

        position: absolute;

        top: 100%;

        left: 20px;

        right: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 15px;

        background: #0c0d0c;

        border:
            1px solid var(--border);

        border-radius: 10px;

        box-shadow: var(--shadow);

    }

    .main-nav.open {

        display: flex;

    }

    .main-nav a {

        padding: 12px;

    }

    .nav-book-btn {

        text-align: center;

    }

    .hero {

        min-height: 680px;

    }

    .intro-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .benefits-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .vehicle-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .popular-grid {

        grid-template-columns:
            1fr;

    }

    .bike-grid {

        grid-template-columns:
            1fr;

    }

    .package-grid {

        grid-template-columns:
            1fr;

    }

    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .process-card:nth-child(2n) {

        border-right: none;

    }

    .requirements-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .care-panel {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .reviews-grid {

        grid-template-columns:
            1fr;

    }

    .contact-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }

    .contact-details {

        border-left: none;

        border-top:
            1px solid rgba(0,0,0,0.2);

        padding:
            30px 0 0;

    }

    .terms-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }

    .top-bar-inner {

        font-size: 9px;

    }

    .nav-container {

        min-height: 70px;

    }

    .logo-main {

        font-size: 18px;

    }

    .logo-sub {

        font-size: 7px;

    }

    .hero {

        min-height: 650px;

    }

    .hero-content {

        padding:
            80px 0;

    }

    .hero h1 {

        font-size: 56px;

        letter-spacing: -2px;

    }

    .hero-tagline {

        font-size: 25px;

    }

    .hero-description {

        font-size: 14px;

    }

    .hero-trust {

        gap: 20px;

        margin-top: 40px;

    }

    .hero-trust strong {

        font-size: 13px;

    }

    .hero-trust span {

        font-size: 8px;

    }

    .search-section {

        margin-top: -25px;

    }

    .search-box {

        flex-wrap: wrap;

    }

    .search-icon {

        display: none;

    }

    .search-box input {

        padding: 12px;

    }

    .search-btn {

        width: 100%;

    }

    .section {

        padding:
            75px 0;

    }

    .section-heading {

        display: block;

        margin-bottom: 35px;

    }

    .section-heading > p {

        margin-top: 20px;

    }

    h2 {

        font-size: 44px;

    }

    .benefits-grid {

        grid-template-columns:
            1fr;

    }

    .vehicle-grid {

        grid-template-columns:
            1fr;

    }

    .vehicle-image {

        height: 210px;

    }

    .filter-bar {

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 8px;

    }

    .filter-btn {

        flex-shrink: 0;

    }

    .bike-card {

        grid-template-columns:
            1fr;

    }

    .bike-image {

        min-height: 220px;

    }

    .destination-grid {

        grid-template-columns:
            1fr;

    }

    .mini-destination-grid {

        grid-template-columns:
            1fr;

    }

    .lake-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .detail-hero {

        height: 400px;

    }

    .detail-hero-overlay {

        padding: 25px;

    }

    .info-grid {

        grid-template-columns:
            1fr;

    }

    .attraction-grid {

        grid-template-columns:
            1fr;

    }

    .activities-box,
    .itinerary-box,
    .recommended-box,
    .ladakh-itinerary {

        padding: 25px;

    }

    .itinerary-grid {

        grid-template-columns:
            1fr;

    }

    .recommended-grid {

        grid-template-columns:
            1fr;

    }

    .ladakh-hero {

        height: 400px;

    }

    .ladakh-hero-text {

        padding: 25px;

    }

    .ladakh-hero-text h3 {

        font-size: 55px;

    }

    .ladakh-grid {

        grid-template-columns:
            1fr;

    }

    .route-stop {

        grid-template-columns:
            42px 1fr;

        gap: 12px;

    }

    .route-stop p {

        grid-column:
            2;

    }

    .route-line {

        margin-left: 20px;

    }

    .process-grid {

        grid-template-columns:
            1fr;

    }

    .process-card {

        border-right: none;

        border-bottom:
            1px solid var(--border);

    }

    .requirements-grid {

        grid-template-columns:
            1fr;

    }

    .care-list {

        grid-template-columns:
            1fr;

    }

    .map-placeholder {

        height: 380px;

    }

    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-auto-rows:
            150px;

    }

    .gallery-large {

        grid-row:
            span 2;

    }

    .gallery-wide {

        grid-column:
            span 2;

    }

    .terms-grid {

        grid-template-columns:
            1fr;

    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }

    .footer-bottom {

        flex-direction: column;

    }

    .floating-whatsapp {

        right: 15px;

        bottom: 15px;

    }

    .back-to-top {

        right: 15px;

        bottom: 85px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .hero h1 {

        font-size: 48px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn {

        width: 100%;

    }

    .lake-grid {

        grid-template-columns:
            1fr;

    }

}


/* =========================================================
   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;

        scroll-behavior: auto !important;

    }

}
/* =========================================================
   Gallery Grid
========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 15px;
    width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* PHOTO 1 — BIG LEFT IMAGE */
.gallery-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* PHOTO 2 — TOP MIDDLE */
.gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* PHOTO 3 — TOP RIGHT */
.gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

/* PHOTO 4 — BOTTOM MIDDLE */
.gallery-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

/* PHOTO 5 — BOTTOM RIGHT */
.gallery-wide {
    grid-column: 3;
    grid-row: 2;
}


/* =========================
   PHONE
========================= */

@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 180px 180px;
        gap: 10px;
    }

    /* BIG PHOTO */
    .gallery-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    /* PHOTO 2 */
    .gallery-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    /* PHOTO 3 */
    .gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* PHOTO 4 */
    .gallery-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    /* PHOTO 5 */
    .gallery-wide {
        grid-column: 2;
        grid-row: 3;
    }
}