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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.2;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}


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

.top-bar {
    background: #d97706;
    padding: 12px 0;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-left a,
.top-right a {
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.top-left a:hover,
.top-right a:hover {
    color: var(--accent);
}




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

.site-header {
    background: transparent;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.logo img {
    width: 130px;
}

.logo {
    padding-top: 0px;
}

.logo-sticky {
    display: none;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-navigation ul li a {
    color: var(--white);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.main-navigation ul li a:hover {
    color: var(--accent);
}

.main-navigation ul li ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li ul li {
    width: 100%;
}

.main-navigation ul li ul li a {
    color: var(--dark);
}

.main-navigation ul li ul li a:hover {
    background-color: var(--accent);
    color: var(--white);
}

.main-navigation .nav-item-wrapper {
    display: flex;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= Header Sticky ================= */
.site-header-sticky {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
}

.site-header-sticky .logo-main {
    display: none;
}

.site-header-sticky .logo-sticky {
    display: block;
}

.site-header-sticky .main-navigation ul li a {
    color: var(--dark);
}

/* Custom Dropdown Styles */
.main-navigation .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 10px 0;
}

.main-navigation .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .dropdown-item {
    color: var(--dark) !important;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.main-navigation .dropdown-item:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Adjustments for sticky header */
.site-header-sticky .main-navigation .dropdown-menu {
    background-color: var(--white);
}

.site-header-sticky .main-navigation .dropdown-item {
    color: var(--dark);
}

.site-header-sticky .main-navigation .dropdown-item:hover {
    color: var(--white);
}

.main-navigation .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    color: var(--white);
}

.site-header-sticky .main-navigation .dropdown-toggle::after {
    color: var(--dark);
}



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

.hero-section {
    position: relative;
}

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
    padding-top: 100px;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #fff;
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.hero-content h1 {
    max-width: 650px;
}


.hero-slide {
    display: none;
    animation: fade .8s ease;
}

.hero-slide.active {
    display: flex;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 20;
    font-size: 18px;
    transition: .3s;
}

.slider-btn:hover {
    background: var(--accent);
    color: #fff;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.hero-content {
    animation: heroFade 1s ease;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.booking-search {
    margin-top: -60px;
    position: relative;
    z-index: 50;
}

.booking-box {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .15);
    padding: 35px;
    display: grid;
    grid-template-columns:
        1fr 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.booking-item label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.booking-item select,
.booking-item input {
    width: 100%;
    height: 65px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
}

.booking-btn button {
    height: 60px;
    padding: 0 35px;
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.booking-btn button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, .35);
}

.booking-item select:focus,
.booking-item input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, .15);
}

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

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-heading span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 50px;
    margin: 20px 0;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 450px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
    transition: .6s;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .1));

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.destination-overlay h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.destination-overlay span {
    color: #fff;
}

.destinations {
    background: #fff;
    position: relative;
    z-index: 5;
}


.section-heading h2 {
    font-size: 58px;
    margin: 15px 0;
    color: var(--dark);
}

.section-heading p {
    font-size: 18px;
    color: var(--text);
}

.destination-card {
    transition: .4s;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.destinations {
    padding-top: 140px;
}

.destination-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}


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

.activities {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    background: #fff;
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.activity-card i {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 25px;
}

.activity-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.activity-card p {
    color: var(--text);
    line-height: 1.8;
}

.activity-card i {
    transition: .5s;
}

.activity-card:hover i {
    transform: rotateY(360deg);
}

.activity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transition: .4s;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover h3 {
    color: var(--accent);
}

/* ================= FEATURED TOURS ================= */

.featured-tours {
    background: #fff;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.tour-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.tour-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
}

.tour-content {
    padding: 30px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #777;
    font-size: 14px;
}

.tour-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    max-width: 225px;
}

.tour-content p {
    color: #666;
    margin-bottom: 25px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    transition: .3s;
}

.tour-btn:hover {
    transform: translateY(-3px);
}

.tour-img-bottom {
    object-position: center bottom !important;
}

/* ================= WHY US ================= */

.why-us {
    background: #f8fafc;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.why-left h2 {
    font-size: 58px;
    line-height: 1.15;
    max-width: 650px;
}

.why-left p {
    color: #666;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.why-item i {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.why-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.counter-box {
    background: #fff;
    padding: 45px 25px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    border: 1px solid rgba(0, 0, 0, .05);
}

.counter-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.counter-box h3 {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 15px;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    border: 1px solid rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.stars {
    color: #f59e0b;
    font-size: 24px;
    margin-bottom: 25px;
}

.testimonial-text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-user span {
    color: #777;
}

/* ================= GALLERY ================= */

.gallery {
    background: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 25px;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================= CTA ================= */

.cta-section {
    padding-bottom: 120px;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg,
            #0f172a,
            #1e293b);

    border-radius: 40px;
    text-align: center;
    padding: 90px 40px;
}

.cta-box h2 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 20px;
}

.cta-box p {
    color: #cbd5e1;
    font-size: 20px;
    margin-bottom: 40px;
}

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

.footer {
    background: #0f172a;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 90px 0;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer-col p {
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
}

.footer-col img {
    width: 180px;
    height: auto;
    margin-bottom: 25px;
    /* object-fit: contain; */
}

.footer-col ul {
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 18px;
}

.footer-col ul li a {
    color: #cbd5e1;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 30px 0;
}

/* ================= EXPEDITION ================= */

.expedition-section {
    position: relative;

    background:
        linear-gradient(rgba(255, 255, 255, .92),
            rgba(255, 255, 255, .92)),
        url('../images/mountain-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.expedition-box {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.3fr 550px;
    gap: 60px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.expedition-tag {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expedition-content h2 {
    font-size: 68px;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.expedition-content h2 span {
    color: var(--accent);
}

.expedition-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.expedition-details {
    background: linear-gradient(135deg, #0B2341, #163B69);
    padding: 35px;
    border-radius: 25px;
    color: #fff;
    margin-bottom: 35px;
    box-shadow: 0 20px 40px rgba(11, 35, 65, .15);
}

.detail-item {
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.expedition-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.expedition-buttons a {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.read-btn {
    background: #E67E22;
    color: #fff;
}

.download-btn {
    border: 2px solid #0B2341;
    color: #0B2341;
}

.read-btn:hover,
.download-btn:hover {
    transform: translateY(-5px);
}

.expedition-image {
    position: relative;
}

.expedition-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 18px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    font-weight: 600;
    color: #0B2341;
}

.expedition-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .20);
}

.expedition-image::before {
    content: "10 Days Adventure";
    position: absolute;
    top: 25px;
    left: -30px;
    background: #E67E22;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    z-index: 5;
}

/* ================= About US ================= */

/* ================= ABOUT PAGE ================= */

.page-banner {
    height: 500px;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/about/about-banner.jpg');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-content {
    max-width: 800px;
    color: #fff;
    margin: 0 auto;
}

.page-banner-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.page-banner-content h1 {
    color: #fff;
    font-size: 72px;
    margin: 20px 0;
}

.page-banner-content p {
    font-size: 20px;
    color: #f3f4f6;
}

.banner-content {
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    color: #fff;
    font-size: 65px;
    margin-bottom: 20px;
}

.banner-content p {
    color: #fff;
    font-size: 22px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
    transition: .4s;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-content span {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 52px;
    margin: 20px 0;
}

.about-content p {
    margin-bottom: 25px;
    color: var(--text);
    font-size: 18px;
}

.about-counter {
    background: #f8fafc;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-box {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.counter-box h3 {
    font-size: 52px;
    color: var(--accent);
    margin-bottom: 10px;
}

.counter-box p {
    color: var(--text);
    font-size: 18px;
}

.mission-vision {
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .4s;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.mission-card i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: rgba(233, 131, 32, .1);
    color: var(--accent);
    font-size: 35px;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--text);
    font-size: 18px;
}

.about-cta {
    padding: 120px 0;
}

.about-cta-box {
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/about/cta-bg.jpg');
    padding: 100px 80px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
}

.about-cta-box h2 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 20px;
}

.about-cta-box p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 20px;
    color: #fff;
}

.about-cta-box {
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/cta-bg.webp');
    transition: .4s;
    background-size: cover;
    background-position: center;
}

.about-cta-box:hover {
    transform: translateY(-8px);
}

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

.tours-banner {
    min-height: 500px;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/cta-bg.webp');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}



.tour-filter {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.tour-filter-box {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.filter-item label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.filter-item select {
    width: 100%;
    height: 60px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 16px;
}

.filter-btn button {
    width: 100%;
    height: 60px;
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    position: relative;
    height: 260px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
}

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

.tours-page-packages {
    padding: 140px 0 100px;
}

.tours-page-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.tours-page-heading span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tours-page-heading h2 {
    font-size: 58px;
    margin: 15px 0;
    color: var(--dark);
}

.tours-page-heading p {
    font-size: 18px;
    color: var(--text);
}

.tours-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tours-page-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.tours-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.tours-page-image {
    position: relative;
    height: 260px;
}

.tours-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tours-page-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
}

.tours-page-content {
    padding: 30px;
}

.tours-page-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #6b7280;
}

.tours-page-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.tours-page-content p {
    color: #6b7280;
    margin-bottom: 25px;
}

.tours-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tours-page-rating {
    font-size: 18px;
}

.tours-featured {
    background: #f8fafc;
}

.tours-featured-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tours-featured-image img {
    width: 100%;
    border-radius: 35px;
    display: block;
}

.tours-featured-tag {
    display: inline-block;
    background: rgba(217, 119, 6, .1);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tours-featured-content h2 {
    font-size: 54px;
    margin-bottom: 25px;
}

.tours-featured-content p {
    margin-bottom: 30px;
    color: var(--text);
    font-size: 18px;
}

.tours-featured-list {
    margin-bottom: 35px;
}

.tours-featured-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

.tours-featured-list i {
    color: var(--accent);
    margin-right: 10px;
}

/* ================= POPULAR DESTINATION PAGE ================= */

.destination-hero {
    min-height: 420px;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url('../images/slider-img.webp');


    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.destination-hero-content {
    max-width: 800px;
    margin: auto;
    color: #fff;
}

.destination-hero-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.destination-hero-content h1 {
    color: #fff;
    font-size: 68px;
    margin: 20px 0;
}

.destination-hero-content p {
    font-size: 20px;
}

.destination-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.destination-heading span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.destination-heading h2 {
    font-size: 54px;
    margin: 15px 0;
}

.destination-heading p {
    color: var(--text);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.destination-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    height: 100%;

}

.destinations .destination-card {
    height: 450px;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    height: 260px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.destination-content p {
    margin-bottom: 25px;
    flex-grow: 1;
}

.destination-content .btn-primary {
    align-self: flex-start;
}

/* ================= ADVENTURE TOUR PACKAGES ================= */

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

.adventure-packages-hero {
    min-height: 450px;
    background:
        linear-gradient(rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .60)),
        url('../images/cta-bg.webp');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.adventure-packages-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.adventure-packages-hero-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.adventure-packages-hero-content h1 {
    color: #fff;
    font-size: 64px;
    margin: 20px 0;
}

.adventure-packages-hero-content p {
    font-size: 20px;
    color: #f3f4f6;
    line-height: 1.8;
}


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

.adventure-packages-section {
    background: #f8fafc;
}

.adventure-packages-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.adventure-packages-heading span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.adventure-packages-heading h2 {
    font-size: 58px;
    margin: 20px 0;
    color: var(--dark);
}

.adventure-packages-heading p {
    color: var(--text);
    font-size: 18px;
}


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

.adventure-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


/* ================= CARD ================= */

.adventure-package-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .4s;
}

.adventure-package-card:hover {
    transform: translateY(-10px);
}

.adventure-package-image {
    height: 260px;
}

.adventure-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventure-package-content {
    padding: 35px;
}

.adventure-package-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.adventure-package-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ================= BIKE TOUR ================= */

.bike-tours-hero {
    min-height: 450px;
    background:
        linear-gradient(rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .60)),
        url('../images/tours/leh-banner.png');

    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.activities-tours-hero {
    min-height: 450px;
    background:
        linear-gradient(rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .60)),
        url('../images/slider-img.webp');

    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.bike-tours-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.bike-tours-hero-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.bike-tours-hero-content h1 {
    font-size: 68px;
    color: #fff;
    margin: 20px 0;
}

.bike-tours-hero-content p {
    font-size: 20px;
    color: #f3f4f6;
    line-height: 1.8;
}

/* ================= BIKE TOURS ================= */

.bike-tour-packages {
    background: #f8fafc;
}

.bike-tour-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.bike-tour-heading span {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bike-tour-heading h2 {
    font-size: 54px;
    margin: 20px 0;
}

.bike-tour-heading p {
    color: var(--text);
    line-height: 1.8;
}

.bike-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.bike-tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.bike-tour-card:hover {
    transform: translateY(-10px);
}

.bike-tour-image {
    height: 300px;
}

.bike-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bike-tour-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bike-tour-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.bike-tour-top h3 {
    font-size: 24px;
    line-height: 1.3;
    min-height: 90px;
}

.bike-tour-badge {
    background: #0B2A5B;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1.2;
    flex-shrink: 0;
}

.bike-tour-duration {
    color: #6b7280;
    margin-bottom: 20px;
}

.bike-tour-info {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bike-tour-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.bike-btn-outline,
.bike-btn-primary {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.bike-btn-outline {
    background: #f3f4f6;
    color: #111827;
}

.bike-btn-primary {
    background: var(--accent);
    color: #fff;
}

/* ===============================
   TOUR DETAILS HERO
================================= */

.tour-detail-hero {
    min-height: 600px;
    background:
        linear-gradient(rgba(0, 0, 0, .60),
            rgba(0, 0, 0, .60)),
        url('../images/tours/leh-banner.png');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 150px;
}

.tour-detail-hero-content {
    max-width: 850px;
    margin: auto;
    color: #fff;
}

.tour-detail-hero-content span {
    color: var(--accent);
}

/* ================= BREADCRUMB SECTION ================= */
.breadcrumb-section {
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: -1;
}

.breadcrumb-section h1 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 15px;
}

.breadcrumb-section .breadcrumb {
    justify-content: center;
}

.breadcrumb-section .breadcrumb-item {
    color: #fff;
    font-size: 18px;
}

.breadcrumb-section .breadcrumb-item a {
    color: #fff;
    transition: .3s;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--accent);
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    background: #f8fafc;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.contact-form .section-heading h2 {
    font-size: 48px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    height: 55px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, .15);
}

.contact-form textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.contact-info .section-heading {
    text-align: left;
    margin-bottom: 40px;
}

.contact-info .section-heading h2 {
    font-size: 38px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 6, .1);
    color: var(--accent);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text);
    font-size: 17px;
    transition: .3s;
    word-break: break-all;
    /* Force long strings to wrap */
}

.contact-info-item a:hover {
    color: var(--accent);
}

@media (min-width: 992px) {
    .contact-info {
        padding: 30px;
    }

    .contact-info-item {
        gap: 10px;
    }
}

.map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.tour-detail-hero-content h1 {
    color: #fff;
    font-size: 70px;
    margin: 20px 0;
}

.tour-detail-hero-content p {
    font-size: 20px;
    color: #f3f4f6;
}

.tour-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tour-detail-meta div {
    background: #fff;
    color: #111827;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* ===============================
   OVERVIEW SECTION
================================= */

.tour-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.tour-small-title {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tour-overview-content h2 {
    font-size: 52px;
    margin: 20px 0;
}

.tour-overview-content p {
    color: #6b7280;
    line-height: 1.8;
}

.tour-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tour-highlights-list div {
    background: #f8fafc;
    padding: 18px;
    border-radius: 15px;
    font-weight: 600;
}

.tour-highlights-list i {
    color: var(--accent);
    margin-right: 10px;
}

/* ===============================
   PRICE CARD
================================= */

.tour-price-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    position: sticky;
    top: 120px;
}

.tour-price-card h3 {
    color: #6b7280;
}

.tour-price-card h2 {
    font-size: 55px;
    color: var(--accent);
    margin: 20px 0;
}

.tour-price-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.tour-price-card ul li {
    margin-bottom: 15px;
    color: #6b7280;
}

/* ===============================
   SECTION HEADINGS
================================= */

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-heading h2 {
    font-size: 58px;
    margin-top: 15px;
}

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

.itinerary-box {
    max-width: 900px;
    margin: auto;
}

.itinerary-item {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
    border-left: 6px solid var(--accent);
}

.itinerary-item h3 {
    margin-bottom: 15px;
}

.itinerary-item p {
    color: #6b7280;
}

/* ===============================
   INCLUDED / EXCLUDED
================================= */

.tour-include-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 500px));
    justify-content: center;
    gap: 30px;
}

.include-box,
.exclude-box {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .3s;
}

.include-box:hover,
.exclude-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.include-box h3,
.exclude-box h3 {
    font-size: 30px;
    margin-bottom: 35px;
    color: var(--dark);
    position: relative;
}

.include-box h3::after,
.exclude-box h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--accent);
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 20px;
}

.include-box ul,
.exclude-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.include-box li,
.exclude-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 17px;
    color: #4b5563;
}

.include-box li:last-child,
.exclude-box li:last-child {
    margin-bottom: 0;
}

.include-box li i {
    color: #22c55e;
    font-size: 15px;
}

.exclude-box li i {
    color: #ef4444;
    font-size: 15px;
}

/* ===============================
   GALLERY
================================= */

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
}

/* ===============================
   BOOKING FORM
================================= */

.booking-box {
    background: #fff;
    border-radius: 30px;
    padding: 70px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: center;
}

.booking-left h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark);
}

.booking-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-right input,
.booking-right textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 18px 20px;
    font-size: 16px;
}

.booking-right input {
    height: 60px;
}

.booking-right textarea {
    height: 140px;
    resize: none;
}

.booking-right button {
    width: 220px;
    height: 60px;
    border-radius: 50px;
    margin-top: 10px;
}

.booking-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-left h2 {
    margin: 0;
}

/* =================================
   PREMIUM TOUR HERO NEW
================================= */

.premium-tour-hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .72)),
        url('../images/tours/leh-banner.png');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.premium-tour-grid {
    display: grid;
    grid-template-columns: 2fr 450px;
    gap: 60px;
    align-items: center;
}

.premium-tour-content {
    color: #fff;
}

.premium-tour-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.premium-tour-content h1 {
    font-size: 72px;
    color: #fff;
    margin: 25px 0;
    line-height: 1.1;
}

.premium-tour-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #f3f4f6;
    max-width: 700px;
}

.premium-tour-facts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.premium-fact {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    padding: 16px 28px;
    border-radius: 50px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.premium-fact i {
    color: var(--accent);
    margin-right: 10px;
}


/* =================================
   HERO ENQUIRY CARD
================================= */

.premium-tour-enquiry {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 35px;
    padding: 40px;
    color: #fff;
}

.premium-tour-enquiry h3 {
    font-size: 40px;
    margin-bottom: 35px;
    color: #fff;
}

.premium-tour-enquiry form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.premium-tour-enquiry label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.premium-tour-enquiry label span {
    color: var(--accent);
}

.premium-tour-enquiry input {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
    padding: 0 18px;
    color: #fff;
    font-size: 15px;
}

.premium-tour-enquiry input::placeholder {
    color: #d1d5db;
}

.premium-tour-enquiry button {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
}

/* =================================
   ABOUT
================================= */

.premium-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.premium-heading span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.premium-heading h2 {
    font-size: 58px;
    margin-top: 15px;
}

.premium-about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #6b7280;
    line-height: 1.9;
    font-size: 18px;
}


/* =================================
   HIGHLIGHTS
================================= */

.premium-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.premium-highlight-box {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.premium-highlight-box:hover {
    transform: translateY(-10px);
}


/* =================================
   TIMELINE
================================= */

.premium-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.premium-timeline::before {
    content: "";
    position: absolute;
    left: 70px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e5e7eb;
}

.premium-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.premium-day {
    width: 140px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.premium-day-content {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    flex: 1;
}

.premium-day-content h3 {
    margin-bottom: 15px;
}

.premium-day-content p {
    color: #6b7280;
}


/* =================================
   INCLUDED / EXCLUDED
================================= */

.premium-include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.premium-included-box,
.premium-excluded-box {
    padding: 45px;
    border-radius: 30px;
}

.premium-included-box {
    background: #ecfdf5;
}

.premium-excluded-box {
    background: #fef2f2;
}

.premium-included-box h3,
.premium-excluded-box h3 {
    margin-bottom: 30px;
    font-size: 34px;
}

.premium-included-box ul,
.premium-excluded-box ul {
    list-style: none;
    padding: 0;
}

.premium-included-box li,
.premium-excluded-box li {
    margin-bottom: 20px;
    font-size: 17px;
}


/* =================================
   GALLERY
================================= */

.premium-gallery-grid {
    columns: 3;
    column-gap: 25px;
}

.premium-gallery-grid img {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 25px;
    display: block;
    height: 600px;
}


/* =================================
   BOOKING
================================= */

.premium-booking-card {
    background: #081120;
    border-radius: 35px;
    padding: 70px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    color: #fff;
}

.premium-booking-left h2 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}

.premium-booking-left p {
    color: #cbd5e1;
}

.premium-booking-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-booking-right input,
.premium-booking-right textarea {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 15px;
    padding: 0 20px;
}

.premium-booking-right textarea {
    height: 150px;
    padding-top: 20px;
    resize: none;
}


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

.srv-premium-hero {
    background: #0f172a;
}

.srv-premium-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 50px;
}

.srv-premium-heading span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.srv-premium-heading h1 {
    font-size: 72px;
    margin: 25px 0;
    color: white;
}

.srv-premium-heading p {
    color: #6b7280;
    line-height: 1.9;
}

/* =========================
   CATEGORY
========================= */

.srv-category-section {
    padding-top: 60px;
}

.srv-category-box {
    background: #F2F7FC;
    border: 1px solid #D6E4F2;
    border-radius: 35px;
    padding: 50px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
}

.srv-category-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.srv-category-title i {
    font-size: 30px;
    color: var(--accent);
}

.srv-category-title h2 {
    font-size: 36px;
}

/* =========================
   CARDS
========================= */

.srv-card-grid {
    display: grid;
    gap: 30px;
}

.srv-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.srv-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.srv-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s;
    height: 345px;
}

.srv-card:hover {
    transform: translateY(-10px);
}

.srv-card i {
    width: 70px;
    height: 70px;
    background: rgba(245, 124, 0, .10);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.srv-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.srv-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* =========================
   STATS
========================= */

.srv-stats-section {
    padding-bottom: 100px;
}

.srv-stats-grid {
    background: #081120;
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.srv-stat-item h2 {
    color: var(--accent);
    font-size: 52px;
}

.srv-stat-item p {
    color: #cbd5e1;
}

/* ================= BOOTSTRAP COMPATIBILITY OVERRIDES ================= */
.row {
    display: flex !important;
}

.destination-grid.row,
.activities-grid.row,
.tour-grid.row,
.why-wrapper.row,
.why-right.row,
.testimonial-grid.row,
.gallery-grid.row,
.footer-grid.row,
.expedition-box.row,
.about-grid.row,
.counter-grid.row,
.mission-grid.row,
.tours-page-grid.row,
.adventure-packages-grid.row,
.bike-tour-grid.row,
.tour-overview-grid.row,
.tour-include-grid.row,
.tour-gallery-grid.row,
.premium-tour-grid.row,
.premium-include-grid.row,
.premium-gallery-grid.row,
.srv-card-grid.row,
.srv-grid-4.row,
.srv-stats-grid.row {
    display: flex !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}


/* Mobile Menu Override for Bootstrap Collapse */
@media (max-width: 991.98px) {
    .collapse.navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0B2A5B;
        /* Primary color */
        padding: 20px 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .collapse.navbar-collapse.show {
        display: block !important;
    }

    .collapse.navbar-collapse.show .main-navigation {
        display: block !important;
    }

    .collapse.navbar-collapse>.main-navigation>.navbar-nav {
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }

    /* .collapse.navbar-collapse.show .main-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        display: none;
        padding: 0;
        margin-bottom: 20px;
    } */
    .collapse.navbar-collapse.show .main-navigation ul li {
        width: 100%;
    }

    .collapse.navbar-collapse.show .main-navigation ul li a {
        display: block;
        width: 100%;
        padding: 8px 0;
        color: #fff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .collapse.navbar-collapse.show .header-btn {
        display: block !important;
    }

    .collapse.navbar-collapse.show .header-btn a {
        width: 100%;
        text-align: center;
    }
}


/* Header and Hero Mobile Responsive Fixes */
@media (max-width: 991.98px) {
    .site-header {
        top: 60px !important;
        background-color: #0b2a5b00 !important;
        position: absolute !important;
    }

    .site-header.site-header-sticky {
        position: fixed !important;
        background-color: #fff !important;
        top: 0px !important;
    }

    .logo img {
        max-width: 140px !important;
        height: auto !important;
    }

    .hero-content {
        padding-top: 40px !important;
    }

    /* Make sure mobile toggler fits vertically */
    .mobile-toggle {
        margin: 0 !important;
        color: #fff !important;
    }

    .site-header-sticky .mobile-toggle {
        color: var(--dark) !important;
    }

    .main-navigation ul {
        gap: 5px;
    }
}


/* Spacing between main menu and book button on desktop */
@media (min-width: 992px) {
    .header-btn {
        margin-left: 45px !important;
    }
}

/* Global viewport fixes for mobile */
html,
body {
    overflow-x: hidden !important;
}

.logo a {
    display: inline-block !important;
    width: 130px !important;
}

.logo img {
    width: 100% !important;
    max-width: 130px !important;
    height: auto !important;
}


/* Mobile responsive fixes for Bike Tour Cards */
@media (max-width: 767px) {
    .bike-tour-top h3 {
        min-height: auto !important;
        margin-bottom: 10px;
    }

    .site-header {
        top: 20px !important
    }

}


/* ===========================
   TOUR ACCORDION
=========================== */

.mobile-tour-head {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

}

.mobile-tour-toggle {

    width: 40px;

    height: 40px;

    border: none;

    background: transparent;

    color: #fff;

    font-size: 15px;

    cursor: pointer;

    transition: .3s;

}

.mobile-tour-toggle i {

    transition: .35s;

}

.mobile-tour-dropdown.active .mobile-tour-toggle i {

    transform: rotate(180deg);

}

.mobile-tour-menu {

    display: block;

    max-height: 0;

    overflow: hidden;

    padding-left: 18px;

    margin: 0;

    transition: max-height .45s ease;

    list-style: none;

}

.mobile-tour-menu li {

    border: none !important;

}

.mobile-tour-menu a {

    display: block;

    padding: 12px 0;

    font-size: 15px;

    color: #dbeafe;

    text-decoration: none;

}

.mobile-tour-dropdown.active .mobile-tour-menu {

    max-height: 500px;

    margin-top: 10px;

}

@media(min-width:992px) {

    .mobile-tour-head {

        display: flex;

        align-items: center;

        gap: 6px;

    }

    .mobile-tour-toggle {

        display: none;

    }

    .mobile-tour-dropdown {

        position: relative;

    }

    .mobile-tour-menu {

        position: absolute;

        top: 100%;

        left: 0;

        min-width: 180px;

        background: #fff;

        padding: 0;

        border-radius: 12px;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

        opacity: 0;

        visibility: hidden;

        transform: translateY(20px);

        transition: .35s;

        z-index: 999;

        max-height: none;

        overflow: hidden;

    }

    .mobile-tour-menu li {

        padding: 0;

    }

    .mobile-tour-menu a {

        padding: 12px 15px;

        color: #222;

        border: none;

    }

    .mobile-tour-menu a:hover {

        background: #f8f8f8;

        color: var(--accent);

    }

    .mobile-tour-dropdown:hover .mobile-tour-menu {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

}

@media(max-width:991px) {

    .header-btn {
        margin-top: 15px;
    }

    .mobile-tour-head {

        padding: 12px 0;

        /* border-bottom: 1px solid rgba(255, 255, 255, .08); */

    }

    .mobile-tour-head .nav-link {

        margin: 0;

        padding: 0;

    }

    .mobile-tour-toggle {

        display: flex;

        align-items: center;

        justify-content: center;
        background-color: #fff;
        color: #0b2a5b;

    }

    .mobile-tour-dropdown.active .mobile-tour-menu {

        background: rgba(255, 255, 255, .04);

        border-radius: 10px;

        margin-top: 10px;

        flex-direction: column;

    }

    .mobile-tour-menu li {

        padding: 0 12px;

    }

}