﻿/* HERO SLIDER */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 850px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
        opacity: 1;
    }

.hero-slide-bg {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, var(--dark-navy) 0%, #1a3a6b 50%, #2d5a9e 100%); */
    background: linear-gradient( to right, rgba(10, 25, 60, 0.25) 10%, rgba(10, 25, 60, 0.08) 40%, rgba(10, 25, 60, 0) 70% );
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(15,31,51,.92) 50%, rgba(15,31,51,.4));
    }

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5) saturate(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 60px;
}

.hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
        content: 'ॐ';
        font-size: 20px;
        font-family: serif;
    }

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

 .hero-title span {
        color: var(--saffron);
    }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-label {
    flex-wrap: wrap;
    word-break: break-word;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    letter-spacing: .05em;
    margin-top: 4px;
}

.hero-right {
    position: relative;
    z-index: 2;
}

.hero-card-float {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 24px;
    color: white;
}

.hero-card-float h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    margin-bottom: 16px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .3s;
}

.hero-dot.active {
    background: var(--saffron);
    width: 24px;
    border-radius: 4px;
}

/* WHY US */
.why-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    transition: all .3s;
    background: white;
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--saffron);
    transition: all .3s;
}

.why-card:hover .why-icon {
    background: var(--saffron);
    color: white;
}

.why-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* DESTINATION TILE */
.dest-tile {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.dest-tile img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s;
}

.dest-tile:hover img {
    transform: scale(1.07);
}

.dest-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,31,51,.9) 0%, transparent 50%);
}

.dest-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.dest-tile-content h4 {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: 17px;
    margin-bottom: 4px;
}

.dest-tile-content span {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.dest-tile-content .arrow {
    position: absolute;
    right: 16px;
    bottom: 20px;
    width: 36px;
    height: 36px;
    background: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translateX(10px);
    opacity: 0;
    transition: all .3s;
}

.dest-tile:hover .arrow {
    transform: translateX(0);
    opacity: 1;
}

.dest-tile-lg img {
    height: 540px;
}

/* TESTIMONIAL */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-left: 4px solid var(--saffron);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--light-gold);
    line-height: 1;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.test-author-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}

.test-author-city {
    font-size: 12px;
    color: var(--text-muted);
}

/* GUIDE CARD */
.guide-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    text-decoration: none;
    display: block;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.guide-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.guide-card-body {
    padding: 20px;
}

.guide-card-name {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 4px;
}

.guide-card-desig {
    color: var(--saffron);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.guide-card-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* QUICK ENQUIRY */
.quick-enquiry {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-control-tour {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color .2s;
    outline: none;
    font-family: 'Lato', sans-serif;
    background: #fafafa;
}

.form-control-tour:focus {
        border-color: var(--saffron);
        background: white;
    }

.form-label-tour {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    display: block;
}

/* ── Mobile / Responsive fixes ── */
@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 100svh;
        max-height: none;
    }

    .hero-content {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 52px);
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat .number {
        font-size: 22px;
    }
    /* Give hero container breathing room on tablets */
    .hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 72px 0 32px;
    }

    .hero-title {
        font-size: clamp(22px, 8.5vw, 38px);
    }

    .hero-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions a, .hero-actions button {
        font-size: 13px;
        padding: 10px 18px;
    }

    .hero-stats {
        gap: 16px;
        margin-top: 28px;
    }

    .hero-stat .number {
        font-size: 20px;
    }
    /* Force sufficient side padding so text never touches screen edge */
    .hero .container {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }
    /* Darshan overlay: stronger gradient so text is readable on all banners */
    .hero-slide-bg::after {
        background: linear-gradient(to right, rgba(15,31,51,.95) 60%, rgba(15,31,51,.55));
    }
}
/* Prevent horizontal scroll everywhere */
.hero, .hero-slide, .hero-slide-bg {
    max-width: 100vw;
}
/* Hero banner prev/next nav buttons — glass effect */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.18);
    border: 1.5px solid rgba(255,255,255,.35);
    color: white;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s, transform .2s;
    line-height: 1;
    padding: 0;
}

.hero-nav-btn:hover {
    background: rgba(245,166,35,.85);
    border-color: var(--saffron);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

@media (max-width: 576px) {
    .hero-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
}

/* Swiper prev/next override — small white on package & guide carousels */
.packagesSwiper .swiper-button-prev,
.packagesSwiper .swiper-button-next,
.guidesSwiper .swiper-button-prev,
.guidesSwiper .swiper-button-next {
    width: 34px !important;
    height: 34px !important;
    background: rgba(255,255,255,.92);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(27,52,84,.18);
    color: var(--navy) !important;
    top: 38%;
}

.packagesSwiper .swiper-button-prev::after,
.packagesSwiper .swiper-button-next::after,
.guidesSwiper .swiper-button-prev::after,
.guidesSwiper .swiper-button-next::after {
    font-size: 13px !important;
    font-weight: 900;
}

.packagesSwiper .swiper-button-prev:hover,
.packagesSwiper .swiper-button-next:hover,
.guidesSwiper .swiper-button-prev:hover,
.guidesSwiper .swiper-button-next:hover {
    background: var(--saffron);
    color: white !important;
}