* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Segoe UI', sans-serif; */
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #222;
}

/* Headings premium look */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #111;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}



.top-left span {
    margin-right: 20px;
}

.top-left i {
    color: #fffefd;
    margin-right: 6px;
}

.top-right a {
    color: #fff;
    margin-left: 14px;
    transition: 0.3s;
}

.top-right a:hover {
    color: #f9b233;
}

/* ================= NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

/* Logo */
.logo img {
    height: 50px;
    width: 95px;
    margin-top: -7px;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #000000;
    padding: 12px 18px;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}

.nav-menu li a:hover {
    color: #364aa3;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: none;
    border-radius: 6px;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 4px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    /* 🔥 Mobile navbar proper height */
    .navbar {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 999;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        min-height: 72px;
    }

    /* Logo left */
    .logo img {
        height: 50px;
    }

    /* Hamburger right */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #000;
        margin: 5px 0;
        border-radius: 2px;
    }

    /* ❌ Hide desktop menu */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: #fff;
        flex-direction: column;
        padding-top: 20px;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
    }

    /* Show menu on click */
    .nav-menu.active {
        left: 0;
    }

    /* Menu items */
    .nav-menu li a {
        padding: 16px 24px;
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f9f9f9;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Hide top bar */
    .top-bar {
        display: none;
    }
}



/* hero css */
.hero {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Black overlay for premium look */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 244px;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #eee;
}

.hero-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #f9b233;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .hero {
        height: 50vh;
    }

    .hero-content {
        margin-left: 0px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 16px;
    }
}



/* about css */
/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */
.about-section {
    background: #faf7f2;
    padding: 0px 0;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    gap: 50px;
    align-items: stretch;
    /* 🔥 equal height fix */
}

/* LEFT CONTENT */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 7px;
}

.about-content h2 {
    font-size: 48px;
    color: #000000;
    margin-bottom: 10px;
}

.rating {
    color: #3e4bb6;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* READ MORE BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    align-self: flex-start;

    padding: 12px 32px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #dd9c0f;
}

/* RIGHT IMAGE */
.about-image {
    flex: 1;
    height: 512px;
    /* 🔥 horizontal look */
    border-radius: 20px;
    overflow: hidden;
    /* image crop clean rahe */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: 14px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* distort nahi hogi */
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .about-section {
        padding: 15px 0;
        margin-left: 0;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        margin-top: 0;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-btn {
        align-self: center;
    }

    .about-image img {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
}

/* our services */
/* ================= OUR SERVICES ================= */
.services-section {
    background: #ffffff;
    padding: 32px 0;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */
.services-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 0px;
}

.services-heading .subtitle {
    display: inline-block;
    color: #dd9c0f;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-heading h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #111;
}

.services-heading p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.service-card {
    background: #faf7f2;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.service-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .services-heading h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px 25px;
    }
}


/* our tour packages */
/* ================= FEATURED TOURS ================= */
.featured-tours {
    background: #faf7f2;
    padding: 10px 0;
}

.featured-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */
.featured-heading {
    text-align: center;
    margin-bottom: 70px;
}

.featured-heading .subtitle {
    color: #dd9c0f;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.featured-heading h2 {
    font-size: 42px;
    margin-top: 10px;
}

/* Tour Item */
.tour-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 23px;
}

.tour-item.reverse {
    flex-direction: row-reverse;
}

/* Image */
.tour-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Content */
.tour-content {
    flex: 1;
}

.tour-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.tour-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 18px;
}

/* Meta */
.tour-meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: #000000;
    margin-bottom: 12px;
}

.tour-meta i {
    color: #3e4bb6;
    margin-right: 6px;
}

/* Rating */
.tour-rating {
    color: #3e4bb6;
    font-size: 18px;
    margin-bottom: 18px;
}

/* Buttons */
.tour-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn.whatsapp {
    background: #000000;
    color: #fff;
}

.btn.book {
    background: #000;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .featured-heading h2 {
        font-size: 32px;
    }

    .tour-item,
    .tour-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .tour-image img {
        max-width: 100%;
    }

    .tour-meta {
        justify-content: center;
    }

    .tour-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* CTA form */
.tm_custom_section {
    position: relative;
    padding: 80px 0;
    background: url('/images/cta2form.jpg') center/cover fixed no-repeat;
    color: #fff;
}

.tm_custom_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.tm_custom_container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
}

/* LEFT SIDE */
.tm_custom_left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
}

.tm_custom_left p {
    font-size: 19px;
    /* Desktop ke liye thoda bada font */
    line-height: 1.95;
    /* Lines ke beech smooth spacing */
    color: #ffffff;
    opacity: 0.96;
    /* Text zyada clean & visible */
    /* margin: 0 45px 32px 28px; */
    /* Left/Right gap perfect, bottom space set */
    text-align: justify;
    /* Paragraph equal & premium look */
    letter-spacing: 0.35px;
    /* Alphabet spacing smooth */
    word-spacing: 1.15px;
    /* Word spacing elegant */
}


/* RIGHT SIDE FORM */
.tm_custom_form {
    backdrop-filter: blur(2px);
    padding: 30px 0;
    /* no background box */
}

.tm_custom_form h3 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

.tm_form_group {
    margin-bottom: 15px;
}

.tm_form_group input,
.tm_form_group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #f3f3f3;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.tm_form_group input::placeholder,
.tm_form_group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.tm_custom_btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: #000000;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.tm_custom_btn:hover {
    background: #000000;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .tm_custom_container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tm_custom_left h2 {
        font-size: 34px;
    }
}

/* 3steps */
/* ================= 3 EASY STEPS ================= */
.steps-section {
    background: #ffffff;
    padding: 10px 0;
}

.steps-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */
.steps-heading {
    text-align: center;
    margin-bottom: 28px;
}

.steps-heading .subtitle {
    color: #f9b233;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.steps-heading h2 {
    font-size: 40px;
    margin-top: 10px;
}

/* Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.step-card {
    background: #faf7f2;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */
.step-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .steps-heading h2 {
        font-size: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 35px 25px;
    }
}


/* footer */
.footer-section {
    /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
    background: #000000;
    color: #fff;
    padding: 20px 20px 0;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 21px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 2.7;

    /* opacity: 0.9; */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0e0e0;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-social {
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffffff;
    color: #203a43;
    transform: translateY(-3px);
}

.footer-col p i {
    margin-right: 8px;
    color: #ffd369;
}

.footer-bottom {
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 18px;
    font-size: 14px;
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social a {
        margin: 8px;
    }

    .footer-col p i {
        display: block;
        margin-bottom: 6px;
    }
}

.footer-tripadvisor {
    margin-top: 15px;
}

.footer-tripadvisor img {
    width: 120px;
    /* small & clean */
    max-width: 100%;
    height: auto;
    display: block;
    /* filter: grayscale(100%); */
    transition: all 0.3s ease;
}

/* .footer-tripadvisor img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
} */

/* car rental */
.car-rental-section {
    padding: 29px 20px;
    background: linear-gradient(135deg, #3d4ba7, #35406d, #000000);
    /* font-family: "Poppins", sans-serif; */
}

.car-rental-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.car-rental-content {
    flex: 1;
    color: #fff;
    margin-top: -92px;
}

.car-rental-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.car-rental-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.car-rental-content ul {
    list-style: none;
    padding: 0;
}

.car-rental-content ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.car-rental-form {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.car-rental-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: -24px;
    color: #203a43;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.car-rental-form input,
.car-rental-form select,
.car-rental-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.car-rental-form textarea {
    resize: none;
    height: 90px;
}

.car-rental-form input:focus,
.car-rental-form select:focus,
.car-rental-form textarea:focus {
    border-color: #2c5364;
}

.car-rental-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: black;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.car-rental-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .car-rental-container {
        flex-direction: column;
    }

    .car-rental-content {
        margin-top: 0;
        text-align: center;
    }

    .car-rental-content h2 {
        font-size: 30px;
    }

    .car-rental-content p {
        font-size: 15px;
    }

    .car-rental-form {
        padding: 25px;
        width: 344px;
    }

    .car-rental-form h3 {
        margin-top: 0;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }
}



/* travel guide css */
.travel-guide-section {
    padding: 25px 20px;
    background: #f5f7fa;
    /* font-family: "Poppins", sans-serif; */
}

.travel-guide-container {
    max-width: 1200px;
    margin: auto;
}

.travel-guide-heading {
    text-align: center;
    margin-bottom: 50px;
}

.travel-guide-heading h2 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 8px;
}

.travel-guide-heading p {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.travel-guide-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.guide-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.guide-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.guide-card h3 {
    font-size: 20px;
    margin: 15px 0 5px;
    color: #000000;
}

.guide-card span {
    display: block;
    font-size: 14px;
    color: #000000;
    margin-bottom: 6px;
}

.guide-card p {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    padding-bottom: 18px;
}

/* Tablet */
@media (max-width: 992px) {
    .travel-guide-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .travel-guide-cards {
        grid-template-columns: 1fr;
    }

    .travel-guide-heading h2 {
        font-size: 30px;
    }
}

/* hotel-bookingcss */
.tpPlanSection {
    padding: 34px 0;
    background: #ffffff;
}

.tpContainer {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 45px;
    padding: 0 25px;
}

/* LEFT SIDE */
.tpLeft {
    width: 50%;
}

.tpTitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tpIntro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: black;
}

.tpSubTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.tpSteps li {
    margin-bottom: 18px;
    line-height: 1.5;
}

.tpSteps p {
    margin: 4px 0 0;
    color: #000000;
}

/* RIGHT FORM BOX */
.tpRight {
    width: 50%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.12);
}

.tpForm label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.tpForm input,
.tpForm select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 18px;
    background: #fff;
    transition: 0.3s;
}

.tpForm input:focus,
.tpForm select:focus {
    border-color: #c49b69;
    box-shadow: 0 0 7px rgba(196, 155, 105, 0.4);
}

.tpRow {
    display: flex;
    gap: 20px;
}

.tpGroup {
    flex: 1;
}

.tpContactTitle {
    margin: 25px 0 15px;
    text-align: center;
    font-size: 20px;
}

/* BUTTON */
.tpSubmitBtn {
    width: 100%;
    padding: 14px;
    background: #16285a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.tpSubmitBtn:hover {
    background: #000000;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .tpContainer {
        flex-direction: column;
    }

    .tpLeft,
    .tpRight {
        width: 100%;
    }
}

@media(max-width: 576px) {
    .tpRow {
        flex-direction: column;
    }

    .tpRight {
        padding: 25px;
        border-radius: 15px;
    }
}

/* contact us */
.contact-section {
    padding: 80px 20px;
    background: #f8f9fb;
    /* font-family: 'Poppins', sans-serif; */
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.section-subtitle {
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-desc {
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box i {
    font-size: 22px;
    color: #000000;
    background: #fff;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-box h4 {
    margin: 0;
    font-size: 18px;
}

.info-box p {
    margin: 4px 0 0;
    color: #000000;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b00;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #000000, #000000);
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

/* scroller */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.5);
}

/* Mobile thoda chota */
@media (max-width: 768px) {
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}


/* itinerarypage css */
.itinerary-page {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* LEFT */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.tour-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.tour-meta {
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    font-size: 17px;
    color: #000000;
}

.stars {
    color: #364aa3;
}

.tour-title {
    margin: 30px 0 20px;
    font-size: 32px;
}

.box {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.box h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.box p {
    color: #000000;
    line-height: 1.7;
}

.highlight-list {
    padding-left: 20px;
    color: black;
}

.highlight-list li {
    margin-bottom: 10px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* RIGHT SIDEBAR */
.right-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-box {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-box h3 {
    margin-bottom: 15px;
}

.sidebar-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.sidebar-box button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #000000, #000000);
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.btn {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.whatsapp {
    background: #25d366;
}

.call {
    background: #007bff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }

    .tour-meta {
        font-size: 12px;
    }

    .right-sidebar {
        position: static;
    }

    .tour-title {
        font-size: 26px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}