/* =====================================================
   BLACKBUCK ACCOMMODATION PAGE
===================================================== */

.bb-accommodation-page {
    --bb-orange: #f7961d;
    --bb-orange-dark: #dd7a00;
    --bb-green: #243526;
    --bb-green-light: #405a43;
    --bb-dark: #162118;
    --bb-text: #5f685f;
    --bb-light: #f5f6f1;
    --bb-white: #ffffff;
    --bb-border: rgba(31, 50, 34, 0.12);
    overflow: hidden;
}

.bb-accommodation-page *,
.bb-accommodation-page *::before,
.bb-accommodation-page *::after {
    box-sizing: border-box;
}

.bb-accommodation-page img {
    display: block;
    max-width: 100%;
}


/* =====================================================
   BANNER
===================================================== */

.bb-inner-banner {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bb-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 25, 14, 0.88) 0%,
            rgba(10, 25, 14, 0.62) 52%,
            rgba(10, 25, 14, 0.25) 100%);
}

.bb-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    color: var(--bb-white);
}

.bb-banner-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    color: var(--bb-orange);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bb-banner-label::before {
    content: "";
    width: 45px;
    height: 2px;
    background: var(--bb-orange);
}

.bb-banner-content h1 {
    margin: 0 0 24px;
    color: var(--bb-white);
    font-size: clamp(58px, 7vw, 92px);
    line-height: 1;
}

.bb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bb-breadcrumb a,
.bb-breadcrumb span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    text-decoration: none;
}

.bb-breadcrumb a:hover {
    color: var(--bb-orange);
}

.bb-breadcrumb i {
    color: var(--bb-orange);
    font-size: 12px;
}

.bb-banner-shape {
    position: absolute;
    right: -120px;
    bottom: -130px;
    width: 400px;
    height: 400px;
    border: 70px solid rgba(247, 150, 29, 0.16);
    border-radius: 50%;
}


/* =====================================================
   INTRO SECTION
===================================================== */

.bb-intro-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(247, 150, 29, 0.1),
            transparent 27%),
        var(--bb-white);
}

.bb-intro-gallery {
    position: relative;
    min-height: 610px;
    padding: 0 70px 75px 0;
}

.bb-main-image {
    height: 560px;
    overflow: hidden;
    border-radius: 5px;
}

.bb-main-image img,
.bb-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 290px;
    padding: 9px;
    overflow: hidden;
    background: var(--bb-white);
    border-radius: 5px;
    box-shadow: 0 25px 70px rgba(24, 42, 27, 0.19);
}

.bb-small-image img {
    border-radius: 3px;
}

.bb-floating-badge {
    position: absolute;
    left: -30px;
    bottom: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    color: var(--bb-white);
    background: var(--bb-green);
    border-left: 4px solid var(--bb-orange);
    box-shadow: 0 20px 55px rgba(24, 42, 27, 0.22);
}

.bb-badge-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--bb-green);
    font-size: 22px;
    background: var(--bb-orange);
    border-radius: 50%;
}

.bb-floating-badge strong,
.bb-floating-badge small {
    display: block;
}

.bb-floating-badge strong {
    margin-bottom: 4px;
    font-size: 20px;
}

.bb-floating-badge small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.bb-intro-content {
    padding-left: 18px;
}

.bb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bb-orange);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bb-section-label::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--bb-orange);
}

.bb-intro-content h2,
.bb-section-heading h2 {
    margin: 17px 0 15px;
    color: var(--bb-dark);
    font-size: clamp(28px, 4.2vw, 42px);
    line-height: 1.15;
}

.bb-intro-content h2 span,
.bb-section-heading h2 span {
    color: var(--bb-orange);
}

.bb-intro-content p {
    margin-bottom: 18px;
    color: var(--bb-text);
    font-size: 18px;
    line-height: 1.9;
}

.bb-intro-content .bb-intro-lead {
    color: var(--bb-green);
    font-size: 21px;
    font-weight: 500;
}

.bb-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 31px;
}

.bb-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    background: var(--bb-white);
    border: 1px solid var(--bb-border);
    transition: 0.35s ease;
}

.bb-highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 150, 29, 0.45);
    box-shadow: 0 14px 35px rgba(25, 44, 28, 0.08);
}

.bb-highlight-item>i {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--bb-orange);
    font-size: 19px;
    background: rgba(247, 150, 29, 0.1);
    border-radius: 50%;
}

.bb-highlight-item strong,
.bb-highlight-item span {
    display: block;
}

.bb-highlight-item strong {
    margin-bottom: 4px;
    color: var(--bb-dark);
    font-size: 17px;
}

.bb-highlight-item span {
    color: #7e867f;
    font-size: 14px;
    line-height: 1.5;
}

.bb-call-card {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 35px;
    padding: 22px 24px;
    background: var(--bb-light);
    border-left: 4px solid var(--bb-orange);
}

.bb-call-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: var(--bb-white);
    font-size: 23px;
    background: var(--bb-green);
    border-radius: 50%;
}

.bb-call-details {
    flex: 1;
}

.bb-call-details span,
.bb-call-details a {
    display: block;
}

.bb-call-details span {
    margin-bottom: 5px;
    color: var(--bb-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.bb-call-details a {
    color: var(--bb-dark);
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 700;
    text-decoration: none;
}

.bb-call-arrow {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--bb-white);
    background: var(--bb-orange);
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.bb-call-arrow:hover {
    color: var(--bb-white);
    transform: translateX(4px);
    background: var(--bb-green);
}


/* =====================================================
   ROOMS SECTION
===================================================== */

.bb-rooms-section {
    position: relative;
    padding: 115px 0;
    background: var(--bb-light);
}

.bb-section-heading {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}

.bb-section-heading .bb-section-label {
    justify-content: center;
}

.bb-section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--bb-text);
    font-size: 18px;
    line-height: 1.85;
}

.bb-room-card {
    height: 100%;
    overflow: hidden;
    background: var(--bb-white);
    border: 1px solid rgba(29, 48, 32, 0.08);
    box-shadow: 0 16px 45px rgba(29, 48, 32, 0.08);
    transition: 0.4s ease;
}

.bb-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 75px rgba(29, 48, 32, 0.15);
}

.bb-room-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.bb-room-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 38%,
            rgba(10, 24, 13, 0.67) 100%);
}

.bb-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bb-room-card:hover .bb-room-image img {
    transform: scale(1.07);
}

.bb-room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 10px 15px;
    color: var(--bb-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--bb-orange);
}

.bb-room-price {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    min-width: 160px;
    padding: 16px 18px;
    color: var(--bb-white);
    text-align: right;
    background: rgba(19, 35, 22, 0.9);
    backdrop-filter: blur(8px);
}

.bb-room-price small,
.bb-room-price strong,
.bb-room-price span {
    display: block;
}

.bb-room-price small {
    color: rgba(255, 255, 255, 0.67);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bb-room-price strong {
    margin: 3px 0;
    color: var(--bb-orange);
    font-size: 34px;
    line-height: 1;
}

.bb-room-price span {
    font-size: 13px;
}

.bb-room-content {
    padding: 32px;
}

.bb-room-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.bb-room-category {
    display: block;
    margin-bottom: 8px;
    color: var(--bb-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.bb-room-content h3 {
    margin: 0;
    color: var(--bb-dark);
    font-size: 28px;
    line-height: 1.25;
}

.bb-room-capacity {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--bb-green-light);
    font-size: 13px;
    font-weight: 700;
    background: rgba(56, 88, 61, 0.09);
}

.bb-room-description {
    margin-bottom: 22px;
    color: var(--bb-text);
    font-size: 17px;
    line-height: 1.8;
}

.bb-package-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--bb-dark);
    font-size: 17px;
    font-weight: 800;
}

.bb-package-title i {
    color: var(--bb-orange);
}

.bb-package-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.bb-package-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bb-text);
    font-size: 15px;
}

.bb-package-list li i {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--bb-orange);
    font-size: 15px;
    background: rgba(247, 150, 29, 0.1);
    border-radius: 50%;
}

.bb-room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    padding-top: 23px;
    border-top: 1px solid var(--bb-border);
}

.bb-package-summary small,
.bb-package-summary strong {
    display: block;
}

.bb-package-summary small {
    margin-bottom: 3px;
    color: #8d958e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bb-package-summary strong {
    color: var(--bb-dark);
    font-size: 19px;
}

.bb-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 13px 25px;
    color: var(--bb-white);
    font-size: 15px;
    font-weight: 800;
    background: var(--bb-green);
    border: 1px solid var(--bb-green);
    text-decoration: none;
    transition: 0.3s ease;
    border-radius: 12px;
}

.bb-book-btn:hover {
    color: var(--bb-white);
    background: var(--bb-orange);
    border-color: var(--bb-orange);
}

.bb-price-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 920px;
    margin: 44px auto 0;
    padding: 23px 26px;
    background: var(--bb-white);
    border-left: 4px solid var(--bb-orange);
    box-shadow: 0 12px 35px rgba(29, 48, 32, 0.07);
}

.bb-price-notice i {
    margin-top: 3px;
    color: var(--bb-orange);
    font-size: 24px;
}

.bb-price-notice p {
    margin: 0;
    color: var(--bb-text);
    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   EXPERIENCE STRIP
===================================================== */

.bb-experience-strip {
    padding: 58px 0;
    background: var(--bb-green);
}

.bb-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bb-experience-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 95px;
    padding: 16px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.bb-experience-item:last-child {
    border-right: 0;
}

.bb-experience-item>span {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--bb-dark);
    font-size: 22px;
    background: var(--bb-orange);
    border-radius: 50%;
}

.bb-experience-item strong,
.bb-experience-item small {
    display: block;
}

.bb-experience-item strong {
    margin-bottom: 4px;
    color: var(--bb-white);
    font-size: 19px;
}

.bb-experience-item small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}


/* =====================================================
   CTA SECTION
===================================================== */

.bb-booking-cta {
    position: relative;
    padding: 105px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bb-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(12, 29, 16, 0.94),
            rgba(12, 29, 16, 0.62));
}

.bb-cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.bb-cta-content {
    max-width: 760px;
}

.bb-cta-content>span {
    display: block;
    margin-bottom: 13px;
    color: var(--bb-orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bb-cta-content h2 {
    margin: 0 0 17px;
    color: var(--bb-white);
    font-size: clamp(43px, 5vw, 65px);
    line-height: 1.13;
}

.bb-cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    line-height: 1.7;
}

.bb-cta-actions {
    flex: 0 0 290px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bb-whatsapp-button,
.bb-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 62px;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.35s ease;
    border-radius: 12px;
}

.bb-whatsapp-button {
    color: var(--bb-white);
    background: #25d366;
    border: 2px solid #25d366;
}

.bb-whatsapp-button:hover {
    color: #25d366;
    background: var(--bb-white);
    border-color: var(--bb-white);
}

.bb-phone-button {
    color: var(--bb-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.bb-phone-button:hover {
    color: var(--bb-dark);
    background: var(--bb-orange);
    border-color: var(--bb-orange);
}


/* =====================================================
   ANIMATION
===================================================== */

.bb-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.bb-reveal.bb-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .bb-intro-section,
    .bb-rooms-section {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .bb-intro-gallery {
        min-height: 560px;
    }

    .bb-main-image {
        height: 510px;
    }

    .bb-room-image {
        height: 320px;
    }

    .bb-room-content h3 {
        font-size: 29px;
    }
}


@media (max-width: 991px) {

    .bb-inner-banner {
        min-height: 430px;
    }

    .bb-banner-content {
        padding-top: 70px;
    }

    .bb-banner-content h1 {
        font-size: 64px;
    }

    .bb-intro-gallery {
        max-width: 680px;
        margin: 0 auto;
    }

    .bb-intro-content {
        padding-left: 0;
    }

    .bb-intro-content h2,
    .bb-section-heading h2 {
        font-size: 46px;
    }

    .bb-room-description {
        min-height: auto;
    }

    .bb-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bb-experience-item:nth-child(2) {
        border-right: 0;
    }

    .bb-experience-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .bb-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .bb-cta-actions {
        width: 100%;
        flex: auto;
        flex-direction: row;
    }

    .bb-whatsapp-button,
    .bb-phone-button {
        flex: 1;
    }
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .bb-inner-banner {
        min-height: 360px;
    }

    .bb-banner-content {
        padding-top: 60px;
    }

    .bb-banner-content h1 {
        font-size: 48px;
    }

    .bb-banner-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .bb-breadcrumb a,
    .bb-breadcrumb span {
        font-size: 14px;
    }

    .bb-intro-section,
    .bb-rooms-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .bb-intro-gallery {
        min-height: auto;
        padding: 0 0 90px;
    }

    .bb-main-image {
        height: 410px;
    }

    .bb-small-image {
        right: 8px;
        width: 49%;
        height: 215px;
    }

    .bb-floating-badge {
        left: 8px;
        top: 10px;
        bottom: auto;
    }

    .bb-section-label {
        font-size: 13px;
    }

    .bb-intro-content h2,
    .bb-section-heading h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .bb-intro-content p,
    .bb-section-heading p {
        font-size: 17px;
    }

    .bb-intro-content .bb-intro-lead {
        font-size: 19px;
    }

    .bb-highlight-grid {
        grid-template-columns: 1fr;
    }

    .bb-highlight-item strong {
        font-size: 16px;
    }

    .bb-highlight-item span {
        font-size: 13px;
    }

    .bb-call-card {
        align-items: flex-start;
    }

    .bb-call-details a {
        font-size: 25px;
    }

    .bb-call-arrow {
        display: none;
    }

    .bb-room-image {
        height: 285px;
    }

    .bb-room-content {
        padding: 25px 22px;
    }

    .bb-room-title-row {
        flex-direction: column;
    }

    .bb-room-capacity {
        width: fit-content;
    }

    .bb-room-content h3 {
        font-size: 27px;
    }

    .bb-room-description {
        font-size: 16px;
    }

    .bb-package-title {
        font-size: 16px;
    }

    .bb-package-list {
        grid-template-columns: 1fr;
    }

    .bb-package-list li {
        font-size: 15px;
    }

    .bb-room-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .bb-book-btn {
        width: 100%;
    }

    .bb-experience-grid {
        grid-template-columns: 1fr;
    }

    .bb-experience-item {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .bb-experience-item:last-child {
        border-bottom: 0;
    }

    .bb-booking-cta {
        padding: 75px 0;
        background-attachment: scroll;
    }

    .bb-cta-content h2 {
        font-size: 39px;
    }

    .bb-cta-content p {
        font-size: 18px;
    }

    .bb-cta-actions {
        flex-direction: column;
    }
}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 575px) {

    .bb-banner-content h1 {
        font-size: 42px;
    }

    .bb-main-image {
        height: 335px;
    }

    .bb-small-image {
        width: 54%;
        height: 175px;
    }

    .bb-floating-badge {
        max-width: 225px;
        padding: 15px;
    }

    .bb-badge-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .bb-floating-badge strong {
        font-size: 17px;
    }

    .bb-floating-badge small {
        font-size: 12px;
    }

    .bb-intro-content h2,
    .bb-section-heading h2 {
        font-size: 34px;
    }

    .bb-call-icon {
        flex-basis: 49px;
        width: 49px;
        height: 49px;
    }

    .bb-call-details a {
        font-size: 18px;
    }

    .bb-room-image {
        height: 245px;
    }

    .bb-room-tag {
        top: 12px;
        left: 12px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .bb-room-price {
        right: 12px;
        bottom: 12px;
        min-width: 130px;
        padding: 12px 14px;
    }

    .bb-room-price strong {
        font-size: 28px;
    }

    .bb-room-content h3 {
        font-size: 25px;
    }

    .bb-price-notice {
        padding: 18px;
    }

    .bb-cta-content h2 {
        font-size: 34px;
    }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .bb-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .bb-room-card,
    .bb-room-image img,
    .bb-highlight-item,
    .bb-call-arrow {
        transition: none;
    }
}


