/* ---------- GLOBAL VARIABLES ---------- */
:root {
    --primary-orange: #ee6b2b;
    --primary-dark: #bc3a1f;
    --light-bg: #f7f9fa;
    --text-dark: #222;
    --text-light: #fff;
    --footer-bg: #0c0c0c;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* ---------- RESET & UTILITIES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* ---------- DROPDOWN MENU STYLES ---------- */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    list-style: none;
}

nav ul li.dropdown .dropdown-menu li {
    display: block;
    width: 100%;
}

nav ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

nav ul li.dropdown .dropdown-menu li a:hover {
   /* background-color: var(--primary-orange);
    color: white;*/
    padding-left: 25px;
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Add a caret (optional, you already have <i class="fa fa-caret-down"></i>) */


/* ---------- BUTTONS ---------- */
.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.btn-primary:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(224, 79, 47, 0.3);
}
.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: white;
    color: var(--primary-orange);
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--primary-orange);
    color: #ccc;
    padding: 8px 0;
    font-size: 0.8rem;
}
.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.top-bar i {
    color: #fff;
    margin-right: 5px;
}
.top-bar .phone-link, 
.top-bar .whatsapp-link, 
.top-bar .email-link {
    color: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: bold;
}
.top-bar a:hover { color: #e0da2f; }
.top-bar .whatsapp-link { color: #25D366; }

/* ---------- HEADER ---------- */
header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    font-size: 32px;
    color: var(--primary-orange);
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-dark);
}
.logo-sub {
    font-size: 0.6rem;
    color: #777;
    display: block;
    letter-spacing: 1px;
    font-weight: 500;
}
nav ul {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}
nav ul li a {
    position: relative;
}
nav ul li a:hover { color: var(--primary-orange); }
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s;
}
nav ul li a:hover::after { width: 100%; }
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-buttons i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    cursor: pointer;
}

/* ---------- HERO SLIDER ---------- */
.hero {
    position: relative;
    height: 85vh;
    background-color: #222;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
.slide.active { opacity: 1; }
.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 40px;
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
}
.hero-text {
    max-width: 50%;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4.0rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: white;
}
.hero-text h1 .highlight { color: var(--primary-orange); }
.hero-text p {
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    font-size: 35px;
    font-weight: bold;
}
.nashik-year {
    color: white;
    display: inline-block;
    margin: 0 5px;			
    text-shadow: 5px -2px 0px #FF5722;
}
.ujjain-year {
    color: black;
    border-bottom: 2px solid var(--primary-orange);
    display: inline-block;
    margin: 0 5px;
}
.hero-buttons { display: flex; gap: 15px; }
.countdown-box {
    position: absolute;
    bottom: 65px;
    right: 40px;
    background-color: var(--primary-orange);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.countdown-box h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #fff;
}
.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.time-unit-colon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}
.time-unit span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.time-unit span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.8;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    z-index: 5;
    border-radius: 5px;
    transition: 0.3s;
}
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* ---------- FEATURES BAR ---------- */
.features-bar {
    background: white;
    padding: 10px 20px;
    margin: -30px 40px 0 40px;
    border-radius: 15px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.feature-item {
    border-right: 1px solid #ddd;
    padding: 0 10px;
}
.feature-item:last-child { border-right: none; }
.feature-item i {
    font-size: 1.6rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
}
.feature-item h4 {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.feature-item p {
    font-size: 0.7rem;
    color: #777;
}

/* ---------- WHY KUMBH ---------- */
.section-padding { padding: 40px 0; }
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.section-title p {
    color: #777;
    font-size: 1rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    text-align: center;
}
.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fef5f0;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(238, 107, 43, 0.1);
}
.why-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}
.why-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}
.why-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* ---------- UPCOMING DESTINATIONS ---------- */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.dest-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    background: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.5s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}
.year-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-orange);
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 20px;
}
.dest-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;	
    text-shadow: 4px 5px 1px #000000;
}
.dest-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.view-all-top {
    text-align: right;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* ---------- LUXURY STAYS CAROUSEL ---------- */
.stays-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.stay-card {
    min-width: 250px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
}
.stay-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.stay-info { padding: 15px; }
.stay-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.stay-loc {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}
.stay-price {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}
.stay-btn {
    width: 100%;
    padding: 8px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
}

/* ---------- EXPERIENCES GRID ---------- */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}
.exp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.exp-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}
.exp-item h4 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}
.exp-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: #fafafa;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.trust-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}
.trust-item h4 {
    font-weight: 700;
    font-size: 1.5rem;
}
.trust-item p {
    font-size: 0.8rem;
    color: #666;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-container { position: relative; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary-orange);
    transition: 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(238, 107, 43, 0.15);
}
.testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.testi-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.testi-author {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.testi-desc {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}
.testi-stars {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-top: 5px;
}
.testimonial-nav {
    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 10px;
}
.testi-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-orange);
    background: white;
    color: var(--primary-orange);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.testi-nav-btn:hover {
    background: var(--primary-orange);
    color: white;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--footer-bg);
    color: white;
    padding-top: 60px;
}
.footer-newsletter {
    background: var(--primary-orange);
    padding: 40px;
    border-radius: 5px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-newsletter h3 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
}
.footer-newsletter input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 300px;
    outline: none;
}
.footer-newsletter button {
    padding: 12px 20px;
    border: none;
    background: #111;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col h4 { margin-bottom: 20px; font-weight: 600; }
.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
    transition: 0.3s;
    cursor: pointer;
}
.footer-col ul li:hover {
    color: white;
    transform: translateX(3px);
}
.social-icons i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #aaa;
    transition: 0.3s;
}
.social-icons i:hover {
    color: white;
    transform: translateY(-2px);
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* ---------- SHAHI SNAN SECTION ---------- */
.shahi-snan {
    background: linear-gradient(135deg, #d84a24 0%, #ee6b2b 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.snan-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.snan-left {
    flex: 1;
    padding: 40px 20px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.snan-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.snan-timeline-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 10px 0;
}
.snan-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}
.snan-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    transition: 0.3s;
}
.snan-circle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.snan-circle .big-num {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.snan-circle .date-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}
.snan-label {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    line-height: 1.2;
    opacity: 0.9;
}
.snan-btn-box {
    position: relative;
    z-index: 1;
    margin-left: 10px;
    flex-shrink: 0;
}
.btn-view-all-circle {
    background: transparent;
    border: 2px solid white;
    padding: 8px 18px;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}
.btn-view-all-circle:hover {
    background: white;
    color: #d84a24;
}
.snan-right {
    flex: 0 0 329px;
    align-self: stretch;
    display: flex;
    align-items: stretch;
}
.snan-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- SCROLLBAR STYLES ---------- */
.stays-carousel::-webkit-scrollbar {
    height: 6px;
}
.stays-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.stays-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 10px;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 992px) {
    .nav-flex { flex-direction: column; gap: 10px; }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; margin: 10px 0; }
    .hero-text { max-width: 100%; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-content { flex-direction: column; align-items: center; gap: 30px; }
    .countdown-box { width: 100%; position: relative; right: auto; bottom: auto; margin: 20px auto; min-width: auto; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .exp-grid { grid-template-columns: repeat(4, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .slider-btn { display: none; }
    .top-flex { flex-direction: column; gap: 5px; }
    .shahi-snan { min-height: auto; padding: 40px 0; }
    .snan-wrapper { flex-direction: column; align-items: center; gap: 30px; }
    .snan-left { padding: 0; width: 100%; text-align: center; }
    .snan-timeline-wrapper { justify-content: center; }
    .snan-right { flex: 0 0 auto; width: 100%; min-height: 200px; max-height: 300px; }
    .snan-right img { max-height: 300px; object-fit: cover; border-radius: 8px; }
    .snan-btn-box { margin-left: 0; margin-top: 10px; width: 100%; text-align: center; }
}

@media (max-width: 767px) {
    .hero { height: 70vh !important; min-height: 400px; }
    .slider-container, .slide, .slide img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .hero-content {
        height: 100%;
        justify-content: center;
        padding: 0 20px;
    }
    .hero-text h1 { font-size: 1.8rem; }
    .countdown-box {
        position: relative !important;
        width: 100% !important;
        margin-top: 15px;
        padding: 12px !important;
    }
    .time-unit span:first-child { font-size: 1.5rem; }
    .time-unit-colon { font-size: 1.2rem; }

    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .feature-item:nth-child(5) { display: none !important; }
    .feature-item { border-right: none !important; padding: 0 !important; }
    .features-bar {
        margin: 20px 15px 0 15px !important;
        padding: 15px !important;
        width: auto !important;
        overflow-x: hidden;
    }

    .why-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 20px !important;
        margin: 0 -20px !important;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }
    .why-item {
        flex: 0 0 85% !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        padding: 30px 15px !important;
    }
    .why-grid::-webkit-scrollbar { height: 4px; }
    .why-grid::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
    .why-grid::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; }

    .trust-flex {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        justify-items: center !important;
        align-items: center !important;
        text-align: center;
        width: 100%;
        overflow-x: hidden;
    }
    .trust-item {
        width: 100%;
        justify-content: center;
    }
    .trust-item i { font-size: 2rem; }
    .trust-item h4 { font-size: 1.2rem; }
    .trust-item p { font-size: 0.7rem; }

    .top-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding: 5px 0;
    }
    .top-left, .top-right {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        width: 100%;
    }
    .top-bar .phone-link, 
    .top-bar .whatsapp-link, 
    .top-bar .email-link {
        font-size: 18px !important;
        font-weight: 500 !important;
        gap: 8px;
    }
    .top-bar i {
        font-size: 18px;
        width: 20px;
        margin-left: 20px;
    }

    .exp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 10px;
    }
    .exp-item { padding: 0 5px; margin-bottom: 10px; }
    .exp-item i { font-size: 2rem; margin-bottom: 8px; }
    .exp-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
    .exp-item p { font-size: 0.7rem; line-height: 1.3; }

    .snan-circle { width: 70px; height: 70px; }
    .snan-circle .big-num { font-size: 1.4rem; }
    .snan-label { font-size: 0.6rem; }
    .snan-title { font-size: 1.8rem; }
    .snan-item { min-width: 60px; }
    .snan-timeline-wrapper { gap: 5px; }
}

@media (max-width: 600px) {
    .features-grid, .why-grid, .destinations-grid, .testimonials-grid, .trust-flex, .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-newsletter { flex-direction: column; gap: 15px; }
    .newsletter-form { display: flex; flex-direction: column; width: 100%; }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
        border-radius: 5px;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .exp-grid { gap: 15px; }
    .exp-item i { font-size: 1.8rem; }
}

/* ===== ABOUT PAGE MOBILE RESPONSIVE FIXES ===== */

/* Stack the two-column layout on mobile */
@media (max-width: 767px) {
    /* Main grid becomes single column */
    .container > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Company intro: image below text */
    .about-intro-flex {
        flex-direction: column !important;
    }
    .about-intro-flex > div:first-child {
        order: 1;
    }
    .about-intro-flex > div:last-child {
        order: 0;
        margin-bottom: 20px;
    }
    
    /* Core values grid: single column or 2 columns if space */
    .core-values-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    /* Mission/Vision tabs: buttons stack or wrap */
    .tab-buttons {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .tab-btn {
        padding: 8px 16px !important;
        font-size: 1rem !important;
    }
    
    /* Business verticals headings and lists */
    h3 {
        font-size: 1.1rem !important;
    }
    
    /* Padding adjustments */
    .white-card {
        padding: 20px !important;
    }
    
    /* Sidebar margins */
    .sidebar-widget {
        margin-bottom: 20px !important;
    }
}

/* About page responsive fixes */
@media (max-width: 767px) {
    .about-intro {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .intro-logo {
        order: 2 !important;  /* image goes after text */
        margin-top: 20px;
    }
    .intro-text {
        order: 1 !important;
        text-align: justify;
    }
    .intro-text p {
        text-align: justify;
    }
}

/* Prevent horizontal overflow on all pages */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Main container ensures no overflow */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    padding: 0 15px;
}

/* Left column content wrapper */
.section-padding .container > div > div:first-child {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all images and cards scale */
img, .stay-card, .custom-carousel {
    max-width: 100%;
    height: auto;
}

/* Carousels – ensure scrolling is smooth and doesn't break layout */
.stays-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    padding-bottom: 15px;
}

/* Individual cards inside carousel */
.stay-card {
    flex: 0 0 auto;
    min-width: 250px;  /* adjust as needed, but not too large */
    max-width: 280px;
}

/* On very small screens, reduce card width */
@media (max-width: 480px) {
    .stay-card {
        min-width: 200px !important;
    }
}

/* Full-width slider images */
.custom-carousel .carousel-slide img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    object-fit: cover;
}



/* Force header and dropdown above all content */
header {
    position: sticky;
    top: 0;
    z-index: 9999 !important;
    background: white;
}

nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 10000 !important;
    list-style: none;
}

nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensure banner and hero have lower z-index */
.hero, .page-banner, section:first-of-type {
    position: relative;
    z-index: 1 !important;
}

/* Fix any overflow hidden on parent containers */
header .container, .nav-flex, nav ul {
    overflow: visible !important;
}