/* Golden Triangle Tours section */
.tours-section {
    position: relative;
    z-index: 1;
    padding: calc(var(--hero-features-overlap, 3.5rem) + clamp(1.25rem, 3vw, 2rem)) clamp(1rem, 3vw, 1.5rem) clamp(3rem, 6vw, 4.5rem);
    background: #f7f5f2;
    color: #1a1510;
}

@media (max-width: 768px) {
    .tours-section#tours {
        padding-top: calc(var(--hero-features-overlap, 7rem) + 1.15rem);
    }
}

@media (max-width: 480px) {
    .tours-section#tours {
        padding-top: calc(var(--hero-features-overlap, 8rem) + 1.35rem);
    }
}

.tours-section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.tours-heading {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.35;
}

.tours-heading-main {
    display: block;
    font-family: "Cinzel", serif;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}

.tours-heading-sub {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 1.85rem);
    font-weight: 600;
    color: #e68a3e;
    margin-top: 0.15rem;
}

.tours-heading--single {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.tours-heading-gold {
    font-family: "Cinzel", serif;
    font-size: clamp(1.45rem, 3.5vw, 2.15rem);
    font-weight: 700;
    color: #e68a3e;
    letter-spacing: 0.02em;
}

.tours-section--rajasthan {
    background: #ffffff;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-section--same-day {
    background: #f7f5f2;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-section--honeymoon {
    background: #ffffff;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-section--group {
    background: #f7f5f2;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-section--wildlife {
    background: #ffffff;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-section--jaisalmer {
    background: #f7f5f2;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-section--jaipur {
    background: #ffffff;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.tours-heading--same-day {
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.35rem;
}

.tours-heading--same-day .tours-heading-accent {
    color: #e68a3e;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 2.8vw, 1.85rem);
}

.tours-heading--same-day .tours-heading-dark {
    color: #111;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    margin-top: 0;
}

.tour-card-price {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: clamp(0.78rem, 1.5vw, 0.88rem);
    color: #2d8a4e;
    font-weight: 600;
    line-height: 1.45;
}

.tour-card-price svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    stroke: #2d8a4e;
    fill: none;
    stroke-width: 1.4;
}

.tours-carousel-wrap {
    position: relative;
}

.tours-carousel {
    overflow: hidden;
    margin: 0 clamp(-0.25rem, -1vw, 0);
}

.tours-track {
    display: flex;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tour-card {
    flex: 0 0 calc((100% - 2 * clamp(0.85rem, 2vw, 1.25rem)) / 3);
    min-width: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.tour-card:hover .tour-card-image img {
    transform: scale(1.06);
}

.tour-card-body {
    padding: clamp(0.85rem, 2vw, 1.1rem) clamp(0.9rem, 2vw, 1.15rem) clamp(1rem, 2.2vw, 1.25rem);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
}

.tour-card-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    font-weight: 700;
    color: #111;
    line-height: 1.35;
}

.tour-card-route {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: clamp(0.78rem, 1.5vw, 0.88rem);
    color: #5c5348;
    line-height: 1.45;
}

.tour-card-route svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    fill: #2d8a4e;
}

.tour-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.tour-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.58rem 0.5rem;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: clamp(0.62rem, 1.3vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}

.tour-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.tour-btn-enquiry {
    background: #1a5c3e;
    color: #fff;
}

.tour-btn-enquiry:hover {
    background: #134830;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 92, 62, 0.35);
}

.tour-btn-details {
    background: #e68a3e;
    color: #fff;
}

.tour-btn-details:hover {
    background: #d47a32;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 138, 62, 0.35);
}

.tours-nav-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #333;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
}

.tours-nav-btn:hover {
    background: #e68a3e;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.tours-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.tours-nav-btn:disabled:hover {
    background: #fff;
    color: #333;
}

.tours-nav-prev { left: -0.5rem; }
.tours-nav-next { right: -0.5rem; }

.tours-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.tours-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c8c2b8;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.tours-dot.active {
    background: #111;
    transform: scale(1.15);
}

.tours-view-all-wrap {
    text-align: center;
    margin-top: clamp(1.5rem, 3.5vw, 2rem);
}

.tours-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: #e68a3e;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.tours-view-all:hover {
    background: #d47a32;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 138, 62, 0.35);
}

.tours-view-all svg {
    width: 16px;
    height: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
    .tour-card {
        flex: 0 0 calc((100% - clamp(0.85rem, 2vw, 1.25rem)) / 2);
    }

    .tours-nav-prev { left: 0; }
    .tours-nav-next { right: 0; }
}

/* Mobile */
@media (max-width: 640px) {
    .tours-section {
        padding-top: clamp(2rem, 5vw, 2.75rem);
    }

    .tour-card {
        flex: 0 0 100%;
    }

    .tour-card-actions {
        flex-direction: column;
    }

    .tour-btn {
        width: 100%;
        padding: 0.65rem 0.75rem;
    }

    .tours-nav-btn {
        width: 36px;
        height: 36px;
        top: 32%;
    }

    .tours-nav-prev { left: 0.15rem; }
    .tours-nav-next { right: 0.15rem; }
}

@media (max-width: 480px) {
    .tours-nav-btn {
        display: none;
    }
}
