/* ========================================
   CSS Variables - Color Scheme & Fonts
   ======================================== */
:root {
    /* Main Colors */
    --primary-color: #0b1f3a;
    --secondary-color: #e85d04;
    --light-color: #f8f9fa;
    --white-color: #ffffff;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #0b1f3a 0%, #1d3557 100%);

    --gradient-secondary: linear-gradient(135deg,
            #ff6a00 0%,
            #ffb703 50%,
            #d00000 100%);
    --gradient-overlay: linear-gradient(135deg,
            rgba(11, 31, 58, 0.9) 0%,
            rgba(232, 93, 4, 0.85) 100%);

    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Poppins", sans-serif;
    /* Spacing */
    --section-padding: 40px 0;
    --transition: all 0.3s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--gradient-secondary);
    padding: 2px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.635),
            transparent);

    transform: skewX(-20deg);
    animation: shineMove 2.5s infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.top-contact {
    margin-top: 3px;
    text-align: start;
}

.top-contact a {
    color: var(--light-color);
    margin-right: 25px;
    display: inline-block;
}

.top-contact a i {
    margin-right: 5px;
    color: var(--primary-color);
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(15 15 15);
    border-radius: 50%;
    color: var(--white-color);
    margin-left: 8px;
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: #fffffff0;
    padding: 3px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 5px 0;
}

.navbar-brand {
    max-width: 211px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    /* padding: 3px 10px !important; */
    font-size: 14px;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ef8902;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .dropdown-menu {
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(12, 48, 120, 0.14);
    top: 50;
}

.navbar .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

.link-card-btn {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #d45005;
    padding: 1px 0px;
    border-radius: 30px;
    max-width: 120px;
    margin: 0 auto;

}

/* ========================================
   Buttons
   ======================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(231, 130, 6, 0.4);
    background: #fff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-primary a {
    text-decoration: none !important;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    font-family: cursive;
    position: relative;
    text-align: center;
    margin-bottom: 0px;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    width: 50px;
    height: 2px;
    background: #ff7a00;
    transform: translateY(-50%);
}

.section-subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    width: 50px;
    height: 2px;
    background: #ff7a00;
    transform: translateY(-50%);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0px;
}

.section-title span {
    color: var(--secondary-color);
    font-family: cursive;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;

}

/* ========================================
  Hero Section
   ======================================== */
/* HERO MAIN */
.home-hero {
    position: relative;
     /* height: calc(100vh - 250px); */
    height: 80vh;
    background: url("../images/hero-bg .png") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            transparent 100%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.home-hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 39px;
}

.home-hero-title span {
    color: #fff;
}

.home-hero-subtitle {
    font-size: 17px;
    margin: 10px 0 25px;
    opacity: 0.9;
    max-width: 413px;
    line-height: 1.3;
}

.home-hero-search {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto 15px;
}

.home-hero-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
}

.home-hero-search-field i {
    margin-right: 8px;
    color: #05244c;
}

.home-hero-search-field input {
    border: none;
    outline: none;
    width: 100%;
}

/* BUTTON */
.home-hero-search-btn {
    background: #05244c;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.home-hero-search-btn:hover {
    background: #02152d;
}

/* New Form Section */
.hero-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-form-box {
    background: #ffffff66;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    border: 1px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-form-title {
    text-align: center;
    font-weight: 800;
    color: #2d0f00;
}

.hero-form-input {
    border-radius: 8px !important;
    padding: 10px;
}

.hero-form-input:focus {
    border-color: #ff6600;
    box-shadow: none;
}

.hero-form-btn {
    background: #e85d06;
    border: none;
    border-radius: 8px;
    padding: 5px 40px;
    font-weight: 600;
    transition: 0.3s;
    color: #fff;
    display: flex;
    margin: 0 auto;
}

.hero-form-btn:hover {
    background: #e65c00;
}

/* ========================================
  Booking Modal
   ======================================== */
.booking-modal-premium .modal-dialog {
    max-width: 620px;
}

.booking-modal-compact {
    padding: 14px;
}

.booking-modal-premium .modal-content {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(8, 24, 46, 0.22);
}

.booking-modal-premium .modal-header {
    padding: 22px 22px 10px;
    border-bottom: none;
    align-items: center;
    background: #ffffff;
}

.booking-title-wrap {
    max-width: 440px;
}

.booking-modal-premium .modal-title {
    margin-bottom: 4px;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--primary-color);
}

.booking-subtitle {
    margin-bottom: 0;
    color: #667085;
    font-size: 14px;
}

.booking-modal-premium .btn-close {
    margin: 0 0 0 auto;
    border-radius: 50%;
    opacity: 1;
    box-shadow: none;
}

.booking-modal-premium .modal-body {
    padding: 0 22px 22px;
    background: #ffffff;
}

.booking-form-inquiry {
    padding: 6px 0 0;
}

.booking-form-inquiry .form-control,
.booking-form-inquiry .form-select {
    min-height: 48px;
    border: 1px solid #d8e0ea;
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 14px;
    color: #56606f;
    background: #fbfcfe;
    box-shadow: none;
}

.booking-form-inquiry textarea.form-control {
    min-height: 82px;
    resize: vertical;
}

.booking-form-inquiry .form-control::placeholder,
.booking-form-inquiry .form-select {
    color: #6b7280;
}

.booking-form-inquiry .form-control:focus,
.booking-form-inquiry .form-select:focus {
    border-color: #ffb703;
    box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.14);
}

.booking-form-inquiry .btn {
    min-height: 50px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    background: var(--gradient-secondary);
    box-shadow: 0 12px 24px rgba(232, 93, 4, 0.22);
}

/* ========================================
  Tour Card Section  
   ======================================== */
.tour-card-hm {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.tour-card-hm-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tour-card-hm-img {
    position: relative;
    height: 270px;
}

.tour-card-hm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    filter: brightness(1.15) saturate(1.25) contrast(1.08);
}

.tour-card-hm-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.tour-card-hm-tag {
    position: absolute;
    top: 12px;
    left: 0px;
    background: #ffcc00;
    padding: 3px 10px;
    border-radius: 0px 20px 20px 0px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-hm-days {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgb(45 15 0 / 62%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 2;
}

.tour-card-hm-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: #fff;
    z-index: 2;
}

.tour-card-hm-overlay h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-hm-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-card-hm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 10px 10px;
    background: #feac1a21;
    border-radius: 0px 0px 20px 20px;
    border: 1px solid #dcd6d6bf;
}

.tour-card-hm-bottom h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.tour-card-hm-off {
    font-size: 11px;
    color: #ff7a00;
    background: #fff;
    border: 1px solid #ff7a00;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.tour-card-hm-btn {
    width: 38px;
    height: 38px;
    background: #00204a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.tour-card-hm-btn:hover {
    background: #ff7a00;
}

/* ========================================
    Doemstic and Internation Card Section
   ======================================== */
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.destination-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;

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

    z-index: 1;
}

.destination-card.large {
    height: 100%;
    max-height: 390px;
}

.destination-card:not(.large) {
    height: 190px;
}

.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: 0.4s ease;
}

.destination-card:hover .overlay {
    background: linear-gradient(to top,
            rgba(255, 115, 0, 0.78),
            rgba(255, 140, 0, 0));
}

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

.destination-card .content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    color: #fff;
}

.destination-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}

.destination-card span {
    font-size: 14px;
    letter-spacing: 2px;
}

/* ========================================
    Testimonial Section
   ======================================== */
.hm_enh_testi_section {
    background: #f8fafc;
}

.hm_enh_testi_card {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.hm_enh_testi_light {
    background: #fff;
    color: #333;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hm_enh_testi_dark {
    background: #001f3f;
    color: #fff;
}

.hm_enh_testi_quote {
    font-size: 40px;
    color: #3b82f6;
}

.hm_enh_testi_stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 1 5px;
}

.hm_enh_testi_text {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
    color: #475569;
}

.hm_enh_testi_read {
    margin-top: 0px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: end;
}

.hm_enh_testi_user img {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

.hm_enh_testi_user h6 {
    margin: 0;
    font-weight: 600;
}

.hm_enh_testi_user span {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

.hm_enh_testi_user span i {
    color: #fff;
}

.hm_testi_check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    background: #0c70f3;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
}

/* ========================================
   Video Story  Section
   ======================================== */
.jf-video iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

.jf-card {
    width: 100%;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.3s;
}

.jf-card img {
    width: 100%;
}

.jf-card.active {
    border: 3px solid #ff7a00;
}

/* CONTENT */
.jf-content {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* TAG */
.jf-tag {
    color: #ff7a00;
    font-weight: 600;
}

/* TITLE */
.jf-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.jf-content h3 span {
    color: #ff7a00;
}

/* QUOTE */
.jf-desc {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

/* AUTHOR CARD */
.jf-author {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
    position: relative;
}

/* IMAGE */
.jf-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* TEXT */
.jf-author-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.jf-author-info span {
    font-size: 13px;
    color: #777;
}

.jf-location {
    font-size: 12px;
    color: #999;
}

/* VERIFIED BADGE */
.jf-badge {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #ff7a00;
    font-size: 18px;
}

/* BUTTON */
.jf-btn {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff7a00, #ff9f2f);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.jf-btn:hover {
    transform: translateY(-2px);
}

/* ========================================
   Rajasthan Tour Card 
   ======================================== */
.rajasthan-tour-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.rajasthan-tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.rajasthan-tour-card-badge {
    position: absolute;
    top: 10px;
    padding: 0px 10px;
    border-radius: 0px 30px 30px 0px;
    background: linear-gradient(135deg, #ff9a00, #ff0058);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rajasthan-tour-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    color: #fff;

    /* background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  ); */
    background: linear-gradient(to top,
            rgb(0 0 0) 0%,
            rgb(0 0 0) 40%,
            rgb(0 0 0 / 39%) 70%,
            #0000002b 100%);
}

.rajasthan-tour-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}

.rajasthan-tour-card-subinfo {
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.3;
}

.rajasthan-tour-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.rajasthan-tour-card-right {
    height: 100%;
    border-radius: 15px;
    max-height: 488px;
}

.rajasthan-tour-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ========================================
   Home Blog Section 
   ======================================== */
.hm-blogs-section {
    background: #f5f7fa;
}

.hm-blogs-section a {
    text-decoration: none;
    color: #00214a;
}

.hm-blogs-section a:hover {
    text-decoration: none;
    color: green;
}

.hm-blogs-featured {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.hm-blogs-featured-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.hm-blogs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    width: 100%;
    color: #fff;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2),
            transparent);
}

.hm-blogs-date {
    margin-bottom: 5px;
}

.hm-blogs-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* RIGHT */
.hm-blogs-card {
    background: #fff;
    border-radius: 14px 0px 0px 14px;
    padding: 0px 10px;
    border: 1px solid #e4f5ee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: 0.3s;
    position: relative;
    border: 1px solid #e4f5ee;
}

.hm-blogs-card::after {
    content: "";
    position: absolute;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #16a085, #2ecc71);
    border-radius: 4px;
}

.hm-blogs-card :hover {}

.hm-blogs-card-img {
    min-width: 110px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.hm-blogs-tag {
    font-size: 11px;
    font-weight: 600;
    color: #16a085;
}

.hm-blogs-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hm-blogs-date-small {
    font-size: 13px;
    color: #777;
}

/* NUMBER BADGE */
.hm-blogs-number {
    position: absolute;
    right: 15px;
    top: 5px;
    background: #16a085;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    padding: 2px 5px;
}

/* ========================================
   Home About Section 
   ======================================== */
.home-about-section {
    background: #f7f9fc;
}

/* IMAGES */
.home-about-images {
    position: relative;
}

.home-about-img-main {
    width: 100%;
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
}

.home-about-img-small {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    border: 6px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* CONTENT */
.home-about-content {
    max-width: 500px;
}

.home-about-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.home-about-title {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0;
}

.home-about-text {
    color: #666;
    line-height: 1.6;
}

/* STATS */
.home-about-stats {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.home-about-stat h3 {
    color: var(--secondary-color);
    font-size: 25px;
    margin-bottom: 5px;
}

.home-about-stat p {
    font-size: 14px;
    color: #777;
}

/* BUTTON */
.home-about-btn {
    background: var(--gradient-overlay);
    color: #fff;
    border: none;
    padding: 6px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.home-about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Premium Card Styling 
   ======================================== */
/* Premium Card Styling */
.premimum_hm_card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    font-family: sans-serif;
}

/* IMAGE */
.premimum_hm_card_img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* BADGE */
.premimum_hm_card_badge {
    position: absolute;
    top: 12px;
    left: 0px;
    background: #ffcc00;
    color: #000;
    padding: 1px 12px;
    border-radius: 0px 20px 20px 0px;
    font-size: 13px;
}

/* OVERLAY */
.premimum_hm_card_overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.6),
            transparent);
}

.premimum_hm_card_subtitle {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premimum_hm_card_route {
    display: inline-block;
    border-radius: 20px;
    font-size: 14px;
}

.premimum_hm_card_info {
    display: flex;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 4px;
}

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

.premimum_hm_card_bottom h3 {
    margin: 0;
    font-size: 13px;
    max-width: 120px;
    font-weight: 600;
}

.premimum_hm_card_rating {
    color: #000;
    font-weight: 600;
    font-size: 12px;
    background: #fff;
    border-radius: 5px;
    padding: 1px 6px;
    min-width: 70px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--light-color);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px 15px;
    background: var(--white-color);
    border-radius: 15px;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white-color);
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--white-color);
    padding: 40px 15px;
    border-radius: 20px;
    border: 1px dashed var(--secondary-color);
    box-shadow: 0 5px 20px rgba(234, 163, 21, 0.199);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* ========================================
   Best Rajasthan Tour Packages Card
   ======================================== */
.home-all-tour-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
    border: 1px solid #d35108;
}

.home-all-tour-main-content {
    display: flex;
    gap: 20px;
}

.home-all-tour-img-box {
    position: relative;
    width: 35%;
    border-radius: 15px;
    overflow: hidden;
    height: 296px;
}

.home-all-tour-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-all-tour-duration {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e67e22;
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.home-all-tour-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.home-all-tour-details {
    width: 65%;
}

.home-all-tour-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.home-all-tour-tag-rating {
    background: #fff5e6;
    color: #e67e22;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    border: 1px solid #ffcc80;
}

.home-all-tour-tag-popular {
    background: #e6ffef;
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    border: 1px solid #a2f2c1;
}

.home-all-tour-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
}

.home-all-tour-location {
    font-size: 13px;
    color: #e67e22;
    margin-bottom: 5px;
    font-weight: 600;
}

.home-all-tour-amenities {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    padding: 10px 0;
    margin-bottom: 5px;
}

.home-all-tour-icon-item {
    text-align: center;
}

.home-all-tour-icon-item img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.home-all-tour-icon-item p {
    font-size: 10px;
    margin-top: 5px;
    color: #7f8c8d;
}

.home-all-tour-cta-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.home-all-tour-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 48%;
    text-align: center;
}

.home-all-tour-btn-talk {
    background: #fff;
    border: 1px solid #e67e22;
    color: #333;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.home-all-tour-btn-whatsapp {
    background: #2ecc71;
    border: none;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.home-all-tour-pricing {
    text-align: left;
    border-left: 1px dashed #ccc;
    padding-left: 15px;
}

.home-all-tour-pax {
    font-size: 12px;
    color: #2980b9;
    font-weight: 700;
    margin-bottom: 5px;
}

.home-all-tour-price {
    font-size: 16px;
    color: #e67e22;
    font-weight: 800;
    margin: 0;
}

.home-all-tour-footer-btns {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    text-align: center;
}

.home-all-tour-footer-inquire {
    flex: 1;
    background: #fff;
    border: 1px solid #e67e22;
    color: #000;
    padding: 4px;
    border-radius: 4px;
    font-weight: 600;
}

.home-all-tour-footer-details {
    flex: 1;
    background: linear-gradient(90deg, #e67e22, #8e44ad);
    border: none;
    color: #fff;
    padding: 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* ========================================
   Navigating FAQ Section Start
   ======================================== */

.navigating-faq-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.faq-accordion {
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.faq-item.active {
    border-color: var(--accent-green);
    box-shadow: 0 5px 25px rgba(238, 124, 10, 0.15);
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-question {
    background: #efdec3c4;
}

.faq-question:hover {
    background: #f5e7cf6e;
}

.faq-question h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px;
}

.faq-answer p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.faq-hero-img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ========================================
   Fleet Section
   ======================================== */
.fleet-section {
    background: var(--light-color);
}

.fleet-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #dadada;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fleet-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.fleet-badge.luxury {
    background: var(--gradient-primary);
}

.fleet-content {
    padding: 5px 15px 15px 15px;
}

.fleet-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fleet-description {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.fleet-features {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.fleet-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6c757d;
}

.fleet-features span i {
    color: var(--primary-color);
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    border-top: 1px solid #e9ecef;
}

.fleet-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fleet-price .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

.fleet-price .per-km {
    font-size: 14px;
    color: #6c757d;
}

.estimated-price-tag {
    color: var(--primary-color);
    font-size: 14px;
}

.fleet-hm-btns {
    display: flex;
    gap: 5px;
}

.fleet-hm-btns a {
    flex: 1;
    padding: 4px;
    font-size: 13px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-hm-btns--view {
    background: #0d6efd;
    color: #fff;
}

.fleet-hm-btns--enquiry {
    background: #ff6b35;
    color: #fff;
}

.fleet-hm-btns--whtasaap {
    background: #25d366;
    color: #fff;
    max-width: 40px;
}

.fleet-hm-btns a:hover {
    opacity: 0.9;
}

/* ========================================
    Navigating FAQ Section End 
   ======================================== */

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #03204b;
    color: var(--light-color);
    padding: 40px 0 0;
}

.footer-logo-warpper img {
    width: 211px;
    padding: 5px;
}

.footer-widget h2,
.footer-widget h4 {
    color: var(--white-color);
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white-color);
    transition: var(--transition);
}

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

.footer-widget h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(to right, #ff6b35, #ff9a6b);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(236, 76, 17, 0.727);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ========================================
  Tour Cattegory Page
   ======================================== */
/* hero section */
.tour-category-hero-banner {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.tour-category-hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.tour-category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 15, 35, 0.92) 0%,
            rgba(5, 15, 35, 0.7) 35%,
            rgba(5, 15, 35, 0.2) 100%);
}

.tour-category-hero-content {
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 15px;
    z-index: 2;

    padding: 15px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

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

.tour-category-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0px;
    text-transform: UPPERCASE;
    text-decoration: underline;
    font-style: italic;
}

.tour-category-hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    max-width: 700px;
    margin-bottom: 24px;
}

.tour-category-section {
    background: #f3f6fb;
}

.yatra-card {
    height: 265px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.yatra-image {
    width: 32%;
    position: relative;
    overflow: hidden;
}

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

/* Badge */
.trip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff7a00;
    color: #fff;
    padding: 2px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Center Content */
.yatra-content {
    width: 43%;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background: linear-gradient(135deg,
            rgba(11, 33, 77, 0.97) 0%,
            rgba(16, 52, 120, 0.96) 50%,
            rgba(8, 27, 66, 0.98) 100%);
}

/* Top Glow */
.yatra-content::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 153, 0, 0.15);
    filter: blur(20px);
}

/* Bottom Design */
.yatra-content::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

.yatra-content .yatra-card-title {
    position: relative;
    z-index: 2;
}

.yatra-content .yatra-card-title::after {
    content: "";
    width: 70px;
    height: 4px;
    border-radius: 20px;
    margin-top: 8px;
    display: block;
    background: linear-gradient(to right, #ff8c00, #ffd089);
}

.yatra-content>* {
    position: relative;
    z-index: 2;
}

.yatra-card-feature-box {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.yatra-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.yatra-title span {
    color: #ff9d00;
}

/* Info */
.tour-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item i {
    width: 25px;
    height: 25px;
    background: #fff;
    color: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-item h6 {
    margin: 0;
    font-size: 15px;
    color: #ffb347;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.staring-and-ending {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Features */
.feature-box {
    margin-top: 15px;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background: rgb(255 255 255 / 63%);
    backdrop-filter: blur(14px);
    border: 1px solid rgb(255 255 255);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 25%;
}

.feature-item i {
    font-size: 18px;
    color: #0c2d68;
}

.feature-item span {
    color: #222;
    font-size: 13px;
    font-weight: 700;
}

/* Right Box */
.yatra-price-box {
    width: 25%;
    background: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yatra-price-box h6 {
    color: #555;
    font-size: 15px;
}

.yatra-price-box h3 {
    font-size: 16px;
    font-weight: 800;
    color: #ff6b00;
    margin: 5px 0;
}

.yatra-price-box p {
    color: #666;
}

.yatra-button-dt {
    gap: 8px;
    margin-top: 12px;
}

.yatra-button-dt a {
    text-align: center;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.yatra-button-dt .enquiry-btn {
    background: var(--secondary-color);
    color: #fff;
}

.yatra-button-dt .details-btn {
    background: var(--primary-color);
    color: #fff;
}

.yatra-button-dt a:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* right side common sidebar */
.common-side-sticky {
    position: sticky;
    top: 68px;
}

.common-side-card {
    background: linear-gradient(145deg, #0d2f6f, #17479d);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 15px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.common-side-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -80px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.common-side-top {
    position: relative;
    z-index: 2;
}

.common-side-tag {
    background: #ff7b00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 14px;
}

.common-side-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.common-side-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.common-side-button-wrap {
    display: flex;
    /* flex-direction: column; */
    gap: 5px;
    margin-bottom: 20px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.common-side-btn {
    border-radius: 5px;
    padding: 7px 16px;
    font-size: 12px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s ease;
    flex: 1;
}

.common-side-btn:hover {
    transform: translateY(-2px);
}

.common-side-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.common-side-btn-call {
    background: #ff7b00;
    color: #fff;
}

.common-side-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.common-side-feature {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.common-side-feature i {
    color: #ffd26f;
}

.common-side-social-card {
    margin-top: 20px;
    padding: 24px 15px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #eef4ff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.common-side-social-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgb(255 123 0 / 27%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.common-side-social-top {
    position: relative;
    z-index: 2;
}

.common-side-social-tag {
    display: inline-block;
    background: #0d2f6f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.common-side-social-title {
    font-size: 18px;
    font-weight: 800;
    color: #0d2f6f;
    line-height: 1.2;
}

.common-side-social-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 22px;
}

.common-side-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.common-side-social-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.common-side-social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
}

.common-side-social-facebook {
    background: #1877f2;
}

.common-side-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.common-side-social-youtube {
    background: #ff0000;
}

.common-side-social-whatsapp {
    background: #25d366;
}

/* Details Page csss */
.tour-category-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tour-category-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-category-item i {
    font-size: 15px;
    color: #e75d05;
    line-height: 1;
}

.tour-category-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-style: italic;
}

@media (max-width: 767px) {
    .tour-category-info {
        gap: 15px;
    }

    .tour-category-item i {
        font-size: 18px;
    }

    .tour-category-item span {
        font-size: 16px;
    }
}

/* Privacy and Policy  Page*/
.privacy-policy-section {
    background: #f8f9fa;
}

.privacy-policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-policy-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.privacy-policy-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

.privacy-policy-content p,
.privacy-policy-content li {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.privacy-policy-content ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 25px;
    }

    .privacy-policy-content h1 {
        font-size: 30px;
    }

    .privacy-policy-content h3 {
        font-size: 20px;
    }
}

/* Contact Us  */
/* HERO SECTION */
.contact-us-pg-hero-section {
    position: relative;
    height: 400px;
    background-image: url("https://images.pexels.com/photos/1268855/pexels-photo-1268855.jpeg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-pg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 31, 58, 0.82) 0%,
            rgba(232, 93, 4, 0.55) 100%);
}

.contact-us-pg-hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contact-us-pg-hero-subtitle {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-us-pg-hero-inner h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-us-pg-hero-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

/* CONTACT STRIP */

.contact-us-pg-contact-strip {
    position: relative;
    margin-top: -120px;
    z-index: 5;
    padding-bottom: 30px;
}

.contact-us-pg-contact-strip-card {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-us-pg-contact-strip-card:hover {
    transform: translateY(-8px);
}

.contact-us-pg-contact-strip-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #fff;
    font-size: 40px;
    box-shadow: 0 15px 40px rgba(255, 64, 129, 0.25);
}

.contact-us-pg-contact-strip-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: #123d91;
}

.contact-us-pg-contact-strip-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-us-pg-contact-strip-card a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
    color: var(--secondary-color);
    font-weight: 500;
}

/* MAIN SECTION */

.contact-us-pg-main-section {
    background: #f7f9fc;
}

.contact-us-pg-section-title span {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-us-pg-section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 10px;
    color: var(--primary-color);
}

.contact-us-pg-info-wrapper,
.contact-us-pg-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.contact-us-pg-info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 30px;
}

.contact-us-pg-info-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.contact-us-pg-info-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-us-pg-info-card p,
.contact-us-pg-info-card a {
    margin: 0;
    color: #666;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}

/* FORM */

.contact-us-pg-input-group label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
}

.contact-us-pg-input-wrapper {
    position: relative;
}

.contact-us-pg-input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 18px;
}

.contact-us-pg-input-wrapper input,
.contact-us-pg-input-wrapper textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 18px 10px 52px;
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.contact-us-pg-input-wrapper input:focus,
.contact-us-pg-input-wrapper textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}

.contact-us-pg-textarea-wrapper i {
    top: 24px;
    transform: unset;
}

.contact-us-pg-submit-btn {
    border: none;
    background: var(--gradient-overlay);
    color: #fff;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.contact-us-pg-submit-btn:hover {
    transform: translateY(-4px);
}

/* MAP */

.contact-us-pg-map-wrapper {
    height: 500px;
    overflow: hidden;
}

.contact-us-pg-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2);
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .contact-us-pg-hero-section {
        height: 550px;
    }

    .contact-us-pg-hero-inner h1 {
        font-size: 40px;
    }

    .contact-us-pg-hero-inner p {
        font-size: 20px;
    }

    .contact-us-pg-main-section {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .contact-us-pg-hero-section {
        height: 450px;
        padding: 0 15px;
    }

    .contact-us-pg-hero-inner h1 {
        font-size: 25px;
    }

    .contact-us-pg-hero-inner p {
        font-size: 17px;
    }

    .contact-us-pg-contact-strip {
        margin-top: -70px;
        padding-bottom: 70px;
    }

    .contact-us-pg-contact-strip-card {
        padding: 15px;
        border-radius: 24px;
    }

    .contact-us-pg-contact-strip-icon {
        width: 85px;
        height: 85px;
        font-size: 30px;
    }

    .contact-us-pg-contact-strip-card p,
    .contact-us-pg-contact-strip-card a {
        font-size: 16px;
    }

    .contact-us-pg-info-wrapper,
    .contact-us-pg-form-wrapper {
        padding: 15px;
        border-radius: 24px;
    }

    .contact-us-pg-section-title h2 {
        font-size: 28px;
    }

    .contact-us-pg-map-wrapper {
        height: 350px;
    }
}

/* Blogs Category card */
.cat-blogs-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #0b1f3a;
}

.cat-blogs-image {
    position: relative;
    overflow: hidden;
}

.cat-blogs-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.cat-blogs-card:hover .cat-blogs-image img {
    transform: scale(1.08);
}

.cat-blogs-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b00;
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.cat-blogs-content {
    padding: 10px;
}

.cat-blogs-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #777;
    font-size: 14px;
}

.cat-blogs-meta i {
    color: #ff6b00;
    margin-right: 5px;
}

.cat-blogs-title {
    margin-bottom: 5px;
    line-height: 1.2;
}

.cat-blogs-title a {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-blogs-title a:hover {
    color: #ff6b00;
}

.cat-blogs-desc {
    color: #666;
    line-height: 1.3;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-blogs-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff6b00;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    justify-content: end;
}

.cat-blogs-btn:hover {
    gap: 12px;
}

.cat-blogs-btn i {
    transition: 0.3s;
}

/* hero */
.details-page-hero {
    padding: 200px 0 10px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.details-page-hero .hero-title {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.details-page-hero .hero-title span {
    background: linear-gradient(135deg, #ffcc33, #ffa000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dtpage-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.dtpage-location,
.dtpage-duration {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dtpage-title i {
    font-size: 14px;
}

.dtpage-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
}

.details-page-hero .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 750px;
}

/* Content Area Core Styling */

/* right side blogs category */
.blog-categories-grid {
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Blog Category Item */
.blog-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-category-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ff6b35;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.blog-category-item:hover::before {
    transform: scaleY(1);
}

.blog-category-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(224, 106, 33, 0.15);
    transform: translateX(5px);
}

/* Category Post Image */
.category-post-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-category-item:hover .category-post-image img {
    transform: scale(1.1);
}

.category-post-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(209, 105, 1, 0.3) 0%,
            rgba(0, 101, 224, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-category-item:hover .category-post-image::after {
    opacity: 1;
}

/* Category Post Info */
.category-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-post-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: color 0.3s ease;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-category-item:hover .category-post-info h4 {
    color: #ff6b35;
}

/* Post Date */
.post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6c757d;
}

.post-date i {
    color: #ff6b35;
    font-size: 0.75rem;
}

.post-date span {
    font-weight: 500;
}

/* Single Blog Crads */
.cat-blogs-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.cat-blogs-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cat-blogs-image {
    position: relative;
    overflow: hidden;
}

.cat-blogs-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.cat-blogs-card:hover .cat-blogs-image img {
    transform: scale(1.08);
}

.cat-blogs-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b00;
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.cat-blogs-content {
    padding: 10px;
}

.cat-blogs-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #777;
    font-size: 14px;
}

.cat-blogs-meta i {
    color: #ff6b00;
    margin-right: 5px;
}

.cat-blogs-title {
    margin-bottom: 5px;
    line-height: 1.2;
}

.cat-blogs-title a {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-blogs-title a:hover {
    color: #ff6b00;
}

.cat-blogs-desc {
    color: #666;
    line-height: 1.3;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-blogs-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff6b00;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    justify-content: end;
}

.cat-blogs-btn:hover {
    gap: 12px;
}

.cat-blogs-btn i {
    transition: 0.3s;
}

/* Blogs Deatils Page */
.details-page-content-wrapper {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    padding: 15px 24px;
    border-radius: 30px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.details-page-content {
    color: #24325c;
    font-size: 16px;
    line-height: 1.82;
    letter-spacing: 0.01em;
}

.details-page-content p {
    margin: 0 0 5px;
    line-height: 1.3;
    font-size: 15px;
    color: #344054;
}

.details-page-content h1,
.details-page-content h2,
.details-page-content h3,
.details-page-content h4,
.details-page-content h5,
.details-page-content h6 {
    margin: 0px 0 10px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 700;
}

.details-page-content h2 {
    position: relative;
    padding-bottom: 8px;
}

.details-page-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 58px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb7185);
    border-radius: 50px;
}

.details-page-content h1 {
    font-size: 2.2rem;
}

.details-page-content h2 {
    font-size: 1.8rem;
}

.details-page-content h3 {
    font-size: 1.45rem;
}

.details-page-content h4 {
    font-size: 1.3rem;
}

.details-page-content h5 {
    font-size: 1.15rem;
}

.details-page-content h6 {
    font-size: 1rem;
}

.details-page-content ul,
.details-page-content ol {
    margin: 0 0 18px 1.4rem;
    padding: 0;
}

.details-page-content ul li,
.details-page-content ol li {
    margin-bottom: 0rem;
    color: #475569;
    font-size: 15px;
}

.details-page-content ul {
    list-style: none;
}

.details-page-content ul li::before {
    content: "•";
    color: #fb7185;
    display: inline-block;
    width: 1.2rem;
    margin-left: -1.2rem;
}

.details-page-content ol {
    counter-reset: section;
}

.details-page-content ol li {
    counter-increment: section;
    position: relative;
    padding-left: 1.4rem;
}

.details-page-content ol li::before {
    content: counter(section) ".";
    position: absolute;
    left: 0;
    color: #fb7185;
    font-weight: 700;
}

.details-page-content blockquote {
    margin: 30px 0;
    padding: 24px 26px;
    border-left: 5px solid #fb7185;
    background: #fff5f3;
    color: #334155;
    border-radius: 20px;
    font-style: italic;
}

.details-page-content strong,
.details-page-content b {
    font-weight: 700;
    color: #0f172a;
}

.details-page-content em,
.details-page-content i {
    font-style: italic;
}

.details-page-content a {
    color: #f97316;
    text-decoration: none;
    border-bottom: 1px dashed rgba(249, 115, 22, 0.7);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.details-page-content a:hover {
    color: #c2410c;
    border-color: rgba(194, 65, 12, 0.8);
}

.details-page-content img,
.details-page-content figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px auto;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    object-fit: cover;
}

.details-page-content figure {
    margin: 28px 0;
}

.details-page-content figcaption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
}

.details-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    font-size: 0.95rem;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.details-page-content th,
.details-page-content td {
    border: 1px solid #e2e8f0;
    padding: 14px 16px;
    text-align: left;
}

.details-page-content th {
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
}

.details-page-content tr:nth-child(even) {
    background: #f8fafc;
}

.details-page-content iframe,
.details-page-content video {
    width: 100%;
    max-width: 100%;
    margin: 26px 0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}


/* Details Page Css */
.dt-pg-wrap {
    display: grid;
    gap: 20px;
    --dt-pg-scroll-offset: 150px;
}

.dt-pg-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.dt-pg-tab-card {
    position: sticky;
    top: 65px;
    z-index: 40;
    overflow: visible;
}

.dt-pg-tab-section {
    scroll-margin-top: calc(var(--dt-pg-scroll-offset) + 12px);
}

.dt-pg-quick-info {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
}

.dt-pg-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 82px;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #fffaf5);
    text-align: center;
}

.dt-pg-quick-item i {
    color: #f97316;
    font-size: 18px;
}

.dt-pg-quick-item span {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

.dt-pg-hero {
    position: relative;
    min-height: 460px;
    padding: 26px;
    display: flex;
    align-items: flex-end;
}

.dt-pg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(249, 115, 22, 0.92);
    margin-bottom: 14px;
}


.dt-pg-hero-content {
    max-width: 560px;
    color: #fff;
}

.dt-pg-hero-title {
    margin: 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.02;
}

.dt-pg-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.dt-pg-hero-meta span {
    padding: 2px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 500;
}

.dt-pg-body {
    padding: 15px;
}

.dt-pg-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 13px;
}

.dt-pg-section-title {
    margin: 0;
    font-size: 18px;
    color: #111827;
}

.dt-pg-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f97316;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0px;
}


.dt-pg-overview-text,
.dt-pg-policy-text {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.4;
}

.dt-pg-tab-nav {
    display: flex;
    gap: 10px;
    padding: 14px;
    overflow-x: visible;
    overflow-y: visible;
    background: #fff;
    border-radius: 22px;
}

.tour-overview-content h2 {
    font-size: 25px;
}

.tour-overview-content h3 {
    font-size: 20px;
}

.dt-pg-tab-btn {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.25s ease;
}

.dt-pg-tab-btn.active,
.dt-pg-tab-btn:hover {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
}

.dt-pg-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dt-pg-itinerary-list,
.dt-pg-faq-list {
    display: grid;
    gap: 12px;
}

.dt-pg-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.dt-pg-accordion-btn {
    width: 100%;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 18px;
    text-align: left;
}

.dt-pg-accordion-day {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dt-pg-accordion-title {
    display: block;
    margin-top: 4px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.dt-pg-accordion-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    background: #fff7ed;
    font-size: 20px;
    line-height: 1;
}

.dt-pg-accordion-panel {
    display: none;
    padding: 0 18px 18px;
    color: #4b5563;
}

.dt-pg-accordion.active .dt-pg-accordion-panel {
    display: block;
}

.dt-pg-accordion.active .dt-pg-accordion-icon::before {
    content: "-";
}

.dt-pg-accordion-icon::before {
    content: "+";
}

.dt-pg-accordion-panel p {
    margin: 0 0 10px;
    line-height: 1.4;
    font-size: 15px;
}

.dt-pg-accordion-panel ul,
.dt-pg-policy-list,
.dt-pg-highlight-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dt-pg-accordion-panel li,
.dt-pg-policy-list li,
.dt-pg-highlight-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.dt-pg-accordion-panel li::before,
.dt-pg-policy-list li::before,
.dt-pg-highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.dt-pg-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.dt-pg-table th,
.dt-pg-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    font-size: 14px;
}

.dt-pg-table th {
    width: 180px;
    background: #fffaf5;
    color: #111827;
}

.dt-pg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dt-pg-gallery-item {
    position: relative;
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    height: 140px;
    cursor: pointer;
    background: #f3f4f6;
}

.dt-pg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.dt-pg-gallery-item:hover img {
    transform: scale(1.06);
}

.dt-pg-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.48);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    backdrop-filter: blur(2px);
}

.dt-pg-gallery-overlay-mobile {
    display: none;
}

.dt-pg-gallery-overlay-desktop {
    display: flex;
}

.dt-pg-highlight-card {
    height: 100%;
    padding: 15px;
}

.dt-pg-faq-q {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.dt-pg-faq-a {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
}

.dt-pg-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.88);
}

.dt-pg-modal.dt-pg-open {
    display: flex;
}

.dt-pg-modal-dialog {
    width: min(1100px, 100%);
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.dt-pg-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid #e5e7eb;
}

.dt-pg-modal-top h4 {
    margin: 0;
    font-size: 20px;
    color: #111827;
}

.dt-pg-modal-close {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff7ed;
    color: #f97316;
    font-size: 24px;
    line-height: 1;
    border: 1px solid #f97316;
}

.dt-pg-modal-viewer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
}

.dt-pg-modal-image-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f6;
}

.dt-pg-modal-image-wrap img {
    width: 100%;
    height: min(72vh, 680px);
    object-fit: cover;
    display: block;
}

.dt-pg-modal-counter {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.72);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.dt-pg-modal-nav {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 999px;
    background: #fff7ed;
    color: #f97316;
    border: 1px solid #f97316;

    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.16);
}

.dt-pg-modal-nav:hover,
.dt-pg-modal-nav:focus-visible,
.dt-pg-modal-close:hover,
.dt-pg-modal-close:focus-visible {
    background: #ffedd5;
    outline: none;
}

@media (max-width: 991px) {

    .dt-pg-quick-info,
    .dt-pg-gallery-grid,
    .dt-pg-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dt-pg-hero {
        display: none;
    }

    .dt-pg-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {


    .dt-pg-gallery-grid,
    .dt-pg-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .dt-pg-gallery-item:nth-child(n + 5) {
        display: none;
    }

    .dt-pg-gallery-overlay-desktop {
        display: none;
    }

    .dt-pg-gallery-overlay-mobile {
        display: flex;
    }

    .dt-pg-modal-viewer {
        gap: 10px;
        padding: 14px;
    }

    .dt-pg-modal-nav {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 28px;
    }

    .dt-pg-modal-image-wrap img {
        height: 320px;
    }

    .dt-pg-modal-counter {
        left: 12px;
        bottom: 12px;
        font-size: 12px;
    }

    .dt-pg-quick-info {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 5px;
        padding: 7px 5px;
    }

    .dt-pg-quick-item {
        min-height: 70px;
        border-radius: 5px;

    }

    .dt-pg-quick-item span {
        font-size: 11px;
        line-height: 1.1;
    }

    .dt-pg-card {
        border-radius: 10px;
    }

    .dt-pg-hero {
        min-height: 360px;
        padding: 18px;
    }

    .dt-pg-hero-title {
        font-size: 32px;
    }

    .dt-pg-tab-card {
        overflow: hidden;
    }

    .dt-pg-tab-nav {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }


    .dt-pg-table th,
    .dt-pg-table td {
        display: block;
        width: 100%;
    }

    .dt-pg-table th {
        border-bottom: 0;
        padding-bottom: 6px;
    }

    .dt-pg-table td {
        padding-top: 6px;
    }

    .tour-overview-content h3 {
        font-size: 17px;
    }

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