/* =====================================================
   DARSHAN TOUR & TRAVELS
   COMPLETE MAIN STYLESHEET
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --orange: #e67b43;
    --orange-light: #f3a276;

    --dark: #17211e;
    --dark-2: #202b27;

    --white: #ffffff;
    --light: #f7f6f2;
    --gray: #6f7672;

    --border: #e6e2dc;

    --heading: "Playfair Display", Georgia, serif;
    --body: "DM Sans", Arial, sans-serif;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    transition:
        background 0.3s ease,
        padding 0.3s ease,
        backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 25, 22, 0.95);
    backdrop-filter: blur(15px);
    padding: 14px 0;
}

.nav-container {
    width: min(1400px, 90%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */
/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    width: auto;
    height: 60px;
    text-decoration: none;
}

.logo-img {
    width: 125px !important;
    height: 55px !important;
    max-width: 125px !important;
    max-height: 55px !important;
    object-fit: contain !important;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {

    .logo {
        height: 52px;
    }

    .logo-img {
        width: 105px !important;
        height: 48px !important;
        max-width: 105px !important;
        max-height: 48px !important;
    }
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu>a {
    color: white;

    font-size: 15px;
    font-weight: 600;

    position: relative;

    transition: 0.3s;
}

.nav-menu>a:not(.book-btn)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: 0.3s;
}

.nav-menu>a:hover,
.nav-menu>a.active {
    color: var(--orange-light);
}

.nav-menu>a:hover::after,
.nav-menu>a.active::after {
    width: 100%;
}


/* =====================================================
   BOOK BUTTON
===================================================== */

.book-btn {
    background: var(--orange);

    padding: 12px 21px;

    border-radius: 30px;

    color: white !important;
}

.book-btn::after {
    display: none !important;
}

.book-btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

.book-btn span {
    margin-left: 7px;
    font-size: 16px;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-btn {
    display: none;

    border: none;

    background: var(--orange);
    color: white;

    font-size: 22px;

    width: 44px;
    height: 44px;

    border-radius: 9px;

    cursor: pointer;
}


/* =====================================================
   GENERAL HERO
===================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg,
            rgba(12, 30, 26, 0.88),
            rgba(12, 30, 26, 0.48),
            rgba(12, 30, 26, 0.15)),
        url("https://thumb.wikimedia.org/wikipedia/commons/thumb/9/9e/View_of_Shimla.jpg/1920px-View_of_Shimla.jpg?utm_source=commons.wikimedia.org&utm_campaign=index&utm_content=thumbnail&_=20250922091535");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero-content {
    width: min(1400px, 90%);
    margin: auto;

    padding-top: 70px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 30px;

    padding: 10px 17px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 27px;

    backdrop-filter: blur(4px);
}

.hero-tag span {
    font-size: 11px;
}

.hero h1 {
    max-width: 800px;

    font-family: var(--heading);

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1;

    font-weight: 600;
}

.hero h1 span {
    display: block;
    color: var(--orange-light);
}

.hero p {
    max-width: 680px;

    margin-top: 25px;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.92);
}


/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.primary-btn {
    background: var(--orange);
    color: white;
}

.primary-btn:hover {
    background: #d96b35;
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: var(--dark);
}


/* =====================================================
   COMMON SECTION
===================================================== */

.section {
    padding: 90px 5%;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.small-title {
    display: block;

    color: var(--orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: var(--heading);

    font-size: clamp(36px, 5vw, 55px);

    line-height: 1.1;
}

.section-heading h2 span {
    color: var(--orange);
}

.section-heading p {
    color: var(--gray);

    margin-top: 17px;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   HOME DESTINATIONS
===================================================== */

.destination-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.destination-card {
    min-height: 370px;

    border-radius: 12px;

    overflow: hidden;

    position: relative;

    background-size: cover;
    background-position: center;

    transition: 0.5s;
}

.destination-card:hover {
    transform: translateY(-6px);
}

/* =====================================================
   INDEX DESTINATION IMAGES
===================================================== */


.shimla {
    background-image:
        linear-gradient(rgba(10, 25, 20, .10),
            rgba(10, 25, 20, .70)),
        url("https://images.unsplash.com/photo-1589564972271-05f2cf7e772f?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");

    background-size: cover;
    background-position: center;
}

.manali {
    background-image:
        linear-gradient(rgba(10, 25, 20, .10),
            rgba(10, 25, 20, .70)),
        url("https://images.pexels.com/photos/17521689/pexels-photo-17521689.jpeg");

    background-size: cover;
    background-position: center;
}

.spiti {
    background-image:
        linear-gradient(rgba(10, 25, 20, .10),
            rgba(10, 25, 20, .70)),
        url("https://images.pexels.com/photos/28238899/pexels-photo-28238899.jpeg");

    background-size: cover;
    background-position: center;
}

.kasol {
    background-image:
        linear-gradient(rgba(10, 25, 20, .10),
            rgba(10, 25, 20, .70)),
        url("https://images.pexels.com/photos/6739193/pexels-photo-6739193.jpeg");

    background-size: cover;
    background-position: center;
}


.destination-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(transparent 30%,
            rgba(0, 0, 0, 0.85));
}

.destination-content {
    position: absolute;

    bottom: 25px;
    left: 23px;

    color: white;
}

.destination-content>span {
    color: var(--orange-light);
    font-size: 12px;
}

.destination-content h3 {
    font-family: var(--heading);
    font-size: 28px;

    margin-top: 6px;
}

.destination-content p {
    margin-top: 4px;

    opacity: 0.85;

    font-size: 13px;
}

.destination-content a {
    display: inline-block;

    margin-top: 16px;

    color: var(--orange-light);

    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   HOME PACKAGES
===================================================== */

.packages {
    background: white;
}

.package-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.package-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid var(--border);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
}

.package-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.14);
}

.package-image {
    height: 220px;

    background-size: cover;
    background-position: center;

    position: relative;
}

/* =====================================================
   POPULAR PACKAGE IMAGES
===================================================== */

.shimla-img {
    background-image:
        linear-gradient(rgba(10, 25, 20, 0.10),
            rgba(10, 25, 20, 0.35)),
        url("https://images.pexels.com/photos/5238339/pexels-photo-5238339.jpeg");
}

.manali-img {
    background-image:
        linear-gradient(rgba(10, 25, 20, 0.10),
            rgba(10, 25, 20, 0.35)),
        url("https://images.pexels.com/photos/6149892/pexels-photo-6149892.jpeg");
}

.spiti-img {
    background-image:
        linear-gradient(rgba(10, 25, 20, 0.10),
            rgba(10, 25, 20, 0.35)),
        url("https://images.pexels.com/photos/38041592/pexels-photo-38041592.jpeg");
}

.package-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    background: var(--orange);

    color: white;

    padding: 6px 12px;

    border-radius: 25px;

    font-size: 10px;
    font-weight: 700;
}

.package-body {
    padding: 23px;
}

.package-location {
    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--orange);

    font-weight: 700;
}

.package-body h3 {
    font-family: var(--heading);

    font-size: 24px;

    margin-top: 8px;
}

.package-body p {
    color: var(--gray);

    line-height: 1.6;

    margin-top: 10px;

    font-size: 14px;
}

.package-bottom {
    border-top: 1px solid #eee;

    margin-top: 19px;
    padding-top: 15px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 8px;
}

.package-bottom span {
    font-size: 11px;
    color: var(--gray);
}

.package-bottom a {
    color: var(--orange);

    font-weight: 700;
    font-size: 12px;
}

.center-btn {
    text-align: center;
    margin-top: 35px;
}

.outline-btn {
    display: inline-block;

    padding: 13px 24px;

    border: 1px solid var(--orange);

    color: var(--orange);

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.outline-btn:hover {
    background: var(--orange);
    color: white;
}


/* =====================================================
   WHY US
===================================================== */

.why-us {
    display: grid;

    grid-template-columns: 1fr 1fr;

    padding: 0;

    background: var(--dark);

    color: white;
}

.why-content {
    padding: 80px 8%;
}

.why-content h2 {
    font-family: var(--heading);

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.05;
}

.why-content h2 span {
    color: var(--orange-light);
}

.why-content>p {
    color: rgba(255, 255, 255, 0.7);

    line-height: 1.7;

    max-width: 550px;

    margin-top: 20px;

    font-size: 14px;
}

.features {
    margin-top: 32px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.feature {
    display: flex;
    gap: 12px;
}

.feature-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: var(--orange);

    display: grid;
    place-items: center;

    font-weight: bold;

    font-size: 13px;
}

.feature h3 {
    font-size: 15px;
}

.feature p {
    color: rgba(255, 255, 255, 0.55);

    margin-top: 4px;

    line-height: 1.5;

    font-size: 12px;
}

.why-image {
    min-height: 560px;

    background:
        linear-gradient(rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2)),
        url("https://images.pexels.com/photos/6149892/pexels-photo-6149892.jpeg");

    background-size: cover;
    background-position: center;

    position: relative;
}

.experience-box {
    position: absolute;

    bottom: 32px;
    left: 32px;

    background: white;

    color: var(--dark);

    padding: 19px 27px;

    border-radius: 7px;
}

.experience-box strong {
    display: block;

    font-family: var(--heading);

    font-size: 25px;
}

.experience-box span {
    color: var(--orange);
    font-size: 13px;
}


/* =====================================================
   DESTINATIONS PAGE HERO
===================================================== */

.destination-hero {
    min-height: 68vh;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.destination-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(12, 30, 26, 0.92),
            rgba(12, 30, 26, 0.58),
            rgba(12, 30, 26, 0.25));
}

.destination-hero-content {
    width: min(1400px, 90%);

    margin: auto;

    padding-top: 80px;

    position: relative;

    z-index: 2;
}

.destination-hero h1 {
    max-width: 800px;

    font-family: var(--heading);

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1;

    font-weight: 600;
}

.destination-hero h1 span {
    display: block;

    color: var(--orange-light);
}

.destination-hero-content>p {
    max-width: 620px;

    margin-top: 22px;

    font-size: 16px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.88);
}

.destination-breadcrumb {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    font-size: 12px;
}

.destination-breadcrumb a {
    color: var(--orange-light);
}

.destination-breadcrumb strong {
    color: white;
}


/* =====================================================
   DESTINATIONS PAGE
===================================================== */

.destinations-page-section {
    background: var(--light);
}

.destinations-page-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* =====================================================
   DESTINATION LARGE CARD
===================================================== */

.destination-large-card {
    min-height: 420px;

    border-radius: 15px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.destination-large-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18);
}

.destination-page-image {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    transition:
        transform 0.7s ease;
}

.destination-large-card:hover .destination-page-image {
    transform: scale(1.05);
}


/* =====================================================
   DESTINATION IMAGES
===================================================== */

.himachal-page {
    background-image: url("../images/himachal.jpg");
}

.spiti-page {
    background-image: url("../images/spiti.jpg");
}

.kashmir-page {
    background-image: url("../images/kashmir.jpg");
}

.uttarakhand-page {
    background-image: url("../images/uttarakhand.jpg");
}

.rajasthan-page {
    background-image: url("../images/rajasthan.jpg");
}

.kerala-page {
    background-image: url("../images/kerala.jpg");
}

.goa-page {
    background-image: url("../images/goa.jpg");
}

.treks-page {
    background-image: url("../images/treks.jpg");
}


/* =====================================================
   DESTINATION CARD OVERLAY
===================================================== */

.destination-page-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 15%,
            rgba(0, 0, 0, 0.25) 35%,
            rgba(0, 0, 0, 0.90) 100%);
}


/* =====================================================
   DESTINATION NUMBER
===================================================== */

.destination-number {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: white;

    background: rgba(20, 30, 27, 0.30);

    backdrop-filter: blur(5px);

    font-size: 11px;
    font-weight: 700;

    z-index: 3;
}


/* =====================================================
   DESTINATION CARD CONTENT
===================================================== */

.destination-page-content {
    position: absolute;

    left: 28px;
    right: 28px;

    bottom: 27px;

    z-index: 3;

    color: white;
}

.destination-country {
    color: var(--orange-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.destination-page-content h3 {
    font-family: var(--heading);

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.05;

    margin-top: 8px;
}

.destination-page-content p {
    max-width: 480px;

    margin-top: 10px;

    color: rgba(255, 255, 255, 0.80);

    line-height: 1.6;

    font-size: 13px;
}

.destination-explore {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 16px;

    color: white;

    font-size: 12px;

    font-weight: 700;

    border-bottom: 1px solid var(--orange-light);

    padding-bottom: 5px;

    transition: 0.3s;
}

.destination-explore span {
    color: var(--orange-light);

    font-size: 16px;

    transition: 0.3s;
}

.destination-explore:hover {
    color: var(--orange-light);
}

.destination-explore:hover span {
    transform: translateX(5px);
}


/* =====================================================
   DESTINATION CTA
===================================================== */

.destination-cta {
    padding: 85px 5%;

    text-align: center;

    background:
        linear-gradient(rgba(19, 35, 31, 0.92),
            rgba(19, 35, 31, 0.92)),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.destination-cta-content {
    max-width: 680px;

    margin: auto;
}

.destination-cta h2 {
    font-family: var(--heading);

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.05;
}

.destination-cta h2 span {
    color: var(--orange-light);
}

.destination-cta p {
    max-width: 550px;

    margin: 18px auto 25px;

    color: rgba(255, 255, 255, 0.70);

    line-height: 1.7;

    font-size: 14px;
}


/* =====================================================
   HIMACHAL HERO
===================================================== */

.himachal-hero {
    min-height: 620px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("../images/himachal.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;

    color: white;
}

.himachal-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(15, 25, 22, 0.90),
            rgba(15, 25, 22, 0.58),
            rgba(15, 25, 22, 0.22));
}

.himachal-hero-content {
    position: relative;

    z-index: 2;

    width: min(1100px, 90%);

    margin: auto;

    padding-top: 90px;
}

.himachal-hero-content h1 {
    max-width: 850px;

    margin: 18px 0;

    color: white;

    font-family: var(--heading);

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.08;
}

.himachal-hero-content h1 span {
    display: block;

    color: var(--orange-light);
}

.himachal-hero-content>p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;

    line-height: 1.75;
}


/* =====================================================
   HIMACHAL INTRO
===================================================== */

.himachal-intro {
    padding-bottom: 45px;
}


/* =====================================================
   HIMACHAL PACKAGES SECTION
===================================================== */

.himachal-packages-section {
    background: var(--light);

    padding: 20px 0 90px;
}

.himachal-packages-container {
    width: min(1120px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


/* =====================================================
   HIMACHAL PACKAGE CARD
===================================================== */

.himachal-package-card {
    background: white;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid var(--border);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.himachal-package-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.13);
}


/* =====================================================
   HIMACHAL PACKAGE IMAGE
===================================================== */

.himachal-package-image {
    height: 275px;

    position: relative;

    overflow: hidden;
}

.himachal-package-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s ease;
}

.himachal-package-card:hover .himachal-package-image img {
    transform: scale(1.06);
}


/* =====================================================
   PACKAGE BADGE
===================================================== */

.himachal-package-image .package-badge {
    position: absolute;

    top: 17px;
    left: 17px;

    background: var(--orange);

    color: white;

    padding: 7px 13px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.7px;
}


/* =====================================================
   HIMACHAL PACKAGE CONTENT
===================================================== */

.himachal-package-content {
    padding: 27px;
}

.himachal-package-content .package-category {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.himachal-package-content h2 {
    margin: 0 0 10px;

    color: var(--dark);

    font-family: var(--heading);

    font-size: 28px;

    line-height: 1.25;
}


/* =====================================================
   DURATION
===================================================== */

.himachal-package-duration {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 14px;

    font-weight: 600;
}

.himachal-package-duration span {
    color: var(--orange);

    margin-right: 6px;
}


/* =====================================================
   PACKAGE DESCRIPTION
===================================================== */

.himachal-package-content>p {
    margin: 0 0 20px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   PACKAGE FEATURES
===================================================== */

.himachal-package-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 7px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e8e8e8;
}

.himachal-package-features div {
    text-align: center;

    background: #f6f6f3;

    padding: 9px 4px;

    border-radius: 8px;

    color: #555;

    font-size: 10px;

    font-weight: 600;
}

.himachal-package-features span {
    color: var(--orange);

    margin-right: 2px;
}


/* =====================================================
   PACKAGE BOTTOM
===================================================== */

.himachal-package-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-top: 20px;
}

.himachal-price {
    display: flex;

    flex-direction: column;
}

.himachal-price small {
    color: var(--gray);

    font-size: 11px;
}

.himachal-price strong {
    color: var(--dark);

    font-family: var(--heading);

    font-size: 25px;

    line-height: 1.2;
}


/* =====================================================
   HIMACHAL BOOK BUTTON
===================================================== */

.himachal-book-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 18px;

    background: var(--orange);

    color: white;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;
}

.himachal-book-btn:hover {
    background: var(--dark);

    color: white;
}


/* =====================================================
   WHY HIMACHAL
===================================================== */

.himachal-why-section {
    padding: 90px 0;

    background: white;
}

.himachal-why-container {
    width: min(1120px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.himachal-why-content h2 {
    max-width: 600px;

    margin: 12px 0 18px;

    font-family: var(--heading);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.12;

    color: var(--dark);
}

.himachal-why-content h2 span {
    color: var(--orange);
}

.himachal-why-content>p {
    max-width: 570px;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.75;
}


/* =====================================================
   WHY HIMACHAL LIST
===================================================== */

.himachal-why-list {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.himachal-why-item {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.why-icon {
    width: 34px;
    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(230, 123, 67, 0.12);

    color: var(--orange);

    border-radius: 50%;

    font-weight: 700;
}

.himachal-why-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--dark);

    font-size: 16px;
}

.himachal-why-item p {
    margin: 0;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   WHY HIMACHAL IMAGE
===================================================== */

.himachal-why-image {
    height: 520px;

    border-radius: 22px;

    overflow: hidden;
}

.himachal-why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   GENERAL CTA
===================================================== */

.cta {
    padding: 85px 5%;

    text-align: center;

    background:
        linear-gradient(rgba(22, 38, 34, 0.88),
            rgba(22, 38, 34, 0.88)),
        url("../images/spiti.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.cta-content {
    max-width: 680px;

    margin: auto;
}

.cta h2 {
    font-family: var(--heading);

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.05;
}

.cta h2 span {
    color: var(--orange-light);
}

.cta p {
    margin: 18px auto 25px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #101815;

    color: white;
}

.footer-container {
    max-width: 1300px;

    margin: auto;

    padding: 60px 5%;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 40px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about>p {
    max-width: 300px;

    color: rgba(255, 255, 255, 0.55);

    line-height: 1.7;

    font-size: 13px;
}

.socials {
    display: flex;

    gap: 8px;

    margin-top: 20px;
}

.socials a {
    width: 35px;
    height: 35px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 13px;

    transition: 0.3s;
}

.socials a:hover {
    background: var(--orange);

    border-color: var(--orange);
}

.footer h3 {
    font-size: 14px;

    margin-bottom: 19px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--orange-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.55);

    margin-bottom: 11px;

    line-height: 1.5;

    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;

    padding: 19px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.floating-buttons {
    position: fixed;

    right: 18px;
    bottom: 22px;

    z-index: 999;

    display: flex;

    flex-direction: column;

    gap: 9px;
}

.floating-buttons a {
    width: 47px;
    height: 47px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

.call-btn {
    background: #21352e;
}

.whatsapp-btn {
    background: #20c96b;
}


/* =====================================================
   RESPONSIVE - 1100
===================================================== */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 20px;
    }

    .nav-menu>a {
        font-size: 14px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


/* =====================================================
   RESPONSIVE - 900
===================================================== */

@media (max-width: 900px) {

    .himachal-packages-container {
        grid-template-columns: 1fr;
    }

    .himachal-why-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .himachal-why-image {
        height: 400px;
    }
}


/* =====================================================
   RESPONSIVE - 800
===================================================== */

@media (max-width: 800px) {

    .navbar {
        padding: 15px 0;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon span {
        width: 22px;
        height: 22px;
    }

    .logo-text strong {
        font-size: 20px;
    }

    .logo-text small {
        font-size: 6px;
        letter-spacing: 1.7px;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;

        top: 70px;

        left: 5%;

        width: 90%;

        background:
            rgba(23, 33, 30, 0.98);

        backdrop-filter: blur(15px);

        border-radius: 12px;

        padding: 18px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        display: none;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu>a {
        padding: 12px 5px;

        font-size: 14px;
    }

    .nav-menu>a:not(.book-btn)::after {
        display: none;
    }

    .book-btn {
        text-align: center;

        margin-top: 8px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 65px);
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 270px;
    }

    .destination-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        min-height: 350px;
    }

    .why-us {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 380px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .destinations-page-grid {
        grid-template-columns: 1fr;
    }

    .destination-large-card {
        min-height: 400px;
    }

    .destination-hero {
        min-height: 70vh;
    }

    .destination-hero-content {
        padding-top: 80px;
    }

    .destination-hero h1 {
        font-size: 45px;
    }

    .destination-hero-content>p {
        font-size: 15px;
    }

    .himachal-hero {
        min-height: 560px;
    }

    .himachal-hero-content {
        padding-top: 70px;
    }

    .himachal-hero-content h1 {
        font-size: 44px;
    }

    .himachal-hero-content>p {
        font-size: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   RESPONSIVE - 600
===================================================== */

@media (max-width: 600px) {

    .section {
        padding: 65px 5%;
    }

    .himachal-packages-section {
        padding-bottom: 60px;
    }

    .himachal-package-image {
        height: 220px;
    }

    .himachal-package-content {
        padding: 21px;
    }

    .himachal-package-content h2 {
        font-size: 24px;
    }

    .himachal-package-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .himachal-package-bottom {
        flex-direction: column;

        align-items: stretch;
    }

    .himachal-book-btn {
        width: 100%;
    }

    .himachal-why-section {
        padding: 60px 0;
    }

    .himachal-why-image {
        height: 300px;
    }
}


/* =====================================================
   RESPONSIVE - 500
===================================================== */

@media (max-width: 500px) {

    .section {
        padding: 60px 5%;
    }

    .hero-tag {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-buttons {
        max-width: 240px;
    }

    .primary-btn,
    .secondary-btn {
        min-height: 46px;

        font-size: 13px;
    }

    .package-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .floating-buttons {
        right: 12px;
        bottom: 18px;
    }

    .floating-buttons a {
        width: 43px;
        height: 43px;

        font-size: 18px;
    }

    .destination-hero h1 {
        font-size: 40px;
    }

    .destination-large-card {
        min-height: 370px;
    }

    .destination-page-content {
        left: 22px;
        right: 22px;

        bottom: 23px;
    }

    .destination-page-content h3 {
        font-size: 30px;
    }

    .destination-page-content p {
        font-size: 12px;
    }

    .himachal-hero-content h1 {
        font-size: 40px;
    }
}