/* ============================================================
   HOME PAGE REDESIGN — Modern, Clean UI Overrides
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --rd-primary: #FF4B68;
    --rd-primary-dark: #e63356;
    --rd-secondary: #1a1a2e;
    --rd-accent: #f8a034;
    --rd-bg-light: #f7f8fc;
    --rd-bg-warm: #fef9f3;
    --rd-text-dark: #1a1a2e;
    --rd-text-medium: #555;
    --rd-text-light: #888;
    --rd-white: #ffffff;
    --rd-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --rd-shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --rd-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --rd-radius: 16px;
    --rd-radius-sm: 10px;
    --rd-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global Section Heading Overrides ───────────────────────── */
body#b2i-css-home .content-heading {
    text-align: center;
    padding-bottom: 40px;
}

body#b2i-css-home .main-heading.main-headingCustom {
    font-family: 'Poppins', sans-serif;
    font-size: 36px !important;
    font-weight: 700;
    color: var(--rd-text-dark) !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
}

body#b2i-css-home .main-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--rd-text-medium);
    max-width: 700px;
    margin: 0 auto;
    display: block;
}

body#b2i-css-home .seperator {
    border-bottom: none;
    padding-bottom: 0;
}
body#b2i-css-home .seperator:before {
    display: none;
}

/* Kicker text above headings */
.rd-kicker {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rd-primary);
    margin-bottom: 10px;
}

/* ── Search Section Enhancement ─────────────────────────────── */
body#b2i-css-home .b2india_tour_find_block {
    position: relative;
    z-index: 10;
}

body#b2i-css-home .b2india_trip_form {
    background: var(--rd-white);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow-md);
    padding: 24px 30px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* ── Top Tours Section ──────────────────────────────────────── */
body#b2i-css-home .b2i_top_tour_content-block {
    background: var(--rd-bg-light);
    padding: 80px 0;
}

body#b2i-css-home .read-more-outer {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

body#b2i-css-home .read-more-sec {
    font-family: 'Poppins', sans-serif;
    color: var(--rd-text-medium);
    font-size: 15px;
    line-height: 1.7;
}

body#b2i-css-home a.readmorelnk {
    color: var(--rd-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--rd-transition);
}
body#b2i-css-home a.readmorelnk:hover {
    color: var(--rd-primary-dark);
}

/* ── Tour Card Enhancements ─────────────────────────────────── */
body#b2i-css-home .tour-showcase-card {
    border-radius: var(--rd-radius) !important;
    overflow: hidden;
    box-shadow: var(--rd-shadow-sm);
    transition: var(--rd-transition);
    border: 1px solid rgba(0,0,0,0.04);
    background: var(--rd-white);
}
body#b2i-css-home .tour-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rd-shadow-lg);
}

body#b2i-css-home .tour-showcase-img {
    border-radius: 0 !important;
    transition: transform 0.5s ease;
}
body#b2i-css-home .tour-showcase-card:hover .tour-showcase-img {
    transform: scale(1.05);
}

body#b2i-css-home .tour-showcase-cta {
    background: var(--rd-primary) !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 600;
    transition: var(--rd-transition);
}
body#b2i-css-home .tour-showcase-cta:hover {
    background: var(--rd-primary-dark) !important;
    transform: translateX(3px);
}

/* ── Helpline / Special Block ───────────────────────────────── */
body#b2i-css-home .special-block {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 28px 20px;
    margin: 0;
    border: none;
    position: relative;
    overflow: hidden;
}
body#b2i-css-home .special-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,75,104,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
body#b2i-css-home .special-block .special-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}
body#b2i-css-home .special-block .special-text a {
    background: var(--rd-primary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 12px;
    display: inline-block;
    transition: var(--rd-transition);
}
body#b2i-css-home .special-block .special-text a:hover {
    background: var(--rd-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,75,104,0.3);
    color: #fff;
}

/* ── Theme Section ──────────────────────────────────────────── */
body#b2i-css-home .adventure-holder.gallery-home-holder {
    padding: 20px 0 0;
}

body#b2i-css-home .gallery-list.gallery-with-icon li {
    padding: 8px;
}

body#b2i-css-home .gallery-list.gallery-with-icon li a {
    border-radius: var(--rd-radius-sm) !important;
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: var(--rd-shadow-sm);
    transition: var(--rd-transition);
}
body#b2i-css-home .gallery-list.gallery-with-icon li a:hover {
    transform: translateY(-4px);
    box-shadow: var(--rd-shadow-md);
}

body#b2i-css-home .gallery-list.gallery-with-icon li a img {
    transition: transform 0.5s ease;
    height: 200px;
    object-fit: cover;
}
body#b2i-css-home .gallery-list.gallery-with-icon li a:hover img {
    transform: scale(1.08);
}

body#b2i-css-home .gallery-list .info {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body#b2i-css-home .adventure-holder .text-block .centered {
    padding: 40px 20px;
}

body#b2i-css-home .adventure-holder .intro-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--rd-text-dark);
    margin-bottom: 16px;
}

body#b2i-css-home .adventure-holder .btn-default.btn-shadow {
    background: var(--rd-primary);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--rd-transition);
    box-shadow: 0 4px 15px rgba(255,75,104,0.25);
}
body#b2i-css-home .adventure-holder .btn-default.btn-shadow:hover {
    background: var(--rd-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,75,104,0.35);
}

/* ── Travel Safe / Counter Block ────────────────────────────── */
body#b2i-css-home aside.count-block {
    margin-top: 0;
    background: var(--rd-white);
}

body#b2i-css-home .travel-safe-bg {
    background: var(--rd-bg-light);
    padding: 60px 0 40px;
}

body#b2i-css-home .travel-safe-bg .container {
    text-align: center;
}

body#b2i-css-home .travel-safe-bg h3.main-headingCustom {
    text-align: center;
}

body#b2i-css-home .travel-safe-desc {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: var(--rd-text-medium);
    line-height: 1.7;
}

body#b2i-css-home .col-xs-6.col-md-3.block-1.blockBox {
    background: var(--rd-white);
    border: none;
    border-radius: var(--rd-radius-sm);
    box-shadow: var(--rd-shadow-sm);
    margin: 8px;
    transition: var(--rd-transition);
    padding: 8px;
}
body#b2i-css-home .col-xs-6.col-md-3.block-1.blockBox:hover {
    transform: translateY(-4px);
    box-shadow: var(--rd-shadow-md);
}

body#b2i-css-home .count-block .holder {
    margin: 20px 10px;
}

body#b2i-css-home .travel-button {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 22px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

body#b2i-css-home .travel-button a {
    background: var(--rd-primary);
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--rd-transition);
}
body#b2i-css-home .travel-button a:hover {
    background: var(--rd-primary-dark);
}

/* ── Featured Promotions ────────────────────────────────────── */
body#b2i-css-home .featured-content.adventure-holder {
    background: var(--rd-white);
    padding: 0;
}

body#b2i-css-home .featured-content .same-height {
    min-height: 450px;
}

body#b2i-css-home .featured-content .text-block {
    display: flex;
    align-items: center;
    background: var(--rd-bg-light);
}

body#b2i-css-home .featured-content .centered {
    padding: 50px 60px;
    text-align: left;
}

body#b2i-css-home .featured-content .intro-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--rd-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

body#b2i-css-home .featured-content .intro {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--rd-text-medium);
    margin-bottom: 24px;
}

body#b2i-css-home .featured-content .btn-primary.btn-lg {
    background: var(--rd-primary);
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--rd-transition);
    box-shadow: 0 4px 15px rgba(255,75,104,0.25);
}
body#b2i-css-home .featured-content .btn-primary.btn-lg:hover {
    background: var(--rd-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,75,104,0.35);
}

body#b2i-css-home .featured-content .promotionImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Browse Block ───────────────────────────────────────────── */
body#b2i-css-home .browse-block {
    display: flex;
    gap: 0;
    overflow: visible;
}

body#b2i-css-home .browse-block .column {
    flex: 1;
    position: relative;
    overflow: hidden;
}

body#b2i-css-home .browse-block a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--rd-transition);
}

body#b2i-css-home .browse-block .column.browse-destination a {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
body#b2i-css-home .browse-block .column.browse-destination a:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

body#b2i-css-home .browse-block .column.browse-adventures a {
    background: linear-gradient(135deg, var(--rd-primary) 0%, var(--rd-primary-dark) 100%);
}
body#b2i-css-home .browse-block .column.browse-adventures a:hover {
    background: linear-gradient(135deg, var(--rd-primary-dark) 0%, #c4223e 100%);
}

body#b2i-css-home .browse-block a span {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 100px;
}

/* ── Popular Destinations Section ───────────────────────────── */
body#b2i-css-home .b2i_home_top_destinations_content-block {
    padding: 80px 0;
    background: var(--rd-white);
}

body#b2i-css-home #popular-destination-carousel .article {
    border-radius: var(--rd-radius) !important;
    overflow: hidden;
    box-shadow: var(--rd-shadow-sm);
    transition: var(--rd-transition);
    min-height: 420px;
    border: 1px solid rgba(0,0,0,0.04);
}
body#b2i-css-home #popular-destination-carousel .article:hover {
    transform: translateY(-8px);
    box-shadow: var(--rd-shadow-lg);
}

body#b2i-css-home #popular-destination-carousel .article .img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
}

body#b2i-css-home #popular-destination-carousel .article .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
body#b2i-css-home #popular-destination-carousel .article:hover .img-wrap img {
    transform: scale(1.08);
}

body#b2i-css-home #popular-destination-carousel .article .img-caption {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 2;
}

body#b2i-css-home #popular-destination-carousel .article .h3title {
    padding: 20px 20px 8px;
    font-family: 'Poppins', sans-serif;
}
body#b2i-css-home #popular-destination-carousel .article .h3title b {
    font-weight: 600;
}
body#b2i-css-home #popular-destination-carousel .article .h3title a {
    color: var(--rd-text-dark);
    font-size: 15px;
    line-height: 1.5;
}

body#b2i-css-home #popular-destination-carousel .article .btn-default {
    margin: 8px 20px 20px;
    background: var(--rd-primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    transition: var(--rd-transition);
}
body#b2i-css-home #popular-destination-carousel .article .btn-default:hover {
    background: var(--rd-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,75,104,0.3);
    letter-spacing: 0.5px;
}

/* ── Testimonials Section ───────────────────────────────────── */
body#b2i-css-home #testimonial-home-page {
    background: var(--rd-bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
body#b2i-css-home #testimonial-home-page.parallax:before {
    background: var(--rd-bg-light);
}

body#b2i-css-home .testimonial-home-heading {
    margin-bottom: 50px;
    text-align: center;
}

body#b2i-css-home .testimonial-home-kicker {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rd-primary);
    margin-bottom: 10px;
}

body#b2i-css-home .testimonial-home-heading .main-headingCustom {
    font-family: 'Poppins', sans-serif;
    font-size: 36px !important;
    font-weight: 700;
    color: var(--rd-text-dark) !important;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

body#b2i-css-home .testimonial-card {
    background: var(--rd-white);
    border-radius: var(--rd-radius);
    padding: 40px 36px 32px;
    box-shadow: var(--rd-shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    margin: 10px 15px;
    transition: var(--rd-transition);
}
body#b2i-css-home .testimonial-card:hover {
    box-shadow: var(--rd-shadow-md);
}

body#b2i-css-home .testimonial-card__icon-wrap {
    margin-bottom: 20px;
}

body#b2i-css-home .testimonial-user-icon {
    font-size: 32px;
    border: 2px solid var(--rd-primary);
    padding: 14px;
    border-radius: 50%;
    color: var(--rd-primary);
    display: inline-block;
}

body#b2i-css-home .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(255, 75, 104, 0.08);
    line-height: 1;
}

body#b2i-css-home .testimonial-quote {
    border: none;
    padding: 0;
    margin: 0;
    font-style: normal;
}

body#b2i-css-home .testimonial-quote p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--rd-text-medium);
    margin: 0;
}

body#b2i-css-home .testimonial-card__meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

body#b2i-css-home .testimonial-card__meta cite {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--rd-text-dark);
    font-style: normal;
}

/* ── Guide / Travel Experts Section ─────────────────────────── */
body#b2i-css-home .content-block.guide-sub {
    padding: 80px 0;
    background: var(--rd-white);
}

body#b2i-css-home .content-block.guide-sub .holder {
    border-radius: var(--rd-radius);
    overflow: hidden;
    box-shadow: var(--rd-shadow-sm);
    transition: var(--rd-transition);
}
body#b2i-css-home .content-block.guide-sub .holder:hover {
    transform: translateY(-6px);
    box-shadow: var(--rd-shadow-md);
}

body#b2i-css-home .content-block.guide-sub .caption {
    padding: 16px 20px;
}

body#b2i-css-home .content-block.guide-sub .caption h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--rd-text-dark);
}

body#b2i-css-home .content-block.guide-sub .designation {
    font-family: 'Poppins', sans-serif;
    color: var(--rd-text-light);
    font-size: 13px;
}

/* ── Partners Section ───────────────────────────────────────── */
body#b2i-css-home .partner-block.rd-partner-block {
    padding: 88px 0 !important;
    background:
        radial-gradient(circle at top left, rgba(255,75,104,0.10) 0%, transparent 32%),
        radial-gradient(circle at right bottom, rgba(248,160,52,0.16) 0%, transparent 30%),
        linear-gradient(180deg, #fff8f1 0%, #f7f8fc 48%, #ffffff 100%);
    border-top: none;
    position: relative;
    overflow: hidden;
}

body#b2i-css-home .rd-partner-shell {
    position: relative;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(25, 36, 62, 0.07);
    border-radius: 32px;
    padding: 42px 38px 36px;
    box-shadow: 0 24px 60px rgba(18, 29, 50, 0.08);
    backdrop-filter: blur(10px);
}

body#b2i-css-home .rd-partner-heading {
    padding-bottom: 20px;
}

body#b2i-css-home #partner-slide.rd-partner-grid.b2i-carousel .b2i-carousel__viewport {
    padding: 8px 6px 4px;
    margin: 0 -6px;
    cursor: default;
}

body#b2i-css-home #partner-slide.rd-partner-grid .b2i-carousel__slide {
    display: flex;
    height: auto;
}

body#b2i-css-home .rd-partner-item {
    width: 100%;
    height: 100%;
}

body#b2i-css-home .partner-block .rd-partner-link {
    position: relative;
    border-bottom: none;
    padding: 28px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(23, 43, 77, 0.08);
    box-shadow: 0 18px 34px rgba(24, 36, 56, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body#b2i-css-home .partner-block .rd-partner-link:before {
    display: none;
}

body#b2i-css-home .partner-block .rd-partner-link:after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 16px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,75,104,0.9), rgba(248,160,52,0.9));
    transform: scaleX(0.32);
    transform-origin: center;
    opacity: 0.85;
    transition: transform 0.35s ease;
}

body#b2i-css-home .partner-block .rd-partner-link:hover {
    transform: translateY(-8px);
    border-color: rgba(255,75,104,0.18);
    box-shadow: 0 26px 44px rgba(18, 29, 50, 0.12);
}

body#b2i-css-home .partner-block .rd-partner-link:hover:after {
    transform: scaleX(1);
}

body#b2i-css-home .partner-block .rd-partner-logo {
    max-height: 62px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.72;
    transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

body#b2i-css-home .partner-block .rd-partner-link:hover .rd-partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
    display: inline-block;
}

/* ── Newsletter Section ─────────────────────────────────────── */
body#b2i-css-home .wrapper.newletter.rd-newsletter-section {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.42) 0%, transparent 24%),
        radial-gradient(circle at right bottom, rgba(210,154,76,0.16) 0%, transparent 30%),
        linear-gradient(135deg, #fff8ed 0%, #fdf2dd 45%, #f4dfbe 100%);
    padding: 92px 20px;
    position: relative;
    overflow: hidden;
}

body#b2i-css-home .wrapper.newletter.rd-newsletter-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(196,132,43,0.20) 0%, transparent 70%);
    border-radius: 50%;
}
body#b2i-css-home .wrapper.newletter.rd-newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(140,90,32,0.12) 0%, transparent 72%);
    border-radius: 50%;
}

body#b2i-css-home .rd-newsletter-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 36px;
    align-items: center;
    padding: 46px 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, #fff8ea 0%, #f6e4bf 52%, #e9c98e 100%);
    border: 1px solid rgba(140, 90, 32, 0.10);
    box-shadow: 0 30px 60px rgba(94, 65, 28, 0.14);
    overflow: hidden;
}

body#b2i-css-home .rd-newsletter-shell::before {
    content: '';
    position: absolute;
    inset: auto auto -120px -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.48) 0%, transparent 70%);
}

body#b2i-css-home .rd-newsletter-shell::after {
    content: '';
    position: absolute;
    inset: 24px 24px auto auto;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    border: 1px solid rgba(140, 90, 32, 0.12);
    transform: rotate(18deg);
}

body#b2i-css-home .rd-newsletter-copy,
body#b2i-css-home .rd-newsletter-card {
    position: relative;
    z-index: 1;
}

body#b2i-css-home .rd-newsletter-copy {
    max-width: 560px;
}

body#b2i-css-home .rd-newsletter-heading {
    margin-bottom: 18px;
}

body#b2i-css-home .rd-newsletter-kicker {
    color: rgba(122, 78, 32, 0.72);
    margin-bottom: 12px;
}

body#b2i-css-home .rd-newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px !important;
    font-weight: 700;
    color: #252c38;
    line-height: 1.1;
    margin-bottom: 0;
    text-align: left;
}

body#b2i-css-home .rd-newsletter-text {
    margin: 0 0 26px;
    color: rgba(37, 44, 56, 0.82);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.85;
}

body#b2i-css-home .rd-newsletter-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body#b2i-css-home .rd-newsletter-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(122, 78, 32, 0.12);
    background: rgba(255,255,255,0.62);
    color: #5d4a2f;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

body#b2i-css-home .rd-newsletter-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(140, 90, 32, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(94, 65, 28, 0.12);
}

body#b2i-css-home .rd-newsletter-form {
    max-width: none;
    margin: 0;
    text-align: left;
}

body#b2i-css-home .rd-newsletter-form .input-holder {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    border: none;
}

body#b2i-css-home .rd-newsletter-form .form-control {
    background: #fffdfa !important;
    border: 1px solid rgba(140, 90, 32, 0.16) !important;
    border-radius: 18px;
    color: var(--rd-text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 20px;
    height: auto;
}

body#b2i-css-home .rd-newsletter-form .form-control:focus {
    box-shadow: 0 0 0 4px rgba(196,132,43,0.10);
    border-color: rgba(196,132,43,0.46) !important;
}

body#b2i-css-home .rd-newsletter-form .form-control::placeholder {
    color: #8b816f;
}

body#b2i-css-home .rd-newsletter-form .form-control.error {
    border-color: #df4f4f !important;
    box-shadow: 0 0 0 4px rgba(223,79,79,0.10);
}

body#b2i-css-home .rd-newsletter-form input[type="submit"] {
    background: linear-gradient(135deg, #8c5a20 0%, #c68a34 100%);
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 16px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    width: 100%;
    box-shadow: 0 16px 30px rgba(140,90,32,0.18);
}

body#b2i-css-home .rd-newsletter-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #7a4e20 0%, #b6782a 100%);
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(122,78,32,0.24);
}

body#b2i-css-home .rd-newsletter-feedback {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

body#b2i-css-home .rd-newsletter-error-slot {
    min-height: 22px;
}

body#b2i-css-home .rd-newsletter-form .info {
    color: rgba(72, 60, 42, 0.72);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    display: block;
}

body#b2i-css-home .rd-newsletter-form #subscriberForm_loder {
    position: static;
    right: auto;
    top: auto;
    width: 32px;
    max-width: 32px;
    margin-top: 0;
}

body#b2i-css-home .rd-newsletter-form .rd-newsletter-error-slot label.error,
body#b2i-css-home .rd-newsletter-form .rd-newsletter-error-slot div.error {
    position: static;
    margin: 0;
    padding: 0;
    color: #d93b3b;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    background: transparent;
}

body#b2i-css-home .rd-newsletter-form label.error {
    position: static;
    display: block;
    margin: 0;
    padding: 0;
    color: #d93b3b;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    background: transparent;
}

/* ── Owl Carousel Dots Override ─────────────────────────────── */
body#b2i-css-home .owl-dots {
    text-align: center;
    margin-top: 30px;
}

body#b2i-css-home .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: var(--rd-transition);
}

body#b2i-css-home .owl-dot.active span {
    background: var(--rd-primary);
    width: 28px;
    border-radius: 10px;
}

/* ── Safe Logo alignment fix ────────────────────────────────── */
body#b2i-css-home .safe-logo {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    .content-block.content-spacing.b2i_top_tour_content-block .tour-showcase-footer {
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: space-between;
        gap: 12px;
    }

    .content-block.content-spacing.b2i_top_tour_content-block .tour-showcase-price {
        width: auto;
        text-align: left;
        margin-right: auto;
    }

    .content-block.content-spacing.b2i_top_tour_content-block .tour-showcase-cta {
        align-self: flex-end;
    }

    body#b2i-css-home .main-heading.main-headingCustom {
        font-size: 28px !important;
    }

    body#b2i-css-home .testimonial-home-heading .main-headingCustom {
        font-size: 28px !important;
    }

    body#b2i-css-home .featured-content .centered {
        padding: 30px 24px;
    }

    body#b2i-css-home .featured-content .intro-heading {
        font-size: 24px;
    }

    body#b2i-css-home .b2i_home_top_destinations_content-block,
    body#b2i-css-home .b2i_top_tour_content-block,
    body#b2i-css-home #testimonial-home-page,
    body#b2i-css-home .content-block.guide-sub {
        padding: 50px 0;
    }

    body#b2i-css-home .tour-showcase-footer {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;
    }

    body#b2i-css-home .tour-showcase-price {
        width: auto;
        text-align: left;
        align-self: auto;
        margin-right: auto;
    }

    body#b2i-css-home .tour-showcase-cta {
        align-self: flex-end;
    }

    body#b2i-css-home .partner-block.rd-partner-block {
        padding: 72px 0 !important;
    }

    body#b2i-css-home .rd-partner-shell {
        padding: 34px 28px 30px;
        border-radius: 28px;
    }

    body#b2i-css-home .partner-block .rd-partner-link {
        min-height: 132px;
        padding: 24px 18px;
    }

    body#b2i-css-home .wrapper.newletter.rd-newsletter-section {
        padding: 68px 18px;
    }

    body#b2i-css-home .rd-newsletter-shell {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 36px 30px;
    }

    body#b2i-css-home .rd-newsletter-copy {
        max-width: none;
    }

    body#b2i-css-home .rd-newsletter-title {
        font-size: 34px !important;
    }
}

@media (max-width: 767px) {
    body#b2i-css-home .main-heading.main-headingCustom {
        font-size: 24px !important;
        letter-spacing: 0;
    }

    body#b2i-css-home .testimonial-home-heading .main-headingCustom {
        font-size: 24px !important;
    }

    body#b2i-css-home .browse-block {
        flex-direction: column;
    }

    body#b2i-css-home .browse-block a span {
        line-height: 70px;
    }

    body#b2i-css-home .featured-content .centered {
        padding: 24px 16px;
    }

    body#b2i-css-home .testimonial-card {
        margin: 8px;
        padding: 28px 24px 24px;
    }

    body#b2i-css-home .b2i_home_top_destinations_content-block,
    body#b2i-css-home .b2i_top_tour_content-block,
    body#b2i-css-home #testimonial-home-page,
    body#b2i-css-home .content-block.guide-sub {
        padding: 40px 0;
    }

    body#b2i-css-home .gallery-list.gallery-with-icon li a img {
        height: 130px;
    }

    body#b2i-css-home .adventure-holder .b2india_theme_list li {
        width: 100%;
    }

    body#b2i-css-home .partner-block.rd-partner-block {
        padding: 56px 0 !important;
    }

    body#b2i-css-home .rd-partner-shell {
        padding: 28px 18px 22px;
        border-radius: 22px;
    }

    body#b2i-css-home .partner-block .rd-partner-link {
        min-height: 118px;
        border-radius: 20px;
        padding: 22px 16px;
    }

    body#b2i-css-home .wrapper.newletter.rd-newsletter-section {
        padding: 48px 16px;
    }

    body#b2i-css-home .rd-newsletter-shell {
        gap: 22px;
        padding: 28px 18px;
        border-radius: 24px;
    }

    body#b2i-css-home .rd-newsletter-shell::after {
        display: none;
    }

    body#b2i-css-home .rd-newsletter-title {
        font-size: 28px !important;
    }

    body#b2i-css-home .rd-newsletter-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    body#b2i-css-home .rd-newsletter-highlights span {
        width: 100%;
        justify-content: center;
    }

    body#b2i-css-home .rd-newsletter-card {
        padding: 18px;
        border-radius: 22px;
    }

    body#b2i-css-home .rd-newsletter-form .input-holder {
        gap: 12px;
    }

    body#b2i-css-home .rd-newsletter-form .form-control,
    body#b2i-css-home .rd-newsletter-form input[type="submit"] {
        border-radius: 16px;
    }

    body#b2i-css-home .special-block .special-text {
        font-size: 14px;
        line-height: 1.6;
    }
    body#b2i-css-home .special-block .special-text a {
        margin-left: 0;
        margin-top: 10px;
    }
}
