/* =====================================================
   BLACKBUCK DANDELI ABOUT AND EXPERIENCE SECTIONS
===================================================== */

:root {
    --bb-green: #173f2c;
    --bb-green-dark: #0e291d;
    --bb-green-light: #eaf2ed;
    --bb-orange: #f7961d;
    --bb-orange-dark: #dc7c08;
    --bb-cream: #fffaf2;
    --bb-white: #ffffff;
    --bb-text: #505850;
    --bb-heading: #17251d;
    --bb-border: rgba(23, 63, 44, 0.12);
    --bb-shadow: 0 24px 60px rgba(23, 63, 44, 0.12);
}

.bb-about-section,
.bb-experience-section {
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.bb-about-section *,
.bb-experience-section * {
    box-sizing: border-box;
}

.bb-about-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 5% 10%, rgba(247, 150, 29, 0.1), transparent 24%),
        linear-gradient(135deg, #fffdf9 0%, #f5f9f6 100%);
}

.bb-about-section .container,
.bb-experience-section .container {
    width: min(1170px, calc(100% - 30px));
    margin: 0 auto;
}

.bb-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 75px;
}

/* IMAGE AREA */

.bb-about-image {
    position: relative;
    padding: 25px 20px 45px 0;
}

.bb-image-frame {
    position: relative;
    min-height: 610px;
    border-radius: 180px 30px 180px 30px;
    overflow: hidden;
    background: var(--bb-green);
    box-shadow: var(--bb-shadow);
    z-index: 2;
}

.bb-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 41, 29, 0.02) 35%,
        rgba(14, 41, 29, 0.35) 100%
    );
    pointer-events: none;
}

.bb-image-frame img {
    width: 100%;
    height: 610px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bb-image-frame:hover img {
    transform: scale(1.06);
}

.bb-floating-card {
    position: absolute;
    right: 22px;
    bottom: 24px;
    z-index: 3;
    width: calc(100% - 44px);
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    color: var(--bb-white);
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.bb-floating-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--bb-white);
    background: var(--bb-orange);
    font-size: 20px;
}

.bb-floating-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
}

.bb-floating-card span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

.bb-pattern {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.bb-pattern-one {
    width: 165px;
    height: 165px;
    right: -10px;
    top: 0;
    border: 28px solid rgba(247, 150, 29, 0.17);
}

.bb-pattern-two {
    width: 115px;
    height: 115px;
    left: -45px;
    bottom: 0;
    background-image: radial-gradient(
        rgba(23, 63, 44, 0.32) 2px,
        transparent 2px
    );
    background-size: 14px 14px;
}

/* CONTENT AREA */

.bb-subtitle {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 15px;
    border-radius: 50px;
    color: var(--bb-orange-dark);
    background: rgba(247, 150, 29, 0.12);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.bb-section-heading h2,
.bb-experience-header h2 {
    margin: 0;
    color: var(--bb-heading);
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: normal;
}

.bb-section-heading h2 span,
.bb-experience-header h2 span {
    color: var(--bb-orange);
}

.bb-section-heading > p {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--bb-text);
    font-size: 16px;
    line-height: 1.85;
}

.bb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.bb-benefit-item {
    min-height: 85px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--bb-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
    transition: all 0.35s ease;
}

.bb-benefit-item:last-child {
    grid-column: 1 / -1;
}

.bb-benefit-item:hover {
    border-color: rgba(247, 150, 29, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23, 63, 44, 0.1);
}

.bb-check {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--bb-white);
    background: var(--bb-green);
    font-size: 13px;
}

.bb-benefit-item p {
    margin: 0;
    color: var(--bb-heading);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
}

.bb-experience-box {
    position: relative;
    display: flex;
    gap: 18px;
    margin-top: 25px;
    padding: 25px;
    border-left: 4px solid var(--bb-orange);
    border-radius: 4px 18px 18px 4px;
    background: var(--bb-green);
    box-shadow: 0 20px 45px rgba(23, 63, 44, 0.18);
}

.bb-experience-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--bb-green);
    background: var(--bb-white);
    font-size: 21px;
}

.bb-experience-box h3 {
    margin: 0 0 8px;
    color: var(--bb-white);
    font-size: 20px;
    line-height: 1.35;
}

.bb-experience-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.75;
}

/* =====================================================
   EXPERIENCE CARDS SECTION
===================================================== */

.bb-experience-section {
    padding: 105px 0;
    background:
        linear-gradient(rgba(14, 41, 29, 0.96), rgba(14, 41, 29, 0.96)),
        url("images/60.png") center/cover fixed;
}

.bb-experience-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -210px;
    right: -120px;
    border: 65px solid rgba(247, 150, 29, 0.08);
    border-radius: 50%;
}

.bb-experience-header {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.bb-subtitle-light {
    color: #ffd39b;
    background: rgba(255, 255, 255, 0.1);
}

.bb-experience-header h2 {
    color: var(--bb-white);
}

.bb-experience-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 0.85fr 1.3fr;
    gap: 22px;
    align-items: stretch;
}

.bb-info-card {
    position: relative;
    min-height: 470px;
    padding: 38px 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    color: var(--bb-white);
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.bb-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 150, 29, 0.55);
    background: rgba(255, 255, 255, 0.12);
}

.bb-info-card-featured {
    margin-top: 35px;
    margin-bottom: -35px;
    border-color: rgba(247, 150, 29, 0.35);
    background: var(--bb-orange);
}

.bb-info-card-featured:hover {
    background: var(--bb-orange-dark);
}

.bb-card-number {
    position: absolute;
    right: 24px;
    top: 17px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 74px;
    line-height: 1;
    font-weight: 800;
}

.bb-card-icon {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    color: var(--bb-orange);
    background: var(--bb-white);
    font-size: 25px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.bb-info-card-featured .bb-card-icon {
    color: var(--bb-green);
}

.bb-info-card h3,
.bb-hospitality-card h3 {
    margin: 0 0 17px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.bb-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.85;
}

.bb-info-card-featured p {
    color: rgba(255, 255, 255, 0.92);
}

/* HOSPITALITY CARD */

.bb-hospitality-card {
    position: relative;
    min-height: 505px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(14, 41, 29, 0.02) 10%,
            rgba(14, 41, 29, 0.95) 88%
        ),
        url("../images/photo/9.jpeg") center/cover no-repeat;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
}

.bb-hospitality-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(14, 41, 29, 0.12),
        rgba(14, 41, 29, 0.05)
    );
}

.bb-hospitality-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 38px;
    color: var(--bb-white);
}

.bb-small-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffc77f;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bb-hospitality-card p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.8;
}

.bb-contact-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    color: var(--bb-white);
    background: var(--bb-orange);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(247, 150, 29, 0.3);
    transition: all 0.35s ease;
}

.bb-contact-btn:hover {
    color: var(--bb-green);
    background: var(--bb-white);
    transform: translateY(-3px);
}

.bb-contact-btn i {
    font-size: 18px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
    .bb-about-grid {
        gap: 45px;
    }

    .bb-experience-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bb-hospitality-card {
        grid-column: 1 / -1;
        min-height: 480px;
    }

    .bb-info-card-featured {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .bb-about-section,
    .bb-experience-section {
        padding: 80px 0;
    }

    .bb-about-grid {
        grid-template-columns: 1fr;
    }

    .bb-about-image {
        max-width: 700px;
        margin: 0 auto;
        padding-right: 0;
    }

    .bb-image-frame {
        min-height: 540px;
        border-radius: 120px 25px 120px 25px;
    }

    .bb-image-frame img {
        height: 540px;
    }
}

@media (max-width: 767px) {
    .bb-about-section,
    .bb-experience-section {
        padding: 65px 0;
    }

    .bb-image-frame {
        min-height: 430px;
        border-radius: 70px 18px 70px 18px;
    }

    .bb-image-frame img {
        height: 430px;
    }

    .bb-floating-card {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .bb-section-heading h2,
    .bb-experience-header h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .bb-benefits-grid,
    .bb-experience-layout {
        grid-template-columns: 1fr;
    }

    .bb-benefit-item:last-child,
    .bb-hospitality-card {
        grid-column: auto;
    }

    .bb-info-card,
    .bb-hospitality-card {
        min-height: auto;
    }

    .bb-info-card {
        padding: 32px 25px;
    }

    .bb-hospitality-card {
        min-height: 520px;
    }

    .bb-experience-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .bb-about-section .container,
    .bb-experience-section .container {
        width: min(100% - 22px, 1170px);
    }

    .bb-about-image {
        padding-bottom: 20px;
    }

    .bb-image-frame {
        min-height: 380px;
        border-radius: 45px 15px 45px 15px;
    }

    .bb-image-frame img {
        height: 380px;
    }

    .bb-floating-card {
        align-items: flex-start;
        padding: 14px;
    }

    .bb-floating-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .bb-section-heading h2,
    .bb-experience-header h2 {
        font-size: 31px;
    }

    .bb-section-heading > p {
        font-size: 15px;
    }

    .bb-benefit-item {
        min-height: auto;
    }

    .bb-experience-box,
    .bb-hospitality-overlay {
        padding: 24px;
    }

    .bb-info-card h3,
    .bb-hospitality-card h3 {
        font-size: 22px;
    }

    .bb-hospitality-card {
        min-height: 550px;
    }

    .bb-contact-btn {
        width: 100%;
    }
}