﻿/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: #333;
}

/* ==========================
   HEADER
========================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: .4s;
}

.navbar {
    width: 100%;
    padding: 8px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s;
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

    .logo span {
        color: #D4AF37;
    }

    .logo small {
        display: block;
        font-size: 11px;
        letter-spacing: 4px;
        color: #fff;
    }

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

    nav ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        position: relative;
        font-size: large;
    }

        nav ul li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #D4AF37;
            transition: .3s;
            color: gold;
        }



.book-btn {
    padding: 14px 30px;
    border-radius: 50px;
    background: #D4AF37;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .book-btn:hover {
        transform: translateY(-3px);
    }

.mobile-menu {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* HEADER AFTER SCROLL */

.header-scrolled .navbar {
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.header-scrolled .logo {
    color: #111;
}

    .header-scrolled .logo small {
        color: #666;
    }

.header-scrolled nav ul li a {
    color: #111;
}

.header-scrolled .mobile-menu {
    color: #111;
}

/* ==========================
   HERO
========================== */

.hero {
    height: 100vh;
    background: url('../images/Hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45);
    }

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
}

    .hero-content h1 {
        font-size: 80px;
        line-height: 1.1;
    }

        .hero-content h1 span {
            color: #D4AF37;
        }

    .hero-content p {
        font-size: 22px;
        margin: 25px 0;
    }

.hero-btn {
    display: inline-block;
    padding: 18px 35px;
    background: #D4AF37;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
}

/* ==========================
   SECTION TITLE
========================== */

.title {
    text-align: center;
    margin-bottom: 60px;
}

    .title h2 {
        font-size: 48px;
        color: #111;
    }

    .title p {
        color: #777;
    }

/* ==========================
   SERVICES
========================== */

.services {
    padding: 100px 8%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-box {
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: .4s;
}

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .service-box i {
        font-size: 50px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

/* ==========================
   DESTINATIONS
========================== */

.destinations {
    padding: 100px 8%;
    background: #e5ddc3;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .4s;
}

    .card:hover {
        transform: translateY(-10px);
    }

    .card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

.card-content {
    padding: 20px;
}

/* ==========================
   COUNTER
========================== */

.counter {
    padding: 80px 8%;
    background: #e5ddc3;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    color: #fff;
}

    .counter h2 {
        font-size: 55px;
    }

    .counter p {
        margin-top: 10px;
    }

/* ==========================
   FOOTER
========================== */

.footer {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #D4AF37, #F5D76E, #D4AF37 );
    }

.footer-top {
    max-width: 1400px;
    margin: auto;
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-about h2 {
    color: #D4AF37;
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #666;
    line-height: 1.9;
}

.footer-links h3,
.footer-contact h3 {
    color: #222;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

    .footer-links ul li {
        margin-bottom: 12px;
    }

.footer-links a {
    text-decoration: none;
    color: #666;
    transition: .3s;
}

    .footer-links a:hover {
        color: #D4AF37;
        padding-left: 6px;
    }

.footer-contact p {
    color: #666;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #D4AF37;
    width: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .social-icons a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #fafafa;
        border: 1px solid #eee;
        color: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s;
    }

        .social-icons a:hover {
            background: #D4AF37;
            color: #fff;
            transform: translateY(-4px);
        }


/* ==========================
   MOBILE MENU
========================== */

@media(max-width:991px) {

    .mobile-menu {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        transition: .4s;
        z-index: 99999;
    }

        nav ul {
            flex-direction: column;
            padding: 120px 30px;
        }

            nav ul li a {
                color: #111;
            }

    .show-menu {
        right: 0;
    }

    .book-btn {
        display: none;
    }

    .service-grid,
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .counter {
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 55px;
    }
}

@media(max-width:768px) {

    .counter,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .social-icons {
        justify-content: center;
    }
}

.footer-bottom {
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 22px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
}

    .footer-bottom span {
        color: #D4AF37;
        font-weight: 700;
    }

.counter {
    padding: 100px 8%;
    background: linear-gradient( 135deg, #D4AF37, #E8C766, #D4AF37 );
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    color: #fff;
}

    .counter h2 {
        font-size: 60px;
        font-weight: 700;
    }

    .counter p {
        font-size: 18px;
        margin-top: 10px;
    }

/* ==========================
   COUNTER SECTION
========================== */

.counter {
    padding: 100px 8%;
    background: #e5ddc3;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

    .counter div {
        background: #fff;
        padding: 40px 20px;
        text-align: center;
        border-radius: 20px;
        border: 1px solid #f1f1f1;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        transition: .4s;
    }

        .counter div:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,.12);
        }

    .counter h2 {
        font-size: 60px;
        color: #D4AF37;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 15px;
    }

    .counter p {
        color: #111;
        font-size: 18px;
        font-weight: 500;
    }

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .counter {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .counter {
        grid-template-columns: 1fr;
    }

        .counter h2 {
            font-size: 45px;
        }

        .counter p {
            font-size: 16px;
        }
}

.footer-bottom {
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 22px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
}

    .footer-bottom span {
        color: #D4AF37;
        font-weight: 700;
    }
/* ==========================
   FLOATING ICONS
========================== */

.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

    .floating-icons a {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
        text-decoration: none;
        box-shadow: 0 5px 20px rgba(0,0,0,.2);
        transition: .3s;
    }

        .floating-icons a:hover {
            transform: translateY(-5px) scale(1.08);
        }

/* WhatsApp */

.whatsapp {
    background: #25D366;
}

/* Call */

.call {
    background: #D4AF37;
}

/* Instagram */

.instagram {
    background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888 );
}

/* Facebook */

.facebook {
    background: #1877F2;
}

/* Mobile */

@media(max-width:768px) {

    .floating-icons {
        right: 15px;
        bottom: 120px;
    }

        .floating-icons a {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
}
/* ==========================
   CHAT BOT
========================== */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.chatbot-btn {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    transition: .3s;
}

    .chatbot-btn:hover {
        transform: scale(1.08);
    }

.chatbot-box {
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    position: absolute;
    bottom: 75px;
    left: 0;
    display: none;
}

.chat-header {
    background: #D4AF37;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .chat-header span {
        cursor: pointer;
    }

.chat-body {
    height: 290px;
    overflow-y: auto;
    padding: 15px;
    background: #fafafa;
}

.bot-message {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.chat-footer {
    display: flex;
    border-top: 1px solid #eee;
}

    .chat-footer input {
        flex: 1;
        border: none;
        padding: 15px;
        outline: none;
    }

    .chat-footer button {
        border: none;
        background: #D4AF37;
        color: #fff;
        padding: 0 20px;
        cursor: pointer;
    }

.show-chat {
    display: block;
}

@media(max-width:768px) {

    .chatbot-box {
        width: 290px;
        height: 400px;
    }

    .chatbot-container {
        left: 15px;
        bottom: 15px;
    }
}

.user-message {
    background: #D4AF37;
    color: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    margin: 10px 0;
    margin-left: auto;
    width: fit-content;
    max-width: 80%;
}

.bot-message {
    background: #f4f4f4;
    color: #333;
    padding: 10px 15px;
    border-radius: 15px;
    margin: 10px 0;
    width: fit-content;
    max-width: 80%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .logo img {
        height: 80px;
        width: auto;
        transition: .3s;
    }

.header-scrolled .logo img {
    height: 70px;
}

@media(max-width:768px) {

    .logo img {
        height: 60px;
    }

    .header-scrolled .logo img {
        height: 55px;
    }
}

.navbar {
    min-height: 120px;
}

.logo img {
    height: 110px;
    width: 110px;
    object-fit: contain;
}

.navbar {
    min-height: 120px;
}

.hero {
    height: 100vh;
    background: url('../images/Hero.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.50);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 85px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero-content h1 span {
        color: #D4AF37;
    }

.hero-content p {
    max-width: 700px;
    font-size: 20px;
    line-height: 1.8;
    color: #f1f1f1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-btn {
    background: #D4AF37;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.hero-btn-outline {
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15);
    max-width: 1000px;
}

    .hero-booking-form input,
    .hero-booking-form select {
        flex: 1;
        min-width: 180px;
        height: 55px;
        border: none;
        border-radius: 10px;
        padding: 0 15px;
        background: rgba(255,255,255,.15);
        color: #fff;
        outline: none;
    }

        .hero-booking-form input::placeholder {
            color: #fff;
        }

    .hero-booking-form option {
        color: #111;
    }

    .hero-booking-form button {
        height: 55px;
        padding: 0 30px;
        border: none;
        border-radius: 10px;
        background: #D4AF37;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
    }

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-booking-form {
        flex-direction: column;
    }

        .hero-booking-form input,
        .hero-booking-form select,
        .hero-booking-form button {
            width: 100%;
        }
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 42px; /* was 85px */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    max-width: 600px;
    line-height: 1.7;
}

/* ==========================
   MOBILE HERO
========================== */

@media(max-width:991px) {

    .hero {
        min-height: 100vh;
        padding: 120px 20px 50px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 0 !important;
    }

    .hero-tag {
        font-size: 11px;
        padding: 8px 15px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
        margin: 15px auto 25px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-booking-form {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

        .hero-booking-form input,
        .hero-booking-form select,
        .hero-booking-form button {
            width: 100%;
            min-width: 100%;
        }
}

@media(max-width:768px) {

    .hero {
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-tag {
        font-size: 10px;
    }

    .hero-booking-form {
        border-radius: 15px;
    }

        .hero-booking-form input,
        .hero-booking-form select,
        .hero-booking-form button {
            height: 50px;
            font-size: 14px;
        }
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-btn,
.hero-btn-outline {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 40px;
}

/* BOOKING FORM */

.hero-booking-form {
    margin-top: 20px;
    padding: 15px;
    gap: 10px;
    width: 200%;
}

    .hero-booking-form input,
    .hero-booking-form select {
        min-width: 50px;
        height: 45px;
        font-size: 14px;
        padding: 0 12px;
    }

    .hero-booking-form button {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }

/* MOBILE */

@media(max-width:768px) {

    .hero-buttons {
        justify-content: center;
    }

    .hero-btn,
    .hero-btn-outline {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-booking-form {
        display: grid;
        grid-template-columns: 1fr;
        padding: 12px;
        width: 80%;
        margin-left: 10%;
        height: 362px;
    }

        .hero-booking-form input,
        .hero-booking-form select,
        .hero-booking-form button {
            width: 100%;
            height: 42px;
            font-size: 13px;
        }

    .hero-content h1 {
        margin-top: 25%;
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

@media(max-width:768px) {

    .hero-buttons {
        display: none;
    }
}


.packages-page {
    padding: 150px 8% 100px;
    background: #e5ddc3;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
}

    .page-title h1 {
        font-size: 55px;
        color: #111;
    }

    .page-title p {
        color: #777;
        margin-top: 10px;
    }

.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
}

    .package-card:hover {
        transform: translateY(-10px);
    }

    .package-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.package-content {
    padding: 25px;
}

    .package-content h3 {
        margin-bottom: 10px;
    }

    .package-content p {
        color: #666;
        margin-bottom: 15px;
    }

.price {
    color: #D4AF37;
    font-size: 28px;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.package-btn {
    display: inline-block;
    margin-top: 20px;
    background: #D4AF37;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
}

@media(max-width:991px) {

    .package-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .package-grid {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 40px;
    }
}

.kashmir-highlight {
    padding: 80px 8%;
    text-align: center;
    background: #fff;
}

.kashmir-head h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
}

.kashmir-head p {
    max-width: 800px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.highlight-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.highlight-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-bottom: 4px solid #D4AF37;
    transition: .3s;
}

    .highlight-card:hover {
        transform: translateY(-10px);
    }

    .highlight-card h3 {
        color: #D4AF37;
        margin-bottom: 15px;
    }

    .highlight-card p {
        color: #666;
        line-height: 1.8;
    }

.kashmir-btn {
    display: inline-block;
    margin-top: 40px;
    background: #D4AF37;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
}

@media(max-width:768px) {

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .kashmir-head h2 {
        font-size: 30px;
    }
}



.contact-hero {
    height: 60vh;
    background: url('images/contact-banner.jpg') center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
    }

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

    .contact-hero-content h1 {
        font-size: 70px;
    }

.contact-section {
    padding: 100px 8%;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: #fff;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .contact-card i {
        width: 60px;
        height: 60px;
        background: #D4AF37;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .contact-card h3 {
        margin-bottom: 10px;
    }

    .contact-card p {
        color: #666;
    }

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .contact-form h2 {
        margin-bottom: 25px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        outline: none;
        font-size: 15px;
    }

    .form-group textarea {
        height: 150px;
        resize: none;
    }

.send-btn {
    width: 100%;
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.map-section {
    padding: 0 8% 100px;
}

    .map-section iframe {
        width: 100%;
        height: 450px;
        border: none;
        border-radius: 25px;
    }

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 45px;
    }
}

/* ==========================
   TRENDING PACKAGES
========================== */

.trending-packages {
    padding: 100px 8%;
    background: #e5ddc3;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .section-heading span {
        color: #D4AF37;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .section-heading h2 {
        font-size: 50px;
        margin: 10px 0;
        color: #111;
    }

    .section-heading p {
        color: #666;
    }

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}

    .tour-card.large {
        grid-column: span 2;
    }

    .tour-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .tour-card:hover img {
        transform: scale(1.1);
    }

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient( transparent, rgba(0,0,0,.8) );
    color: #fff;
}

    .tour-overlay h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .tour-overlay p {
        color: #f1f1f1;
    }

@media(max-width:991px) {

    .tour-gallery {
        grid-template-columns: repeat(2,1fr);
    }

    .tour-card.large {
        grid-column: span 2;
    }
}

@media(max-width:768px) {

    .tour-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .tour-card.large {
        grid-column: span 1;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}

.tour-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price {
    font-size: 22px;
    font-weight: 700;
    color: #D4AF37;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: linear-gradient( 135deg, #D4AF37, #F5D76E );
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

    .tour-btn:hover {
        background: #fff;
        color: #D4AF37;
        transform: translateY(-2px);
    }

@media(max-width:768px) {

    .tour-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .tour-btn {
        width: 100%;
        text-align: center;
    }
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.booking-modal-content {
    width: 95%;
    max-width: 500px;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    position: relative;
    animation: popup .3s ease;
}

@keyframes popup {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
}

.booking-modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #111;
}

.booking-modal-content input,
.booking-modal-content select {
    width: 100%;
    height: 55px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 15px;
    outline: none;
}

.booking-modal-content button {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: linear-gradient( 135deg, #D4AF37, #F5D76E );
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.services {
    padding: 80px 8%;
    background: #f8f9fa;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

    .title h2 {
        font-size: 40px;
        color: #222;
        margin-bottom: 10px;
    }

    .title p {
        color: #666;
        font-size: 16px;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .service-box img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .service-box h3 {
        font-size: 18px;
        color: #222;
        line-height: 1.4;
        font-weight: 600;
    }

.client-reviews {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

.review-slider {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReviews 30s linear infinite;
}

.review-card {
    min-width: 280px;
    max-width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

    .review-card h4 {
        color: #0d6efd;
        margin-bottom: 10px;
    }

    .review-card p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

@keyframes scrollReviews {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.review-card {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.review-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #f1f1f1;
}

.review-card h4 {
    margin-bottom: 10px;
    color: #333;
}

.review-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.footer-newsletter {
    max-width: 300px;
}

    .footer-newsletter h3 {
        margin-bottom: 10px;
    }

    .footer-newsletter p {
        color: #666;
        font-size: 14px;
        margin-bottom: 15px;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .newsletter-form input {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        outline: none;
    }

   