/* Hotels & Cars — unique horizontal listing cards (not tour-style) */
.services-section {
    position: relative;
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1rem, 4vw, 2rem);
    overflow: hidden;
}

.services-section--hotels {
    background: linear-gradient(180deg, #fff8ef 0%, #fff 45%, #faf6f0 100%);
}

.services-section--travel {
    background: linear-gradient(180deg, #eef7f2 0%, #fff 45%, #f3faf7 100%);
}

.services-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
}

.services-section--hotels .services-section-bg {
    background:
        radial-gradient(circle at 92% 12%, rgba(201, 146, 46, 0.12) 0%, transparent 34%),
        radial-gradient(circle at 6% 88%, rgba(139, 90, 30, 0.08) 0%, transparent 32%);
}

.services-section--travel .services-section-bg {
    background:
        radial-gradient(circle at 90% 15%, rgba(26, 92, 62, 0.1) 0%, transparent 34%),
        radial-gradient(circle at 8% 85%, rgba(26, 61, 50, 0.07) 0%, transparent 32%);
}

.services-section-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

/* Header — left aligned, distinct from tour packages */
.services-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(26, 61, 50, 0.14);
}

.services-header-mark {
    width: clamp(56px, 8vw, 72px);
    height: clamp(56px, 8vw, 72px);
    border-radius: 18px;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.services-section--hotels .services-header-mark {
    background: linear-gradient(145deg, #f6e3b8, #d4a017);
    color: #5c3d0f;
}

.services-section--travel .services-header-mark {
    background: linear-gradient(145deg, #c8e8d8, #1a5c3e);
    color: #0f2a24;
}

.services-header-mark svg {
    width: 70%;
    height: 70%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.services-header-eyebrow {
    display: inline-block;
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    color: #c9922e;
    margin-bottom: 0.2rem;
}

.services-section--travel .services-header-eyebrow {
    color: #1a5c3e;
}

.services-header-title {
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 2.8vw, 1.85rem);
    line-height: 1.25;
    color: #1a3d32;
    margin: 0;
}

.services-header-title span {
    display: block;
    font-weight: 700;
}

.services-header-title em {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.72em;
    margin-top: 0.15rem;
}

.services-section--hotels .services-header-title em {
    color: #8b5a1e;
}

.services-section--travel .services-header-title em {
    color: #c45b2d;
}

.services-header-tagline {
    margin: 0.45rem 0 0;
    max-width: 640px;
    font-size: clamp(0.82rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    color: #666;
}

/* Carousel */
.services-carousel-wrap {
    position: relative;
}

.services-carousel {
    overflow: hidden;
}

.services-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;
}

.services-track .service-card {
    flex: 0 0 calc((100% - 2 * clamp(0.85rem, 2vw, 1.25rem)) / 3);
    min-width: 0;
}

.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(26, 61, 50, 0.12);
    background: #fff;
    color: #1a3d32;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.services-nav-btn:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.services-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.services-nav-prev { left: -0.35rem; }
.services-nav-next { right: -0.35rem; }

.services-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
}

.services-dots .tours-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(26, 61, 50, 0.2);
    cursor: pointer;
}

.services-section--hotels .services-dots .tours-dot.active {
    background: #c9922e;
}

.services-section--travel .services-dots .tours-dot.active {
    background: #1a5c3e;
}

/* Card — horizontal split layout */
.service-card {
    display: flex;
    min-height: 100%;
}

.service-card-shell {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(26, 61, 50, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-card-shell {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(26, 61, 50, 0.14);
}

.service-card--hotels .service-card-shell {
    border-top: 4px solid #d4a017;
}

.service-card--travel .service-card-shell {
    border-top: 4px solid #1a5c3e;
}

.service-card-visual {
    position: relative;
    flex-shrink: 0;
    min-height: 168px;
    background: #e8e4dc;
}

.service-card-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
    object-position: center;
}

.service-card-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    padding: 0.32rem 0.7rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 999px;
}

.service-card--hotels .service-card-badge {
    background: rgba(139, 90, 30, 0.92);
}

.service-card--travel .service-card-badge {
    background: rgba(26, 61, 50, 0.92);
}

.service-card-price-chip {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.05rem;
    padding: 0.4rem 0.65rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    line-height: 1.1;
}

.service-card-price-chip span {
    font-size: 0.52rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888;
}

.service-card-price-chip strong {
    font-family: "Cinzel", serif;
    font-size: 0.92rem;
    color: #1a3d32;
}

.service-card--hotels .service-card-price-chip strong {
    color: #8b5a1e;
}

.service-card-price-chip em {
    font-style: normal;
    font-size: 0.58rem;
    color: #777;
}

.service-card-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.95rem 0.85rem 1rem;
    gap: 0.4rem;
    text-align: left;
}

.service-card-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.service-card-type {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

.service-card-accent-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.service-card--hotels .service-card-accent-icon {
    background: #faf0dc;
    color: #8b5a1e;
}

.service-card--travel .service-card-accent-icon {
    background: #e5f3ec;
    color: #1a5c3e;
}

.service-card-accent-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.service-card-title {
    font-family: "Cinzel", serif;
    font-size: clamp(0.78rem, 1.3vw, 0.9rem);
    font-weight: 700;
    color: #1a3d32;
    line-height: 1.35;
    margin: 0;
}

.service-card-subtitle {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.68rem;
    color: #7a7268;
    line-height: 1.45;
    margin: 0;
}

.service-card-subtitle svg {
    width: 11px;
    height: 11px;
    fill: #2d8a4e;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-card-desc {
    font-size: 0.76rem;
    color: #5c5348;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.65rem;
}

.service-card-actions .tour-btn-enquiry,
.service-card-actions .service-card-btn-enquiry,
.service-card-btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    overflow: visible;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.service-card--hotels .service-card-actions .tour-btn-enquiry,
.service-card--hotels .service-card-actions .service-card-btn-enquiry {
    background: linear-gradient(135deg, #ecc06a, #c9922e);
    color: #1a3d32;
    box-shadow: 0 6px 14px rgba(201, 146, 46, 0.28);
}

.service-card--travel .service-card-actions .tour-btn-enquiry,
.service-card--travel .service-card-actions .service-card-btn-enquiry {
    background: linear-gradient(135deg, #1a5c3e, #1a3d32);
    color: #fff;
    box-shadow: 0 6px 14px rgba(26, 61, 50, 0.22);
}

.service-card-btn-details {
    background: #fff;
    color: #1a3d32;
    border: 1.5px solid rgba(26, 61, 50, 0.22);
}

.service-card--hotels .service-card-btn-details {
    color: #8b5a1e;
    border-color: rgba(201, 146, 46, 0.5);
}

/* Arrow hatao — sirf hotels/cabs service cards pe */
.service-card-actions .tour-btn-enquiry svg,
.service-card-actions .service-card-btn-enquiry svg,
.service-card-btn-details svg {
    display: none;
}

.service-card-actions .tour-btn-enquiry:hover,
.service-card-actions .service-card-btn-enquiry:hover,
.service-card-btn-details:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Help bar — same compact pill as Wildlife / tour sections */
.services-help-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.1rem);
    width: 100%;
    max-width: min(680px, 88%);
    margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
    padding: clamp(0.75rem, 1.8vw, 1rem) clamp(1rem, 2vw, 1.25rem);
    background: #faf8f4;
    border: 1px solid rgba(26, 61, 50, 0.1);
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(26, 61, 50, 0.06);
}

.services-section--hotels .services-help-bar {
    background: #fffaf0;
    border-color: rgba(201, 146, 46, 0.22);
}

.services-section--travel .services-help-bar {
    background: #f3faf7;
    border-color: rgba(26, 92, 62, 0.16);
}

.services-help-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: #1a3d32;
}

.services-section--hotels .services-help-icon {
    color: #8b5a1e;
}

.services-section--travel .services-help-icon {
    color: #1a5c3e;
}

.services-help-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.services-section--travel .services-help-icon svg circle {
    fill: currentColor;
    stroke: none;
}

.services-help-text {
    flex: 1;
    min-width: 0;
    font-size: clamp(0.72rem, 1.2vw, 0.84rem);
    color: #5c5348;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.services-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.6rem 0.75rem 0.6rem 1.15rem;
    background: #1a3d32;
    color: #fff;
    border-radius: 999px;
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.services-section--hotels .services-help-btn {
    background: linear-gradient(135deg, #d4a017, #a67c00);
}

.services-section--travel .services-help-btn {
    background: linear-gradient(135deg, #1a5c3e, #1a3d32);
}

.services-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 61, 50, 0.28);
}

.services-help-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #1a3d32;
    display: grid;
    place-items: center;
}

.services-section--hotels .services-help-btn-icon {
    color: #8b5a1e;
}

.services-section--travel .services-help-btn-icon {
    color: #1a5c3e;
}

.services-help-btn-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Hotel rating row */
.service-card-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.15rem 0 0.55rem;
}

.service-card-stars {
    display: inline-flex;
    gap: 0.12rem;
}

.service-card-stars svg {
    width: 13px;
    height: 13px;
    fill: #d8d2c8;
}

.service-card-stars svg.is-on {
    fill: #d4a017;
}

.service-card-rating strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a3d32;
}

.service-card-rating span {
    font-size: 0.72rem;
    color: #7a847e;
}

@media (max-width: 720px) {
    .services-help-bar {
        flex-wrap: wrap;
        border-radius: 18px;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .services-help-text {
        flex: 1 1 100%;
        order: 3;
    }
}

@media (min-width: 900px) {
    .service-card-shell {
        flex-direction: row;
        min-height: 210px;
    }

    .service-card-visual {
        width: 42%;
        min-height: 210px;
    }

    .service-card-visual img {
        min-height: 210px;
    }

    .service-card-panel {
        width: 58%;
        padding: 1rem 1rem 1.05rem;
    }
}

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

@media (max-width: 720px) {
    .services-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-header-mark {
        margin: 0 auto;
    }

    .services-header-tagline {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .services-track .service-card {
        flex: 0 0 100%;
    }

    .service-card-actions {
        flex-wrap: nowrap;
        gap: 0.45rem;
    }

    .service-card-actions .tour-btn-enquiry,
    .service-card-actions .service-card-btn-enquiry,
    .service-card-btn-details {
        min-height: 42px;
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

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