/* ---------- Shared layout helpers used only on the home page ---------- */
.wai-home-section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.wai-home-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.wai-home-section-header-wide {
    max-width: 700px;
}

.wai-home-section-header-narrow {
    max-width: 640px;
}

.wai-home-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.wai-home-eyebrow-start {
    justify-content: flex-start;
}

.wai-home-eyebrow-center {
    justify-content: center;
}

.wai-home-eyebrow-line {
    width: 34px;
    height: 2px;
    background: #E0991F;
    flex-shrink: 0;
}

.wai-home-eyebrow-text {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    color: #C9860F;
}

.wai-home-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 44px;
    color: #0E3B2E;
    margin: 0 0 14px;
    line-height: 1.1;
}

.wai-home-section-desc {
    color: #5D6C64;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* Generic responsive grids reused across home sections */
.wai-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wai-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.wai-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.wai-hide-mobile {
    display: block;
}


/* =====================================================
   1. HERO
   ===================================================== */
.wai-home-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(120% 100% at 80% 0%, #15463A 0%, #0E3B2E 55%, #0A2D23 100%);
}

.wai-home-hero-bgimg {
    position: absolute;
    inset: 0;
    background-image: url('/images/bckround.jpg');
    background-size: cover;
    background-position: center;
    opacity: .20;
    mix-blend-mode: luminosity;
}

.wai-home-hero-bgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 45, 35, .85) 0%, rgba(10, 45, 35, .45) 55%, rgba(10, 45, 35, .1) 100%);
}

.wai-home-hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 78px 24px 92px;
}

.wai-home-hero-textcol {
    animation: fadeUp .8s ease both;
}

.wai-home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(239, 160, 28, .16);
    border: 1px solid rgba(239, 160, 28, .4);
    color: #F4B53D;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 22px;
}

.wai-home-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #fff;
    font-size: 62px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.wai-home-hero-title-accent {
    color: #EFA01C;
    font-style: italic;
}

.wai-home-hero-desc {
    color: #CFE0D8;
    font-size: 19px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 32px;
}

.wai-home-hero-imgcol {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 340px;
}

.wai-home-hero-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(120, 210, 150, .45) 0%, rgba(120, 210, 150, 0) 68%);
    animation: glowpulse 5s ease-in-out infinite;
}

.wai-home-hero-img {
    position: relative;
    top: 131px;
    z-index: 100;
    width: 118%;
    max-width: 620px;
    filter: drop-shadow(0 0px 5px rgba(0, 0, 0, .45));
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowpulse {

    0%,
    100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}


/* =====================================================
   2. BOOKING FORM BAR
   ===================================================== */
.wai-home-bookingform-wrap {
    position: relative;
    z-index: 30;
    max-width: 1240px;
    margin: -120px auto 0;
    padding: 0 clamp(20px, 5vw, 40px);
}

.wai-home-bookingform-card {
    background: #FFFDF7;
    border: 1px solid rgba(30, 58, 43, .08);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(20, 40, 28, .16);
    padding: clamp(20px, 2.6vw, 30px) clamp(20px, 3vw, 38px);
}

.wai-home-bookingform-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr .9fr auto;
    gap: 0;
    align-items: end;
}

.wai-home-bookingform-field {
    padding: 4px 22px;
}

.wai-home-bookingform-field-border {
    border-right: 1px solid rgba(30, 58, 43, .12);
}

.wai-home-bookingform-field-noright {
    padding-right: 22px;
    padding-left: 22px;
}

.wai-home-bookingform-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2E5641;
    font-weight: 800;
    margin-bottom: 8px;
}

.wai-home-bookingform-input{
    width:100%;
    height:40px;
    padding:0 16px;
    border:1px solid rgba(30,58,43,.15);
    border-radius:10px;
    background:#fff;
    font-family:'Mulish',sans-serif;
    font-size:15px;
    font-weight:600;
    color:#1E3A2B;
    outline:none;
    box-sizing:border-box;
    transition:all .25s ease;
}

.wai-home-bookingform-input::placeholder{
    color:#8A948D;
}

.wai-home-bookingform-input:focus{
    border-color:#C9860F;
    box-shadow:0 0 0 3px rgba(201,134,15,.15);
}

.wai-home-bookingform-select {
    width:100%;
    height:40px;
    border:1px solid rgba(30,58,43,.15);
    border-radius:10px;
    padding:0 10px;
    background:#fff;
    outline: none;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E3A2B;
    cursor: pointer;
}

.wai-home-bookingform-btn {
    background: #E0991F;
    color: #1E3A2B;
    border: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 12px 26px rgba(224, 153, 31, .3);
    white-space: nowrap;
    transition: background .2s ease;
}

.wai-home-bookingform-btn:hover {
    background: #CE8A12;
}

.wai-home-bookingform-btn-arrow {
    font-size: 17px;
}


/* =====================================================
   3. PACKAGES SECTION
   ===================================================== */
.wai-home-packages-section {
    background: #FBF6EC;
    padding: 86px 0;
}

.wai-home-packages-searchbox {
    background: #fff;
    border: 1px solid #ECE5D6;
}

.wai-home-packages-searchinput {
    background: #fff;
    border: 1px solid #ECE5D6;
}

.wai-home-category-pill {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #ECE5D6;
    background: #fff;
    color: #0E3B2E;
    font-weight: 600;
}

.wai-home-package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #EFA01C;
    color: #0E3B2E;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 8px;
}

.wai-home-package-card {
    background: #fff;
    border: 1px solid #ECE5D6;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}

.wai-home-package-imgwrap {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.wai-home-package-body {
    padding: 24px 18px;
}

.wai-home-package-title {
    font-size: 22px;
    color: #0E3B2E;
    margin-bottom: 10px;
}

.wai-home-package-park {
    color: #5D6C64;
    margin-bottom: 12px;
}

.wai-home-package-pricelabel {
    font-size: 13px;
    color: #888;
}

.wai-home-package-price {
    font-size: 28px;
    font-weight: 800;
    color: #0E3B2E;
    margin-bottom: 12px;
}

.wai-home-package-priceunit {
    font-size: 14px;
    color: #888;
}

.wai-home-package-desc {
    font-size: 14px;
    color: #666;
    margin: 14px 0;
}

.wai-home-package-enquirebtn {
    width: 100%;
    background: #0E3B2E;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
}


/* =====================================================
   4. SAFARI TYPES
   ===================================================== */
.wai-home-safaritypes-section {
    padding: 86px 0;
    background: #fff;
}

.wai-home-safaritype-card {
    background: #fff;
    border: 1px solid #ECE5D6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(14, 59, 46, .06);
    transition: all .3s ease;
}

.wai-home-safaritype-stripe {
    height: 12px;
}

.wai-home-stripe-1 {
    background: linear-gradient(90deg, #2d5a27, #1b5536);
}

.wai-home-stripe-2 {
    background: linear-gradient(90deg, #c9a227, #e8c547);
}

.wai-home-stripe-3 {
    background: linear-gradient(90deg, #1b5536, #2d5a27);
}

.wai-home-stripe-4 {
    background: linear-gradient(90deg, #0E3B2E, #2d5a27);
}

.wai-home-safaritype-body {
    padding: 30px 28px;
}

.wai-home-safaritype-iconwrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wai-home-iconwrap-1 {
    background: linear-gradient(135deg, #2d5a27, #c9a227);
    box-shadow: 0 8px 20px rgba(45, 90, 39, .25);
}

.wai-home-iconwrap-2 {
    background: linear-gradient(135deg, #c9a227, #2d5a27);
    box-shadow: 0 8px 20px rgba(201, 162, 39, .3);
}

.wai-home-iconwrap-3 {
    background: linear-gradient(135deg, #1b5536, #c9a227);
    box-shadow: 0 8px 20px rgba(27, 85, 54, .25);
}

.wai-home-iconwrap-4 {
    background: linear-gradient(135deg, #0E3B2E, #c9a227);
    box-shadow: 0 8px 20px rgba(201, 162, 39, .3);
}

.wai-home-iconwrap-5 {
    background: linear-gradient(135deg, #0E3B2E, #c9a227);
    box-shadow: 0 8px 20px rgba(14, 59, 46, .3);
}

.wai-home-safaritype-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #0E3B2E;
    margin: 0 0 10px;
}

.wai-home-safaritype-desc {
    font-size: 14.5px;
    color: #5D6C64;
    line-height: 1.7;
    margin: 0 0 18px;
}

.wai-home-safaritype-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wai-home-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

.wai-home-tag-green {
    background: #EEF7EE;
    color: #2E5641;
}

.wai-home-tag-gold {
    background: #FDF6E3;
    color: #8A6A00;
}


/* =====================================================
   5. HOW TO BOOK (STEPS TIMELINE)
   ===================================================== */
.wai-home-howtobook-section {
    padding: 86px 0;
    background: #FBF6EC;
}

.wai-home-steps-timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.wai-home-steps-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #2d5a27, #c9a227);
    transform: translateX(-50%);
    z-index: 0;
}

.wai-home-step-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.wai-home-step-row-last {
    margin-bottom: 0;
}

.wai-home-step-col {
    flex: 1;
}

.wai-step-left {
    text-align: right;
}

.wai-home-step-card {
    background: #fff;
    border: 1px solid #ECE5D6;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(14, 59, 46, .07);
}

.wai-home-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #0E3B2E;
    margin: 0 0 8px;
}

.wai-home-step-desc {
    font-size: 14.5px;
    color: #5D6C64;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.wai-home-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.wai-home-step-number-1 {
    background: linear-gradient(135deg, #2d5a27, #c9a227);
    box-shadow: 0 6px 20px rgba(45, 90, 39, .3);
}

.wai-home-step-number-2 {
    background: linear-gradient(135deg, #c9a227, #2d5a27);
    box-shadow: 0 6px 20px rgba(201, 162, 39, .3);
}

.wai-home-step-number-text {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.wai-home-step-pill {
    background: #EEF7EE;
    border-radius: 12px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wai-home-step-pill-float {
    float: right;
}

.wai-home-step-pill-text {
    font-size: 14px;
    font-weight: 600;
    color: #0E3B2E;
}

.wai-home-step-pill-dark {
    background: linear-gradient(135deg, #2d5a27, #0E3B2E);
    border-radius: 12px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wai-home-step-pill-dark-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.wai-home-howtobook-cta {
    text-align: center;
    margin-top: 52px;
}

.wai-home-howtobook-cta-text {
    font-size: 16px;
    color: #5D6C64;
    margin-bottom: 20px;
}

.wai-home-howtobook-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1E3A2B;
    color: #FAF6EC;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 34px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(30, 58, 43, .2);
}


/* =====================================================
   6. BEST TIME TO VISIT
   ===================================================== */
.wai-home-besttime-section {
    padding: 86px 0;
    background: #fff;
}

.wai-home-season-grid {
    margin-bottom: 48px;
}

.wai-home-season-card {
    background: #fff;
    border: 1px solid #ECE5D6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(14, 59, 46, .07);
    transition: all .3s ease;
}

.wai-home-season-cardhead {
    padding: 28px;
    color: #fff;
}

.wai-home-season-head-1 {
    background: linear-gradient(135deg, #2d5a27, #1b5536);
}

.wai-home-season-head-2 {
    background: linear-gradient(135deg, #1E3A2B, #0d5c2b);
}

.wai-home-season-head-3 {
    background: linear-gradient(135deg, #c9a227, #a67c00);
}

.wai-home-season-emoji {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.wai-home-season-eyebrow-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 6px;
}

.wai-home-season-range {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin: 0 0 4px;
}

.wai-home-season-sub {
    font-size: 13px;
    font-weight: 700;
}

.wai-home-season-sub-gold {
    color: #c9a227;
}

.wai-home-season-sub-green {
    color: #a3d9a5;
}

.wai-home-season-sub-dark {
    color: #0E3B2E;
}

.wai-home-season-cardbody {
    padding: 24px 26px;
}

.wai-home-season-text {
    font-size: 14.5px;
    color: #5D6C64;
    line-height: 1.75;
    margin: 0 0 16px;
}

.wai-home-season-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wai-home-season-listitem {
    font-size: 14px;
    color: #444;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wai-home-season-listitem-last {
    border-bottom: none;
}

.wai-home-parktable-wrap {
    background: #FBF6EC;
    border: 1px solid #ECE5D6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(14, 59, 46, .05);
}

.wai-home-parktable-head {
    background: linear-gradient(90deg, #0E3B2E, #1b5536);
    padding: 18px 28px;
}

.wai-home-parktable-headtitle {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.wai-home-parktable-scroll {
    overflow-x: auto;
    padding: 0;
}

.wai-home-parktable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}

.wai-home-parktable-headrow {
    background: #EEF7EE;
}

.wai-home-parktable-th {
    padding: 14px 16px;
    text-align: center;
    color: #0E3B2E;
    font-weight: 700;
    border-bottom: 2px solid #ECE5D6;
}

.wai-home-parktable-th-left {
    text-align: left;
    padding: 14px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
}

.wai-home-parktable-row {
    border-bottom: 1px solid #ECE5D6;
    transition: background .2s;
}

.wai-home-parktable-td {
    padding: 13px 16px;
}

.wai-home-parktable-td-name {
    padding: 13px 20px;
    font-weight: 700;
    color: #0E3B2E;
    white-space: nowrap;
}

.wai-home-parktable-td-center {
    text-align: center;
}

.wai-home-parktable-td-muted {
    color: #5D6C64;
    font-size: 13.5px;
}

.wai-home-parktable-td-muted-sm {
    color: #5D6C64;
    font-size: 13px;
}

.wai-home-parktable-pill {
    background: #EEF7EE;
    color: #2d5a27;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}


/* =====================================================
   7. WHY CHOOSE US
   ===================================================== */
.wai-home-whywai-section {
    padding: 86px 0;
    background: #FBF6EC;
}

.wai-home-why-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    height: 100%;
}

.wai-home-why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #c9a227);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(45, 90, 39, .25);
}

.wai-home-why-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #0E3B2E;
    margin: 0 0 12px;
}

.wai-home-why-desc {
    font-size: 14.5px;
    color: #5D6C64;
    line-height: 1.7;
    margin: 0;
}

.wai-home-trustbadges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 52px;
}

.wai-home-trustbadge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ECE5D6;
    border-radius: 50px;
    padding: 12px 22px;
    box-shadow: 0 4px 12px rgba(14, 59, 46, .06);
}

.wai-home-trustbadge-text {
    font-size: 14px;
    font-weight: 700;
    color: #0E3B2E;
}


/* =====================================================
   8. ABOUT
   ===================================================== */
.wai-home-about-section {
    padding: clamp(70px, 8vw, 120px) clamp(20px, 5vw, 72px);
}

.wai-home-about-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
}

.wai-home-about-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -.5px;
    margin: 0 0 22px;
    color: #1E3A2B;
}

.wai-home-about-title-accent {
    color: #C9860F;
    font-style: italic;
}

.wai-home-about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #5C5B50;
    margin: 0 0 18px;
    font-weight: 500;
}

.wai-home-about-text-last {
    margin: 0 0 28px;
}

.wai-home-about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.wai-home-about-pill {
    background: #EEF1E6;
    color: #2E5641;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
}

.wai-home-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1E3A2B;
    color: #FAF6EC;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(30, 58, 43, .2);
    transition: background .2s ease;
}

.wai-home-about-cta:hover {
    background: #142A1F;
    color: #FAF6EC;
}

.wai-home-about-imgcol {
    position: relative;
}

.wai-home-about-img {
    height: clamp(360px, 42vw, 520px);
    border-radius: 24px;
    background: url('/images/background/wildlifeadventureindia.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(30, 58, 43, .08);
    box-shadow: 0 30px 60px rgba(20, 40, 28, .2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.wai-home-about-imgtag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .9);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2E5641;
}

.wai-home-about-imgcaption {
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(3px);
    border-radius: 16px;
    padding: 16px 20px;
    color: #fff;
}

.wai-home-about-imgcaption-years {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #E0991F;
}

.wai-home-about-imgcaption-text {
    font-size: 13px;
    font-weight: 600;
    opacity: .95;
}


/* =====================================================
   9. EXPLORE NATIONAL PARKS
   ===================================================== */
.wai-home-parks-section {
    padding: 86px 0;
    background: #FBF6EC;
}

.wai-home-parkcard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 30px rgba(14, 59, 46, .12);
}

.wai-home-parkcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 45, 35, 0) 30%, rgba(10, 45, 35, .92) 100%);
}

.wai-home-parkcard-content {
    position: relative;
    padding: 20px;
    width: 100%;
}

.wai-home-parkcard-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 160, 28, .92);
    color: #0E3B2E;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 7px;
    margin-bottom: 9px;
}

.wai-home-parkcard-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    margin: 0 0 4px;
}

.wai-home-parkcard-sub {
    color: #CFE0D8;
    font-size: 13px;
    margin-bottom: 12px;
}

.wai-home-parkcard-link {
    color: #EFA01C;
    font-weight: 700;
    font-size: 13px;
}


/* =====================================================
   10. SAFARI HOTELS
   ===================================================== */
.wai-home-hotels-section {
    padding: 86px 0;
    background: #fff;
}

.wai-home-hotelcard {
    background: #fff;
    border: 1px solid #ECE5D6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 59, 46, .06);
}

.wai-home-hotelcard-img {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.wai-home-hotelcard-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(14, 59, 46, .9);
    color: #EFA01C;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 11px;
    border-radius: 8px;
}

.wai-home-hotelcard-body {
    padding: 18px;
}

.wai-home-hotelcard-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #0E3B2E;
    margin-bottom: 5px;
}

.wai-home-hotelcard-loc {
    font-size: 13px;
    color: #8A968E;
    margin-bottom: 12px;
}

.wai-home-hotelcard-desc {
    font-size: 13.5px;
    color: #5D6C64;
    line-height: 1.55;
}

.wai-home-hotelcard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.wai-home-hotelcard-price {
    font-size: 23px;
    font-weight: 800;
    color: #0E3B2E;
}

.wai-home-hotelcard-priceunit {
    font-size: 12px;
    color: #8A968E;
}

.wai-home-hotelcard-btn {
    background: #EFA01C;
    color: #0E3B2E;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}


/* =====================================================
   11. CTA SECTION (Corbett journey banner)
   ===================================================== */
.wai-home-cta-section {
    padding: clamp(60px, 7vw, 100px) clamp(20px, 5vw, 72px);
    background: radial-gradient(120% 100% at 80% 0%, #15463A 0%, #0E3B2E 55%, #0A2D23 100%);
    position: relative;
    overflow: hidden;
}

.wai-home-cta-bgimg {
    position: absolute;
    inset: 0;
    background-image: url('/images/bckround.jpg');
    background-size: cover;
    background-position: center;
    opacity: .06;
}

.wai-home-cta-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.wai-home-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(239, 160, 28, .16);
    border: 1px solid rgba(239, 160, 28, .4);
    color: #F4B53D;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wai-home-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 50px);
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.1;
}

.wai-home-cta-title-accent {
    color: #EFA01C;
    font-style: italic;
}

.wai-home-cta-desc {
    color: #CFE0D8;
    font-size: 17px;
    line-height: 1.65;
    margin: 0 auto 32px;
    max-width: 580px;
}

.wai-home-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wai-home-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #EFA01C;
    color: #0E3B2E;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(239, 160, 28, .3);
}

.wai-home-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .4);
}


/* =====================================================================
   RESPONSIVE BREAKPOINTS
   Mirrors the breakpoints already used elsewhere on the site
   (991px tablet, 767px mobile) so the home page behaves consistently.
   ===================================================================== */

/* ---------- Tablet & below (≤991px) ---------- */
@media (max-width: 991px) {

    .wai-hero-grid {
        grid-template-columns: 1fr;
    }

    .wai-home-hero-inner {
        padding: 56px 20px 0px;
        text-align: center;
    }

    .wai-home-hero-textcol {
        order: 1;
    }

    .wai-home-hero-imgcol {
        order: 2;
        min-height: 260px;
    }

    .wai-home-hero-title {
        font-size: 46px;
    }

    .wai-home-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .wai-home-hero-img {
        top: 40px;
        width: 90%;
    }

    .wai-home-bookingform-wrap {
        margin-top: -70px;
    }

    .wai-home-bookingform-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        align-items: stretch;
    }

    .wai-home-bookingform-field-border {
        border-right: none;
    }

    .wai-home-bookingform-field,
    .wai-home-bookingform-field-noright {
        padding: 4px 0;
    }

    .wai-home-bookingform-btn {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 8px;
    }

    .wai-grid-3,
    .wai-home-safaritypes-grid,
    .wai-home-season-grid,
    .wai-home-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wai-grid-4,
    .wai-home-parkcards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wai-home-about-grid {
        grid-template-columns: 1fr;
    }

    .wai-home-about-imgcol {
        order: -1;
    }

    .wai-hide-mobile {
        display: none;
    }

    .wai-home-step-row {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .wai-step-left,
    .wai-step-right {
        text-align: center;
        width: 100%;
    }

    .wai-home-step-pill,
    .wai-home-step-pill-dark {
        float: none !important;
        margin: 0 auto;
    }
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {

    .wai-home-section-title {
        font-size: 32px;
    }

    .wai-home-section-desc {
        font-size: 15.5px;
    }

    .wai-home-hero-title {
        font-size: 34px;
    }

    .wai-home-hero-badge {
        font-size: 11.5px;
        padding: 7px 13px;
    }

    .wai-home-hero-desc {
        font-size: 16px;
        margin-bottom:0px;
    }

    .wai-home-hero-img {
        top: 56px;
        width: 100%;
    }

    .wai-home-hero-glow {
        width: 280px;
        height: 280px;
    }

    .wai-home-bookingform-wrap {
        margin-top: -48px;
    }

    .wai-home-bookingform-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wai-home-bookingform-btn {
        grid-column: auto;
    }

    .wai-grid-3,
    .wai-home-safaritypes-grid,
    .wai-home-season-grid,
    .wai-home-why-grid,
    .wai-grid-4,
    .wai-home-parkcards-grid,
    .wai-home-hotels-grid {
        grid-template-columns: 1fr;
    }

    .wai-home-parkcard {
        height: 240px;
    }

    .wai-home-about-title {
        text-align: center;
    }

    .wai-home-about-section .wai-home-eyebrow-start {
        justify-content: center;
    }

    .wai-home-about-pills {
        justify-content: center;
    }

    .wai-home-about-text {
        text-align: justify;
    }

    .wai-home-about-cta {
        margin: 0 auto;
        display: flex;
        width: fit-content;
    }

    .wai-home-cta-title {
        font-size: 28px;
    }

    .wai-home-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .wai-home-cta-btn-primary,
    .wai-home-cta-btn-secondary {
        justify-content: center;
    }

    .wai-home-parktable {
        min-width: 480px;
    }

    .wai-home-step-card {
        padding: 22px;
        text-align: left;
    }

    .wai-home-step-desc {
        text-align: left;
    }
}

/* ---------- Small mobile (≤480px) ---------- */
@media (max-width: 480px) {

    .wai-home-hero-title {
        font-size: 28px;
    }

    .wai-home-section-title {
        font-size: 26px;
    }

    .wai-home-bookingform-card {
        padding: 18px;
    }

    .wai-home-package-price {
        font-size: 24px;
    }

    .wai-home-trustbadges {
        gap: 12px;
    }

    .wai-home-trustbadge {
        padding: 10px 16px;
    }
}

/* =====================================================
   SHARED ACROSS CORBETT PAGES
   (Destination · Attractions · Safari)
   ===================================================== */

/* ─── Shared Page Design Tokens (Corbett sub-pages) ──────────────────── */
:root {
    --corbett-forest-dark:  #0d1b0f;
    --corbett-forest-mid:   #1E3A2B;
    --corbett-forest-green: #2E5641;
    --corbett-gold:         #E0991F;
    --corbett-gold-mid:     #C9860F;
    --corbett-gold-light:   #F4B53D;
    --corbett-cream:        #FAF6EC;
    --corbett-cream-bg:     #ECF1E4;
    --corbett-warm-white:   #FFFDF7;
    --corbett-text-dark:    #1E3A2B;
    --corbett-text-mid:     #243029;
    --corbett-text-muted:   #5C5B50;
    --corbett-border:       rgba(30,58,43,.08);
    --corbett-shadow-sm:    0 4px 16px rgba(0,0,0,.07);
    --corbett-shadow-md:    0 10px 40px rgba(0,0,0,.10);
    --corbett-shadow-lg:    0 20px 60px rgba(0,0,0,.13);
    --corbett-radius:       18px;
    --corbett-radius-sm:    10px;
}

/* ─── Shared Read-More Toggle Button ─────────────────────────────────── */
.rm-toggle-btn {
    background: none;
    border: none;
    padding: 6px 0 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    color: #C9860F;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: .2px;
    font-family: 'Mulish', sans-serif;
}
.rm-toggle-btn:hover { color: #A06B00; }
.rm-toggle-btn svg { transition: transform .25s; }
.rm-toggle-btn.open svg { transform: rotate(180deg); }

/* ─── Shared Eyebrow / Section Label primitives ──────────────────────── */
.s-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(224,153,31,.14);
    border: 1px solid rgba(224,153,31,.38);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.s-eyebrow span {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--corbett-gold-mid);
}
.s-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--corbett-gold);
}

.s-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.s-label::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--corbett-gold);
    display: block;
}
.s-label span {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--corbett-gold-mid);
}

.s-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(30px, 3.8vw, 50px);
    line-height: 1.1;
    color: var(--corbett-forest-mid);
    margin: 0 0 14px;
}
.s-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--corbett-text-muted);
    font-weight: 500;
    margin: 0;
}


/* =====================================================
   DESTINATION PAGE
   ===================================================== */

/* ─── Zone Detail Blocks (Safari Zones section) ──────────────────────── */
/* ─── Zone Detail Blocks — Destination Page ─────────────────────────── */

/* Row wrapper — Bootstrap row already handles flex/gap via g-4,
   we just add bottom margin and align the row children */
.zone-detail-block {
    margin-bottom: 48px;
    align-items: stretch;
}
.zone-detail-block:last-child {
    margin-bottom: 0;
}

/* Image column — the Bootstrap card inside col-lg-4 */
.zone-card {
    border-radius: var(--corbett-radius) !important;
    overflow: hidden;
    border: none !important;
    box-shadow: var(--corbett-shadow-md) !important;
    position: relative;               /* needed for overlay */
    min-height: 320px;
    height: 100%;
}

/* Zone image fills the card */
.zone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

/* Gradient overlay sits at bottom of image card */
.zone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,30,20,.96) 0%, rgba(10,30,20,.65) 55%, transparent 100%);
    padding: 24px 20px 20px;
    color: #fff;
}
.zone-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 3px;
    color: #fff;
    line-height: 1.2;
}
.zone-overlay p {
    margin: 0;
    font-size: 12.5px;
    font-weight: 700;
}

.zone-details {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.82);
}
.zone-details ul { margin: 0; padding: 0; }
.zone-details li { list-style: none; }

/* Text column */
.zone-text-block {
    background: #FFFDF7;
    border: 1px solid var(--corbett-border);
    border-radius: 0 var(--corbett-radius) var(--corbett-radius) 0;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-shadow: var(--corbett-shadow-sm);
}
/* Reversed row — text block is on the left side */
.zone-detail-block.flex-row-reverse .zone-text-block {
    border-radius: var(--corbett-radius) 0 0 var(--corbett-radius);
}

.zone-text-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    color: #1E3A2B;
    margin: 0 0 14px;
    line-height: 1.2;
}
.zone-text-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #5C5B50;
    margin: 0 0 10px;
    text-align: justify;
}
.zone-text-block p:last-of-type { margin-bottom: 0; }

.zone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(30,58,43,.06);
    line-height: 1;
    margin-bottom: -8px;
}

/* Meta tags row at bottom of text block */
.zone-meta-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--corbett-border);
}

.zone-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #EEF7EE;
    color: #2E5641;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
    width: fit-content;
}
.zone-tag i {
    color: #C9860F;
    font-size: 12px;
}

/* ─── FAQ (Destination Page) ─────────────────────────────────────────── */
.faq-content {
    display: none;
}
.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #EEF1E6;
    color: #C9860F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}


/* =====================================================
   ATTRACTIONS PAGE
   ===================================================== */

/* ─── Stat Bar (5-column, shared across dest + attractions) ─────────── */
.wai-stat-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

/* ─── Attraction Cards (wai-acard) ───────────────────────────────────── */
.wai-acard {
    background: #FFFDF7;
    border: 1px solid rgba(30,58,43,.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(20,40,28,.08);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}
.wai-acard:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(20,40,28,.15) !important;
}
.wai-acard:hover img {
    transform: scale(1.08);
}

/* ─── Things To Do Cards (wai-todo-card) ─────────────────────────────── */
.wai-todo-card {
    background: #FFFDF7;
    border: 1px solid rgba(30,58,43,.08);
    border-radius: 20px;
    padding: 28px 26px 28px 34px;
    box-shadow: 0 10px 26px rgba(20,40,28,.06);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.wai-todo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14,59,46,.13) !important;
}

/* ─── River Cards (wai-river-card) ───────────────────────────────────── */
.wai-river-card {
    background: #FFFDF7;
    border: 1px solid rgba(30,58,43,.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(20,40,28,.06);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.wai-river-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14,59,46,.13) !important;
}
.wai-river-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A2B, #C9860F);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.wai-river-card:hover .wai-river-bar {
    transform: scaleX(1);
}

/* ─── Tourist Attraction Slider / Carousel ───────────────────────────── */
.touristattractions-slider {
    background: #2E463E;
    padding: 70px 0;
    overflow: hidden;
}
.touristattractions-title h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}
.touristattractions-title p {
    color: #d7dfd8;
    font-size: 16px;
    line-height: 1.8;
}
.touristattractions-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.touristattractions-subtitle span {
    width: 36px;
    height: 2px;
    background: #E0991F;
}
.touristattractions-subtitle small {
    color: #E0991F;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.touristattractions-carousel-inner { overflow: hidden; }
.touristattractions-carousel-track {
    display: flex;
    transition: .5s;
}
.touristattractions-carousel-item {
    min-width: 50%;
    padding: 12px;
    box-sizing: border-box;
}

.touristattractions-card {
    background: #FFFDF7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(20,40,28,.08);
    border: 1px solid rgba(30,58,43,.08);
    transition: .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.touristattractions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.touristattractions-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.touristattractions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}
.touristattractions-card:hover img { transform: scale(1.08); }

.badge-left,
.badge-right {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}
.badge-left {
    left: 15px;
    background: rgba(255,255,255,.95);
    color: #1E3A2B;
}
.badge-right {
    right: 15px;
    background: #1E3A2B;
    color: #E0991F;
}

.touristattractions-card-content {
    padding: 24px;
    flex: 1;
}
.touristattractions-card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: #1E3A2B;
}
.touristattractions-card-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5C5B50;
}
.touristattractions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.touristattractions-tags span {
    background: #EEF7EE;
    color: #2E5641;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}


/* =====================================================
   SAFARI PAGE  (cs- prefix classes)
   ===================================================== */

/* ─── Safari Hero ─────────────────────────────────────────────────────── */
.cs-hero {
    position: relative;
    background: linear-gradient(150deg, #3C6048, #1E3A2B 70%, #142A1F);
    min-height: 64vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.cs-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/images/background/hero_background.jpg') center/cover no-repeat;
    opacity: .28;
    mix-blend-mode: luminosity;
}
.cs-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 70% 10%, rgba(224,153,31,.18), rgba(224,153,31,0) 55%);
}
.cs-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(60px,9vw,120px) clamp(20px,5vw,72px) clamp(70px,8vw,110px);
    animation: waiRise .8s cubic-bezier(.2,.7,.3,1) both;
}
.cs-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(250,246,236,.8);
    margin-bottom: 18px;
}
.cs-hero__breadcrumb a { color: rgba(250,246,236,.8); text-decoration: none; }
.cs-hero__breadcrumb a:hover { color: var(--corbett-gold-light); }
.cs-hero__breadcrumb .sep { color: var(--corbett-gold); }
.cs-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(42px, 6.5vw, 90px);
    line-height: 1;
    letter-spacing: -.5px;
    margin: 0 0 16px;
    color: var(--corbett-cream);
    max-width: 18ch;
}
.cs-hero p {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: rgba(250,246,236,.88);
    max-width: 540px;
    margin: 0;
    font-weight: 500;
}
@keyframes waiRise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}

/* ─── Stat Bar ────────────────────────────────────────────────────────── */
.cs-statbar {
    position: relative;
    z-index: 10;
    max-width: 1180px;
    margin: -54px auto 0;
    padding: 0 clamp(20px,5vw,40px);
}
.cs-statbar__inner {
    background: var(--corbett-warm-white);
    border: 1px solid var(--corbett-border);
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(20,40,28,.16);
    padding: clamp(18px,2.4vw,28px) clamp(16px,2.4vw,32px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.cs-stat { padding: 6px 18px; border-right: 1px solid rgba(30,58,43,.10); }
.cs-stat:last-child { border-right: none; }
.cs-stat__label { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--corbett-gold-mid); font-weight: 800; margin-bottom: 7px; }
.cs-stat__val { font-size: 14.5px; font-weight: 700; color: var(--corbett-forest-mid); }

/* ─── Intro ──────────────────────────────────────────────────────────── */
.cs-intro { padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px) clamp(40px,5vw,70px); }
.cs-intro__body { max-width: 1240px; margin: 0 auto; }
.cs-intro p { font-size: 17px; line-height: 1.85; color: var(--corbett-text-muted); margin: 0 0 18px; font-weight: 500; }
.cs-intro p:last-child { margin-bottom: 0; }

/* ─── Safari Type Cards ──────────────────────────────────────────────── */
.cs-types { background: var(--corbett-cream-bg); padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px); }
.cs-types__grid { max-width: 1240px; margin: 0 auto; }
.cs-types__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }

.cs-tcard {
    background: var(--corbett-warm-white);
    border: 1px solid var(--corbett-border);
    border-radius: var(--corbett-radius);
    padding: 34px 30px;
    box-shadow: var(--corbett-shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.cs-tcard:hover { transform: translateY(-10px); box-shadow: var(--corbett-shadow-lg); }
.cs-tcard__icon {
    width: 58px;
    height: 58px;
    background: rgba(30,58,43,.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.cs-tcard__icon i { font-size: 24px; color: var(--corbett-forest-mid); }
.cs-tcard h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--corbett-forest-mid); margin: 0 0 10px; }
.cs-tcard p { font-size: 14.5px; color: var(--corbett-text-muted); line-height: 1.65; margin: 0 0 22px; flex: 1; }
.cs-tcard__specs { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--corbett-border); padding-top: 18px; }
.cs-tcard__specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(30,58,43,.05);
}
.cs-tcard__specs li:last-child { border-bottom: none; }
.cs-tcard__specs li span { color: var(--corbett-text-muted); }
.cs-tcard__specs li strong { color: var(--corbett-forest-mid); font-weight: 700; }

/* ─── Pricing Section ────────────────────────────────────────────────── */
.cs-pricing { padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px); }
.cs-pricing__inner { max-width: 1240px; margin: 0 auto; }
.cs-pricing__tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.cs-ptab {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--corbett-border);
    cursor: pointer;
    transition: all .25s;
    background: transparent;
    color: var(--corbett-forest-mid);
    font-family: 'Mulish', sans-serif;
}
.cs-ptab.active,
.cs-ptab:hover { background: var(--corbett-forest-mid); color: #fff; border-color: var(--corbett-forest-mid); }
.cs-ptab-content { display: none; }
.cs-ptab-content.active { display: block; }

.cs-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cs-price-card {
    background: var(--corbett-warm-white);
    border: 1px solid var(--corbett-border);
    border-radius: var(--corbett-radius);
    overflow: hidden;
    box-shadow: var(--corbett-shadow-sm);
}
.cs-price-card__head {
    background: var(--corbett-forest-mid);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.cs-price-card__head i { font-size: 22px; color: var(--corbett-gold-light); }
.cs-price-card__head h4 { margin: 0; color: #fff; font-size: 17px; font-weight: 700; }
.cs-price-table { width: 100%; border-collapse: collapse; }
.cs-price-table th {
    background: rgba(30,58,43,.06);
    padding: 11px 18px;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--corbett-gold-mid);
    font-weight: 800;
    text-align: left;
    border-bottom: 1px solid var(--corbett-border);
}
.cs-price-table td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--corbett-text-mid);
    border-bottom: 1px solid rgba(30,58,43,.05);
    vertical-align: top;
}
.cs-price-table tr:last-child td { border-bottom: none; font-weight: 700; color: var(--corbett-forest-mid); }
.cs-price-badge {
    display: inline-block;
    background: rgba(224,153,31,.15);
    color: var(--corbett-gold-mid);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 99px;
    margin-left: 6px;
}

/* Guide charges box */
.cs-guide-box {
    background: var(--corbett-warm-white);
    border: 1px solid var(--corbett-border);
    border-radius: var(--corbett-radius);
    padding: 28px 30px;
    box-shadow: var(--corbett-shadow-sm);
}
.cs-guide-box h4 { font-size: 16px; font-weight: 700; color: var(--corbett-forest-mid); margin: 0 0 16px; }
.cs-guide-list { list-style: none; padding: 0; margin: 0; }
.cs-guide-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--corbett-text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(30,58,43,.05);
}
.cs-guide-list li:last-child { border-bottom: none; }
.cs-guide-list li::before { content: '›'; color: var(--corbett-gold); font-size: 16px; line-height: 1.2; flex-shrink: 0; }

/* ─── Zones Section ──────────────────────────────────────────────────── */
.cs-zones { background: var(--corbett-cream-bg); padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px); }
.cs-zones__inner { max-width: 1240px; margin: 0 auto; }
.cs-zones__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.cs-zcard {
    background: var(--corbett-warm-white);
    border: 1px solid var(--corbett-border);
    border-radius: var(--corbett-radius);
    box-shadow: var(--corbett-shadow-sm);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.cs-zcard:hover { transform: translateY(-8px); box-shadow: var(--corbett-shadow-md); }
.cs-zcard__head {
    background: var(--corbett-forest-mid);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cs-zcard__head h3 { margin: 0; color: #fff; font-size: 17px; font-weight: 700; }
.cs-zcard__badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 99px;
    background: rgba(255,255,255,.15);
    color: var(--corbett-gold-light);
    border: 1px solid rgba(244,181,61,.3);
}
.cs-zcard__body { padding: 22px 24px; }
.cs-zcard__body p { font-size: 14px; color: var(--corbett-text-muted); line-height: 1.65; margin: 0 0 16px; }
.cs-zcard__meta { display: flex; flex-direction: column; gap: 8px; }
.cs-zcard__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(30,58,43,.05);
}
.cs-zcard__row:last-child { border-bottom: none; }
.cs-zcard__row span { color: var(--corbett-text-muted); }
.cs-zcard__row strong { color: var(--corbett-forest-mid); font-weight: 700; }

/* Zone extra collapse */
.cs-zcard__extra { display: none; }
.cs-zcard.open .cs-zcard__extra { display: block; }
.cs-zcard__extra p { margin-top: 14px; }
.cs-zcard__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--corbett-gold-mid);
    font-family: 'Mulish', sans-serif;
    padding: 0;
}
.cs-zcard__toggle:hover { color: var(--corbett-forest-mid); }

/* ─── Safari Timings ─────────────────────────────────────────────────── */
.cs-timings { padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px); }
.cs-timings__inner { max-width: 1240px; margin: 0 auto; }
.cs-timings__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 30px; }

.cs-timing-card {
    background: var(--corbett-warm-white);
    border: 1px solid var(--corbett-border);
    border-radius: var(--corbett-radius);
    overflow: hidden;
    box-shadow: var(--corbett-shadow-sm);
}
.cs-timing-card__head {
    padding: 16px 22px;
    background: var(--corbett-forest-mid);
    display: flex;
    align-items: center;
    gap: 12px;
}
.cs-timing-card__head i { font-size: 18px; color: var(--corbett-gold-light); }
.cs-timing-card__head h4 { margin: 0; color: #fff; font-size: 15px; font-weight: 700; }
.cs-timing-card__body { padding: 20px 22px; }
.cs-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30,58,43,.07);
}
.cs-slot:last-child { border-bottom: none; }
.cs-slot__label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--corbett-text-muted); font-weight: 600; }
.cs-slot__label i { color: var(--corbett-gold); font-size: 13px; }
.cs-slot__time { font-size: 13.5px; font-weight: 700; color: var(--corbett-forest-mid); }

.cs-timings__note {
    background: rgba(224,153,31,.10);
    border: 1px solid rgba(224,153,31,.28);
    border-radius: 12px;
    padding: 16px 22px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--corbett-text-mid);
    line-height: 1.65;
}
.cs-timings__note i { color: var(--corbett-gold-mid); font-size: 17px; flex-shrink: 0; margin-top: 1px; }

/* ─── FAQ (Safari Page) ──────────────────────────────────────────────── */
.cs-faq { background: var(--corbett-cream-bg); padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px); }
.cs-faq__inner { max-width: 900px; margin: 0 auto; }
.cs-faq .accordion-button {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--corbett-forest-mid);
    background: var(--corbett-warm-white);
    border-radius: var(--corbett-radius-sm) !important;
}
.cs-faq .accordion-button:not(.collapsed) {
    background: var(--corbett-forest-mid);
    color: #fff;
    box-shadow: none;
}
.cs-faq .accordion-button:not(.collapsed)::after { filter: invert(1); }
.cs-faq .accordion-item {
    border: 1px solid var(--corbett-border);
    border-radius: var(--corbett-radius-sm) !important;
    overflow: hidden;
    margin-bottom: 12px;
}
.cs-faq .accordion-body { font-size: 15px; color: var(--corbett-text-muted); line-height: 1.7; }

/* ─── CTA Section (Safari Page) ─────────────────────────────────────── */
.cs-cta {
    padding: clamp(60px,7vw,100px) clamp(20px,5vw,72px);
    background: linear-gradient(150deg, #3C6048, #1E3A2B 70%, #142A1F);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(224,153,31,.22), transparent 65%);
    pointer-events: none;
}
.cs-cta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cs-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--corbett-cream); margin: 0 0 14px; }
.cs-cta p { font-size: 17px; color: rgba(250,246,236,.82); line-height: 1.65; margin: 0 0 36px; }
.cs-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--corbett-gold);
    color: var(--corbett-forest-mid);
    border: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(224,153,31,.3);
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.cs-btn-primary:hover { background: #CE8A12; color: var(--corbett-forest-mid); transform: translateY(-2px); }

.cs-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.12);
    color: var(--corbett-cream);
    border: 1px solid rgba(255,255,255,.3);
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s;
}
.cs-btn-secondary:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); }


/* =====================================================
   RESPONSIVE — All 3 Corbett sub-pages
   ===================================================== */

/* ── Tablet (≤991px) ─────────────────────────────── */
@media (max-width: 991px) {
    .cs-statbar__inner,
    .wai-stat-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .cs-stat:nth-child(3) { border-right: none; }
    .cs-stat:nth-child(n+4) { border-top: 1px solid rgba(30,58,43,.10); border-right: 1px solid rgba(30,58,43,.10); }
    .cs-stat:nth-child(5) { border-right: none; }

    .cs-types__cards,
    .cs-zones__grid,
    .cs-timings__grid { grid-template-columns: 1fr 1fr; }

    .cs-price-grid { grid-template-columns: 1fr; }

    .wai-grid-3 { grid-template-columns: 1fr 1fr !important; }

    /* Zone blocks stack at tablet — image on top, text below */
    .zone-card {
        min-height: 260px;
        border-radius: var(--corbett-radius) var(--corbett-radius) 0 0 !important;
    }
    .zone-img { min-height: 260px; }

    .zone-text-block,
    .zone-detail-block.flex-row-reverse .zone-text-block {
        border-radius: 0 0 var(--corbett-radius) var(--corbett-radius) !important;
        height: auto;
    }
    /* Override Bootstrap flex-row-reverse on tablet so image always comes first */
    .zone-detail-block.flex-row-reverse {
        flex-direction: row !important;
    }
}

/* ── Mobile (≤768px) ─────────────────────────────── */
@media (max-width: 768px) {
    .cs-statbar__inner,
    .wai-stat-grid-5 { grid-template-columns: 1fr 1fr !important; }
    .cs-stat,
    .wai-stat-grid-5 > div {
        border-right: none !important;
        border-bottom: 1px solid rgba(30,58,43,.08);
    }
    .cs-stat:first-child,
    .wai-stat-grid-5 > div:first-child { border-top: none !important; }

    .cs-types__cards,
    .cs-zones__grid,
    .cs-timings__grid { grid-template-columns: 1fr; }

    .wai-grid-3 { grid-template-columns: 1fr !important; }

    .touristattractions-carousel-item { min-width: 100%; }
    .touristattractions-title { text-align: center; margin-bottom: 40px; }
    .touristattractions-title h2 { font-size: 34px; }

    .zone-text-block,
    .zone-detail-block.flex-row-reverse .zone-text-block {
        border-radius: 0 0 var(--corbett-radius) var(--corbett-radius) !important;
        padding: 24px 20px;
    }
    .zone-card {
        min-height: 220px;
        border-radius: var(--corbett-radius) var(--corbett-radius) 0 0 !important;
    }
    .zone-img { min-height: 220px; }
    .zone-text-block h3 { font-size: 20px; }
    .zone-meta-tags { gap: 6px; }

    .cs-cta__btns { flex-direction: column; align-items: stretch; }
    .cs-btn-primary,
    .cs-btn-secondary { justify-content: center; }
}

/* ── Small mobile (≤480px) ───────────────────────── */
@media (max-width: 480px) {
    .cs-hero h1 { font-size: 36px; }
    .cs-tcard { padding: 24px 20px; }
    .cs-price-table th,
    .cs-price-table td { padding: 10px 12px; font-size: 13px; }
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
 
.footer {
    background: linear-gradient(180deg, #14342a 0%, #102a22 40%, #0d1b0f 100%);
    color: #f8f9fa;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(224,153,31,.25);
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224,153,31,.6), transparent);
}
 
/* ─── Footer Logo (image, light box since logo art is dark) ──────── */
.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}
.footer-brand img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: #FAF6EC;
    border-radius: 12px;
    /*padding: 8px 14px;*/
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
 
.footer-about p {
    color: rgba(255,255,255,.7);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.75;
}
 
.footer h5 {
    font-family: 'Mulish', 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f8f9fa;
    position: relative;
    padding-bottom: 10px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #c9a227;
    border-radius: 2px;
}
 
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14.5px;
    transition: color .25s, padding-left .25s;
}
.footer-links a:hover {
    color: #c9a227;
    padding-left: 5px;
}
.footer-links i {
    font-size: 0.75rem;
    color: #c9a227;
}
 
.footer-newsletter p {
    color: rgba(255,255,255,.7);
    margin-bottom: 20px;
}
 
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}
.social-links a {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f9fa;
    font-size: 1.05rem;
    transition: all .3s ease;
    text-decoration: none;
    flex-shrink: 0;
}
.social-links a:hover {
    background: #c9a227;
    color: #1a1a1a;
    transform: translateY(-5px);
}
 
.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,.6);
    margin: 0;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: #c9a227;
    text-decoration: none;
}
.footer-bottom a:hover { text-decoration: underline; }
 
/* ─── Back to Top Button ──────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2d5a27;
    color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #c9a227;
    color: #1a1a1a;
    transform: translateY(-5px);
}
 
/* ─── WhatsApp Floating Button ────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    align-items: center;
    padding: 5px;
    z-index: 999;
}
.whatsapp-float a {
    display: flex;
    margin-left: 4px;
}
.whatsapp-float img {
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: transform .25s ease;
    width: 50px;
    height: 50px;
}
.whatsapp-float a:hover img {
    transform: scale(1.08);
}
 
/* ─── Footer Responsive ───────────────────────────────────────────── */
 
/* Tablet (≤991px) */
@media (max-width: 991px) {
    .footer { padding: 60px 0 0; }
    .footer-about p { margin-bottom: 20px; text-align:start; }
    .footer-brand img { height: 60px;}
}
 
/* Mobile (≤768px) — columns stack, everything centers */
@media (max-width: 768px) {
    .footer { text-align: center; padding: 50px 0 0; }
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 { margin-bottom: 36px !important; }
    .footer-brand { justify-content: start; width: 100%;}
    .footer-about p { max-width: 420px; margin: 0 auto 20px; text-align:start;}
    .footer h5 { text-align: start; }
    .footer h5::after { left: 10%; transform: translateX(-50%); }
    .footer-links a { justify-content: start; }
    .social-links { justify-content: start; }
    .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1rem; }
    .whatsapp-float { right: 16px; bottom: 72px; }
    .whatsapp-float img { width: 42px; height: 42px; }
}