:root {
    --bp-black: #020604;
    --bp-deep-green: #063b2b;
    --bp-green: #0f6b4b;
    --bp-soft-green: #27c084;
    --bp-white: #ffffff;
    --bp-grey: #aeb7b2;
    --bp-blue: #4fc3ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(39, 192, 132, 0.13), transparent 35%),
        radial-gradient(circle at bottom right, rgba(79, 195, 255, 0.08), transparent 35%),
        var(--bp-black);
    color: var(--bp-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* FLOATING HEADER */

.bp-floating-header {
    position: fixed;
    top: 28px;
    left: 0;
    width: 100%;
    padding: 0 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3000;
    pointer-events: none;
}

.bp-logo-wrap,
.bp-menu-trigger {
    pointer-events: auto;
}

.bp-logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.bp-logo {
    width: 170px;
    max-height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.55));
}

/* MENU BUTTON */

.bp-menu-trigger {
    border: 1px solid rgba(255,255,255,0.18);
    outline: none;
    height: 58px;
    padding: 0 10px 0 24px;
    border-radius: 999px;
    color: var(--bp-white);
    background: rgba(3, 13, 9, 0.62);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow:
        0 18px 55px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.12);
    transition: all 0.35s ease;
}

.bp-menu-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bp-menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(39,192,132,0.95), rgba(6,59,43,0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.bp-menu-icon::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: translateX(-100%) rotate(25deg);
    transition: 0.6s ease;
}

.bp-menu-icon span {
    width: 17px;
    height: 2px;
    background: #fff;
    border-radius: 20px;
    transition: 0.35s ease;
    z-index: 1;
}

.bp-menu-trigger:hover {
    transform: translateY(-3px);
    border-color: rgba(79,195,255,0.5);
    box-shadow:
        0 24px 70px rgba(0,0,0,0.55),
        0 0 35px rgba(39,192,132,0.22);
}

.bp-menu-trigger:hover .bp-menu-icon::before {
    transform: translateX(100%) rotate(25deg);
}

.bp-menu-trigger:hover .bp-menu-icon span:first-child {
    transform: translateX(4px);
}

.bp-menu-trigger:hover .bp-menu-icon span:last-child {
    transform: translateX(-4px);
}

/* BACKDROP */

.bp-page-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.56);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 3500;
}

.bp-page-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* SIDEBAR */

.bp-sidebar {
    position: fixed;
    top: 18px;
    right: 18px;
    width: min(465px, calc(100% - 36px));
    height: calc(100vh - 36px);
    z-index: 4000;
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(39, 192, 132, 0.25), transparent 38%),
        radial-gradient(circle at bottom left, rgba(79, 195, 255, 0.08), transparent 35%),
        linear-gradient(145deg, rgba(2, 10, 7, 0.97), rgba(5, 44, 32, 0.94));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
        -30px 30px 90px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.12);
    transform: translateX(115%) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition: 0.55s cubic-bezier(.19,1,.22,1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bp-sidebar.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.bp-sidebar-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(39,192,132,0.28);
    filter: blur(45px);
    pointer-events: none;
}

.bp-sidebar-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.bp-menu-close {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
    font-size: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bp-menu-close:hover {
    background: rgba(79,195,255,0.14);
    border-color: rgba(79,195,255,0.5);
    transform: rotate(90deg) scale(1.06);
}

/* SIDEBAR LINKS */

.bp-sidebar-nav {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    display: grid;
    gap: 0;
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    padding-bottom: 24px;
}

.bp-sidebar-nav::-webkit-scrollbar {
    width: 0;
}

.bp-sidebar-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 55px; /* smaller */
    padding: 0 10px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.84);
    text-decoration: none;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem); /* reduced */
    font-weight: 700;
    letter-spacing: -0.02em;
    overflow: hidden;
    transition: 0.35s ease;
}

.bp-sidebar-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(39,192,132,0.16), rgba(79,195,255,0.08));
    transition: 0.35s ease;
}

.bp-sidebar-nav a i {
    width: 32px;
    min-width: 32px;
    font-size: 1.35rem;
    color: var(--bp-soft-green);
    text-shadow: 0 0 22px rgba(39,192,132,0.35);
    position: relative;
    z-index: 1;
    transition: 0.35s ease;
}

.bp-sidebar-nav a:hover {
    color: #fff;
    text-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.bp-sidebar-nav a:hover::before {
    width: 100%;
}

.bp-sidebar-nav a:hover i {
    color: var(--bp-blue);
    transform: scale(1.08) rotate(-4deg);
}

/* SIDEBAR BOTTOM */

.bp-sidebar-bottom {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    padding-top: 24px;
}

.bp-apply-btn {
    width: 100%;
    min-height: 64px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background:
        linear-gradient(135deg, #11875f, #27c084);
    box-shadow:
        0 20px 45px rgba(39,192,132,0.25),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: 0.35s ease;
}

.bp-apply-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow:
        0 25px 65px rgba(39,192,132,0.35),
        0 0 28px rgba(79,195,255,0.18);
}

.bp-sidebar-bottom p {
    margin: 18px 8px 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* SIDEBAR DROPDOWN */

.bp-sidebar-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.bp-sidebar-dropdown-toggle {
    width: 100%;
    min-height: 60px;
    padding: 0 10px;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255,255,255,0.84);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: 0.35s ease;
}

.bp-sidebar-dropdown-toggle span {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bp-sidebar-dropdown-toggle i:first-child {
    width: 32px;
    min-width: 32px;
    color: var(--bp-soft-green);
    font-size: 1.35rem;
    text-shadow: 0 0 22px rgba(39,192,132,0.35);
}

.bp-dropdown-arrow {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    transition: 0.35s ease;
}

.bp-sidebar-dropdown.active .bp-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--bp-soft-green);
}

.bp-sidebar-dropdown-toggle:hover {
    color: #fff;
}

.bp-sidebar-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.bp-sidebar-dropdown.active .bp-sidebar-dropdown-menu {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

.bp-sidebar-dropdown-menu {
    overflow: hidden;
}

.bp-sidebar-dropdown-menu a {
    min-height: 46px;
    padding: 0 10px 0 52px;
    border-bottom: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.62);
}

.bp-sidebar-dropdown-menu a i {
    width: 24px;
    min-width: 24px;
    font-size: 1.05rem;
}

.bp-sidebar-dropdown-menu a:hover {
    color: #fff;
}

/* MOBILE - SMALLER GALLERY TEXT */

/* FIX SIDEBAR DROPDOWN TEXT SIZE ON MOBILE */
@media (max-width: 768px) {
    .bp-sidebar-nav .bp-sidebar-dropdown .bp-sidebar-dropdown-menu a {
        min-height: 36px !important;
        padding: 0 10px 0 52px !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        gap: 10px !important;
        letter-spacing: 0 !important;
    }

    .bp-sidebar-nav .bp-sidebar-dropdown .bp-sidebar-dropdown-menu a i {
        width: 20px !important;
        min-width: 20px !important;
        font-size: 0.9rem !important;
    }
}

/* MOBILE (match your reduced sizes) */
@media (max-width: 768px) {
    .bp-sidebar-dropdown-toggle {
        min-height: 66px;
        font-size: 1.35rem;
        gap: 18px;
    }

    .bp-sidebar-dropdown-toggle i:first-child {
        width: 32px;
        min-width: 32px;
        font-size: 1.35rem;
    }
}

/* HEADER SCROLL BEHAVIOR */

.bp-floating-header {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.bp-floating-header.hide {
    transform: translateY(-120%);
    opacity: 0;
}

/* MOBILE */

@media (max-width: 768px) {
    .bp-floating-header {
        top: 18px;
        padding: 0 18px;
    }

    .bp-logo {
        width: 125px;
        max-height: 70px;
    }

    .bp-menu-trigger {
        height: 50px;
        padding: 0 7px 0 16px;
        gap: 10px;
    }

    .bp-menu-text {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .bp-menu-icon {
        width: 37px;
        height: 37px;
    }

    .bp-sidebar {
        top: 10px;
        right: 10px;
        width: calc(100% - 20px);
        height: calc(100vh - 20px);
        border-radius: 26px;
        padding: 22px;
    }

    .bp-menu-close {
        width: 48px;
        height: 48px;
    }

    .bp-sidebar-nav {
        margin-top: 25px;
        padding-bottom: 18px;
    }

    .bp-sidebar-nav a {
        min-height: 66px;
        gap: 18px;
        font-size: 1.35rem;
    }

    .bp-sidebar-nav a i {
        width: 32px;
        min-width: 32px;
        font-size: 1.35rem;
    }

    .bp-apply-btn {
        min-height: 58px;
        font-size: 1rem;
    }

    .bp-sidebar-bottom p {
        font-size: 0.82rem;
        line-height: 1.55;
    }
}

/* SIMPLE HERO WITH VIDEO */

.bp-simple-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px;
    overflow: hidden;
}

/* VIDEO */

.bp-simple-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* DARK OVERLAY */

.bp-simple-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.85)),
        radial-gradient(circle at center, rgba(39,192,132,0.08), transparent 40%);
    z-index: -1;
}

/* CONTENT */

.bp-simple-hero-content {
    max-width: 800px;
}

.bp-simple-hero h1 {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.bp-simple-hero p {
    color: #aeb7b2;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {
    .bp-simple-hero {
        padding: 120px 18px;
    }

    .bp-simple-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .bp-simple-hero p {
        font-size: 0.9rem;
    }
}

/* JOURNEY COLOR CARDS (CLEAN VERSION BELOW HERO) */

.bp-journey-cards-section {
    position: relative;
    padding: 60px 20px 80px; /* normal spacing */
    margin-top: 0; /* no overlap */
}

/* GRID */

.bp-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* tighter spacing */
}

/* CARD */

.bp-journey-card {
    position: relative;
    min-height: 210px; /* smaller */
    padding: 26px 22px; /* reduced */
    border-radius: 26px;
    overflow: hidden;
    color: #fff;
    box-shadow:
        0 18px 45px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: 0.35s ease;
}

/* DECORATION */

.bp-journey-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: 0.35s ease;
}

.bp-journey-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    opacity: 0.5;
}

/* COLORS */

.bp-card-apply {
    background: linear-gradient(135deg, #ff7a18, #ff3d81);
}

.bp-card-grow {
    background: linear-gradient(135deg, #00b894, #0984e3);
}

.bp-card-shine {
    background: linear-gradient(135deg, #7f5af0, #2cb67d);
}

/* ICON */

.bp-journey-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.bp-journey-icon i {
    font-size: 1.6rem;
}

/* TEXT */

.bp-journey-card h3 {
    margin: 0 0 8px;
    font-size: 1.5rem; /* smaller */
    font-weight: 800;
}

.bp-journey-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* HOVER (SUBTLE, NO SHAKE) */

.bp-journey-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.45);
}

.bp-journey-card:hover::before {
    transform: scale(1.2);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .bp-journey-grid {
        grid-template-columns: 1fr;
    }

    .bp-journey-card {
        min-height: 190px;
    }
}

/* ABOUT SECTION - BOOK STYLE */

.bp-about-section {
    position: relative;
    padding: 30px 20px;
}

/* IMAGE WRAP (BOOK EFFECT) */

.bp-about-image-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.bp-about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOOK EDGE EFFECT */
/* SIDE FADE (LEFT + RIGHT BLEND) */

.bp-about-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, var(--bp-black) 0%, transparent 20%),
        linear-gradient(to left, var(--bp-black) 0%, transparent 20%);
}

/* subtle glow */

.bp-about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(39,192,132,0.12), transparent 40%);
    pointer-events: none;
}

/* TEXT CONTENT */

.bp-about-content {
    padding-left: 20px;
}

/* KICKER */

.bp-about-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 800;
    text-transform: uppercase;
}

/* TITLE */

.bp-about-content h2 {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

/* TEXT */

.bp-about-content p {
    color: var(--bp-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* BUTTON */

.bp-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bp-green), var(--bp-soft-green));
    box-shadow:
        0 15px 40px rgba(39,192,132,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: 0.35s ease;
}

.bp-about-btn i {
    transition: 0.3s ease;
}

.bp-about-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow:
        0 25px 60px rgba(39,192,132,0.35),
        0 0 25px rgba(79,195,255,0.15);
}

.bp-about-btn:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .bp-about-content {
        padding-left: 0;
        margin-top: 20px;
    }
}

/* WHY CHOOSE US - PHOTO LEFT / CARDS RIGHT */

.bp-why-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.bp-section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.bp-section-heading span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.bp-section-heading p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.98rem;
    line-height: 1.8;
}

.bp-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.bp-why-photo {
    height: 620px; /* control image height here */
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.bp-why-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* photo blending */
.bp-why-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2,6,4,0.75), transparent 24%),
        linear-gradient(to left, rgba(2,6,4,0.75), transparent 24%),
        linear-gradient(to top, rgba(2,6,4,0.7), transparent 30%);
    pointer-events: none;
}

.bp-why-cards {
    display: grid;
    gap: 18px;
}

.bp-why-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(39,192,132,0.13), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 20px 55px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

.bp-why-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39,192,132,0.13);
    border: 1px solid rgba(39,192,132,0.22);
}

.bp-why-icon i {
    font-size: 1.65rem;
    color: var(--bp-soft-green);
}

.bp-why-card h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.bp-why-card p {
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem;
    line-height: 1.65;
}

.bp-why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(39,192,132,0.32);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.48),
        0 0 35px rgba(39,192,132,0.1);
}

@media (max-width: 992px) {
    .bp-why-layout {
        grid-template-columns: 1fr;
    }

    .bp-why-photo {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .bp-why-section {
        padding: 80px 18px;
    }

    .bp-section-heading {
        margin-bottom: 34px;
    }

    .bp-why-photo {
        height: 320px;
        border-radius: 26px;
    }

    .bp-why-card {
        padding: 20px;
        border-radius: 22px;
        align-items: flex-start;
    }

    .bp-why-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .bp-why-icon i {
        font-size: 1.35rem;
    }
}

/* CURRICULUM SECTION */

.bp-curriculum-section {
    position: relative;
    padding: 30px 20px;
}

/* GRID */

.bp-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CARD */

.bp-curriculum-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(39,192,132,0.12), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 22px 60px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.35s ease;
}

/* ICON */

.bp-curriculum-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: rgba(39,192,132,0.12);
    border: 1px solid rgba(39,192,132,0.25);
}

.bp-curriculum-icon i {
    font-size: 1.8rem;
    color: var(--bp-soft-green);
}

/* TEXT */

.bp-curriculum-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.bp-curriculum-card p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* HOVER */

.bp-curriculum-card:hover {
    transform: translateY(-6px);
    border-color: rgba(39,192,132,0.3);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.45),
        0 0 25px rgba(39,192,132,0.1);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .bp-curriculum-grid {
        grid-template-columns: 1fr;
    }
}

/* PROGRAMS SECTION */

.bp-programs-section {
    position: relative;
    padding: 100px 20px;
}

.bp-programs-section .bp-section-heading {
    margin-bottom: 50px;
}

/* BOX */

.bp-programs-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;

    padding: 40px;
    border-radius: 34px;

    background:
        radial-gradient(circle at top right, rgba(39,192,132,0.12), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);
}

/* IMAGE */

.bp-programs-image {
    height: 490px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.bp-programs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SIDE FADE (blend with theme) */

.bp-programs-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2,6,4,0.8), transparent 25%),
        linear-gradient(to left, rgba(2,6,4,0.8), transparent 25%);
}

/* TEXT */

.bp-programs-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-programs-content h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.bp-programs-content p {
    color: var(--bp-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* BUTTON */

.bp-programs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;

    background: linear-gradient(135deg, var(--bp-green), var(--bp-soft-green));

    box-shadow:
        0 15px 40px rgba(39,192,132,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);

    transition: 0.35s ease;
}

.bp-programs-btn:hover {
    transform: translateY(-3px);
    color: #fff;

    box-shadow:
        0 25px 60px rgba(39,192,132,0.35),
        0 0 25px rgba(79,195,255,0.15);
}

.bp-programs-btn i {
    transition: 0.3s ease;
}

.bp-programs-btn:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .bp-programs-box {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .bp-programs-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .bp-programs-section {
        padding: 80px 18px;
    }

    .bp-programs-content h2 {
        font-size: 1.9rem;
    }
}

/* =========================
   CTA SECTION (SMALLER)
========================= */

.bp-cta-section {
    position: relative;
    padding: 70px 20px; /* reduced */
    text-align: center;
    overflow: hidden;
}

/* BACKGROUND IMAGE */

.bp-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.bp-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.65), rgba(2,6,4,0.92)),
        radial-gradient(circle at center, rgba(39,192,132,0.10), transparent 45%);
}

/* FADE */

.bp-cta-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px; /* reduced */
    background: linear-gradient(to bottom, transparent, var(--bp-black));
    z-index: -1;
}

/* CONTENT */

.bp-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.bp-cta-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem); /* smaller */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.bp-cta-content p {
    margin: 14px auto 20px;
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 560px;
}

/* BUTTONS */

.bp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px; /* smaller */
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    transition: 0.3s ease;
}

/* PRIMARY */

.bp-cta-btn.primary {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    box-shadow:
        0 14px 35px rgba(37,211,102,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.bp-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(37,211,102,0.35);
}

/* SECONDARY */

.bp-cta-btn.secondary {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.bp-cta-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
}

/* MOBILE */

@media (max-width: 768px) {
    .bp-cta-section {
        padding: 55px 18px;
    }

    .bp-cta-content h2 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .bp-cta-content p {
        font-size: 0.85rem;
    }
}


/* =========================
   STATS SECTION (SMALLER)
========================= */

.bp-stats-section {
    position: relative;
    padding: 80px 20px; /* reduced */
    text-align: center;
    overflow: hidden;
}

/* BACKGROUND */

.bp-stats-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.bp-stats-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.75), rgba(2,6,4,0.95)),
        radial-gradient(circle at center, rgba(39,192,132,0.12), transparent 50%);
}

/* HEADING */

.bp-stats-heading {
    max-width: 650px;
    margin: 0 auto 30px;
}

.bp-stats-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* smaller */
    font-weight: 900;
}

.bp-stats-heading p {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* GRID */

.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px; /* tighter */
    margin-bottom: 24px;
}

/* STAT */

.bp-stat h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0;
    font-weight: 900;
    color: var(--bp-soft-green);
}

.bp-stat p {
    margin-top: 4px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

/* BUTTON */

.bp-stats-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    box-shadow:
        0 14px 35px rgba(37,211,102,0.25);
    transition: 0.3s ease;
}

.bp-stats-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 992px) {
    .bp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bp-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */

.bp-footer {
    position: relative;
    padding: 90px 20px 30px;
    background:
        radial-gradient(circle at top left, rgba(39,192,132,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(39,192,132,0.12), transparent 40%),
        linear-gradient(180deg, rgba(2,6,4,0.95), #010302);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.3fr 0.8fr;
    gap: 36px;
}

.bp-footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.bp-footer-logo img {
    width: 150px;
    max-height: 90px;
    object-fit: contain;
}

.bp-footer-desc,
.bp-footer-social-text {
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 330px;
    margin: 0;
}

.bp-footer-col h4 {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin: 0 0 22px;
}

.bp-footer-links,
.bp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-footer-links li {
    margin-bottom: 12px;
}

.bp-footer-links a,
.bp-footer-contact a {
    color: rgba(255,255,255,0.64);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.7;
    transition: 0.3s ease;
}

.bp-footer-links a:hover,
.bp-footer-contact a:hover {
    color: var(--bp-soft-green);
}

.bp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.bp-footer-contact i {
    color: var(--bp-soft-green);
    font-size: 1.05rem;
    margin-top: 4px;
}

.bp-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bp-footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.35s ease;
}

.bp-footer-socials a i {
    font-size: 1.25rem;
}

.bp-footer-socials a:hover {
    transform: translateY(-4px);
    color: #fff;
    background: linear-gradient(135deg, var(--bp-green), var(--bp-soft-green));
    box-shadow: 0 18px 45px rgba(39,192,132,0.25);
}

.bp-footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.bp-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.86rem;
}

.bp-footer-dev {
    color: var(--bp-soft-green);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.bp-footer-dev:hover {
    color: #fff;
}

/* MOBILE - 2 COLUMNS */

@media (max-width: 768px) {
    .bp-footer {
        padding: 70px 18px 28px;
    }

    .bp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 22px;
    }

    .bp-footer-logo img {
        width: 125px;
    }

    .bp-footer-col h4 {
        font-size: 0.76rem;
        margin-bottom: 16px;
    }

    .bp-footer-desc,
    .bp-footer-social-text,
    .bp-footer-links a,
    .bp-footer-contact a {
        font-size: 0.82rem;
    }

    .bp-footer-socials a {
        width: 42px;
        height: 42px;
    }
}

/* =========================
   ABOUT PAGE HERO
========================= */

.bp-about-page-hero {
    position: relative;
    min-height: 72vh;
    padding: 170px 20px 100px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bp-about-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-about-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-about-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.92)),
        radial-gradient(circle at center, rgba(39,192,132,0.14), transparent 42%);
}

.bp-about-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--bp-black));
    z-index: -1;
}

.bp-about-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.bp-about-page-hero-content span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--bp-soft-green);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-about-page-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

.bp-about-page-hero-content p {
    max-width: 700px;
    margin: 24px auto 0;
    color: rgba(255,255,255,0.76);
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   ABOUT STORY BOXES
========================= */

.bp-about-story-section {
    position: relative;
    padding: 90px 20px;
}

.bp-about-story-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}

.bp-about-story-box.reverse .bp-about-story-image {
    order: 2;
}

.bp-about-story-box.reverse .bp-about-story-content {
    order: 1;
}

.bp-about-story-image {
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.bp-about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* soft image blending */
.bp-about-story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2,6,4,0.45), transparent 30%),
        linear-gradient(to left, rgba(2,6,4,0.45), transparent 30%);
    pointer-events: none;
}

.bp-about-story-content {
    padding: clamp(32px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(39,192,132,0.16), transparent 38%),
        linear-gradient(145deg, #0b5a3e, #073426);
}

.bp-about-story-content.bp-blue-card {
    background:
        radial-gradient(circle at top right, rgba(79,195,255,0.18), transparent 36%),
        radial-gradient(circle at bottom left, rgba(39,192,132,0.16), transparent 42%),
        linear-gradient(145deg, #082b3a, #06231c);
}

.bp-about-story-content span {
    color: #d9fff0;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bp-about-story-content h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.bp-about-story-content p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.82);
    font-size: 0.96rem;
    line-height: 1.85;
}

.bp-about-story-content p:last-child {
    margin-bottom: 0;
}


/* =========================
   SCHOOL REVIEWS
========================= */

.bp-school-reviews-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.bp-school-reviews-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 120px;
    border-radius: 50%;
    background: rgba(39,192,132,0.10);
    filter: blur(60px);
    pointer-events: none;
}

.bp-school-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-school-review-card {
    position: relative;
    padding: 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(39,192,132,0.10), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 24px 70px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

.bp-school-review-card.featured {
    background:
        radial-gradient(circle at top right, rgba(79,195,255,0.14), transparent 35%),
        linear-gradient(145deg, rgba(6,59,43,0.9), rgba(2,10,7,0.9));
    transform: translateY(-14px);
}

.bp-review-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(39,192,132,0.13);
    border: 1px solid rgba(39,192,132,0.25);
}

.bp-review-icon i {
    color: var(--bp-soft-green);
    font-size: 1.55rem;
}

.bp-school-review-card p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.8;
}

.bp-review-author {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bp-review-author h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.bp-review-author span {
    display: block;
    margin-top: 4px;
    color: var(--bp-soft-green);
    font-size: 0.8rem;
    font-weight: 700;
}


/* =========================
   ABOUT PAGE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .bp-about-story-box,
    .bp-about-story-box.reverse {
        grid-template-columns: 1fr;
    }

    .bp-about-story-box.reverse .bp-about-story-image,
    .bp-about-story-box.reverse .bp-about-story-content {
        order: initial;
    }

    .bp-about-story-image {
        min-height: 380px;
    }

    .bp-school-reviews-grid {
        grid-template-columns: 1fr;
    }

    .bp-school-review-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .bp-about-page-hero {
        min-height: 62vh;
        padding: 150px 18px 80px;
    }

    .bp-about-story-section,
    .bp-school-reviews-section {
        padding: 75px 18px;
    }

    .bp-about-story-box {
        border-radius: 26px;
    }

    .bp-about-story-image {
        min-height: 300px;
    }

    .bp-about-story-content {
        padding: 30px 24px;
    }

    .bp-about-story-content h2 {
        font-size: 1.9rem;
    }

    .bp-about-story-content p,
    .bp-school-review-card p {
        font-size: 0.9rem;
    }

    .bp-school-review-card {
        padding: 26px;
        border-radius: 24px;
    }
}

/* =========================
   PROGRAMS PAGE HERO
========================= */

.bp-programs-page-hero {
    position: relative;
    min-height: 72vh;
    padding: 170px 20px 100px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bp-programs-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-programs-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-programs-page-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.94)),
        radial-gradient(circle at center, rgba(39,192,132,0.14), transparent 42%);
}

.bp-programs-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--bp-black));
    z-index: -1;
}

.bp-programs-page-hero-content {
    max-width: 920px;
    margin: 0 auto;
}

.bp-programs-page-hero-content span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--bp-soft-green);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-programs-page-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

.bp-programs-page-hero-content p {
    max-width: 720px;
    margin: 24px auto 0;
    color: rgba(255,255,255,0.76);
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   PROGRAMS INTRO
========================= */

.bp-programs-intro-section {
    padding: 80px 20px 40px;
}

.bp-programs-intro-box {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.bp-programs-intro-box span {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-programs-intro-box h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.bp-programs-intro-box p {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(255,255,255,0.66);
    font-size: 0.98rem;
    line-height: 1.8;
}


/* =========================
   PROGRAM DETAIL SECTIONS
========================= */

.bp-programs-list-section {
    padding: 60px 20px 100px;
}

.bp-program-detail-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 48px;
    margin-bottom: 95px;
}

.bp-program-detail-card.reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.bp-program-detail-card.reverse .bp-program-detail-image {
    order: 2;
}

.bp-program-detail-card.reverse .bp-program-detail-content {
    order: 1;
}

.bp-program-detail-image {
    position: relative;
    height: 440px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.bp-program-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* soft blend on image */
.bp-program-detail-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2,6,4,0.35), transparent 28%),
        linear-gradient(to left, rgba(2,6,4,0.35), transparent 28%),
        linear-gradient(to top, rgba(2,6,4,0.45), transparent 35%);
    pointer-events: none;
}

.bp-program-detail-content {
    position: relative;
    padding: 0;
    max-width: 620px;
}

.bp-program-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: rgba(39,192,132,0.12);
    border: 1px solid rgba(39,192,132,0.25);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.bp-program-icon i {
    color: var(--bp-soft-green);
    font-size: 1.65rem;
}

.bp-program-detail-content span {
    display: inline-block;
    color: var(--bp-soft-green);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.bp-program-detail-content h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.bp-program-detail-content p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 0.96rem;
    line-height: 1.85;
}

.bp-program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.bp-program-tags small {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.76rem;
    font-weight: 700;
}

/* subtle color accents */
.bp-program-detail-card.orange .bp-program-icon {
    background: rgba(255,122,24,0.12);
    border-color: rgba(255,122,24,0.28);
}

.bp-program-detail-card.orange .bp-program-icon i,
.bp-program-detail-card.orange .bp-program-detail-content span {
    color: #ffb15c;
}

.bp-program-detail-card.blue .bp-program-icon {
    background: rgba(79,195,255,0.12);
    border-color: rgba(79,195,255,0.28);
}

.bp-program-detail-card.blue .bp-program-icon i,
.bp-program-detail-card.blue .bp-program-detail-content span {
    color: var(--bp-blue);
}

.bp-program-detail-card.purple .bp-program-icon {
    background: rgba(127,90,240,0.14);
    border-color: rgba(127,90,240,0.28);
}

.bp-program-detail-card.purple .bp-program-icon i,
.bp-program-detail-card.purple .bp-program-detail-content span {
    color: #b9a7ff;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .bp-program-detail-card,
    .bp-program-detail-card.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 70px;
    }

    .bp-program-detail-card.reverse .bp-program-detail-image,
    .bp-program-detail-card.reverse .bp-program-detail-content {
        order: initial;
    }

    .bp-program-detail-image {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .bp-programs-list-section {
        padding: 45px 18px 75px;
    }

    .bp-program-detail-card {
        margin-bottom: 60px;
    }

    .bp-program-detail-image {
        height: 280px;
        border-radius: 26px;
    }

    .bp-program-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .bp-program-icon i {
        font-size: 1.45rem;
    }

    .bp-program-detail-content h2 {
        font-size: 1.9rem;
    }

    .bp-program-detail-content p {
        font-size: 0.9rem;
    }
}

/* =========================
   HERO
========================= */

.bp-cocurricula-hero {
    position: relative;
    min-height: 70vh;
    padding: 160px 20px 100px;
    display: flex;
    align-items: center;
    text-align: center;
}

.bp-cocurricula-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-cocurricula-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-cocurricula-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.95)),
        radial-gradient(circle at center, rgba(39,192,132,0.14), transparent 45%);
}

.bp-cocurricula-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.bp-cocurricula-hero-content span {
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-cocurricula-hero-content h1 {
    margin: 16px 0;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.bp-cocurricula-hero-content p {
    color: rgba(255,255,255,0.75);
}


/* =========================
   INTRO
========================= */

.bp-cocurricula-intro {
    padding: 80px 20px 40px;
}


/* =========================
   CARDS
========================= */

.bp-cocurricula-cards {
    padding: 10px 20px 100px;
}

.bp-cocurricula-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bp-cocurricula-card {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 70px rgba(0,0,0,0.4);
    transition: 0.35s ease;
}

.bp-cocurricula-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.bp-card-content {
    padding: 24px;
}

.bp-card-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 800;
}

.bp-card-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bp-cocurricula-card:hover {
    transform: translateY(-6px);
    border-color: rgba(39,192,132,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .bp-cocurricula-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bp-cocurricula-grid {
        grid-template-columns: 1fr;
    }

    .bp-cocurricula-hero {
        padding: 140px 18px 80px;
    }

    .bp-cocurricula-cards {
        padding: 50px 18px 70px;
    }
}

/* =========================
   BOARDING HERO
========================= */

.bp-boarding-hero {
    position: relative;
    min-height: 70vh;
    padding: 160px 20px 100px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bp-boarding-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-boarding-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-boarding-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.95)),
        radial-gradient(circle at center, rgba(39,192,132,0.14), transparent 45%);
}

.bp-boarding-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(to bottom, transparent, var(--bp-black));
    z-index: -1;
}

.bp-boarding-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.bp-boarding-hero-content span {
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-boarding-hero-content h1 {
    margin: 16px 0;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #fff;
    text-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

.bp-boarding-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}


/* =========================
   BOARDING INTRO
========================= */

.bp-boarding-intro-section {
    padding: 80px 20px 30px;
}


/* =========================
   BOARDING STORY
========================= */

.bp-boarding-story-section {
    padding: 60px 20px 100px;
}

.bp-boarding-story-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 46px;
    align-items: center;
}

.bp-boarding-story-image {
    height: 500px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.bp-boarding-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-boarding-story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2,6,4,0.45), transparent 30%),
        linear-gradient(to left, rgba(2,6,4,0.45), transparent 30%),
        linear-gradient(to top, rgba(2,6,4,0.55), transparent 36%);
    pointer-events: none;
}

.bp-boarding-story-content {
    max-width: 650px;
}

.bp-boarding-story-content span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-boarding-story-content h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.bp-boarding-story-content p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.68);
    font-size: 0.96rem;
    line-height: 1.85;
}


/* =========================
   BOARDING BRIGHT CARDS (JOURNEY STYLE)
========================= */

.bp-boarding-features-section {
    position: relative;
    padding: 80px 20px 100px;
}

/* GRID */

.bp-boarding-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */

.bp-boarding-card {
    position: relative;
    min-height: 220px;
    padding: 26px 22px;
    border-radius: 26px;
    overflow: hidden;
    color: #fff;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);

    transition: 0.35s ease;
}

/* DECORATION (same feel as journey cards) */

.bp-boarding-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -40px;
    top: -40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: 0.35s ease;
}

.bp-boarding-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    opacity: 0.5;
}

/* COLORS (aligned with your theme) */

.bp-boarding-card.yellow {
    background: linear-gradient(135deg, #ffb347, #ff7a18);
}

.bp-boarding-card.blue {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.bp-boarding-card.pink {
    background: linear-gradient(135deg, #ff5f9e, #ff3d81);
}

.bp-boarding-card.green {
    background: linear-gradient(135deg, #00b894, #2ecc71);
}

/* ICON */

.bp-boarding-card-art {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bp-boarding-card-art i {
    font-size: 1.6rem;
    color: #fff;
}

/* TEXT */

.bp-boarding-card h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.bp-boarding-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.92);
}

/* HOVER (SUBTLE, CLEAN) */

.bp-boarding-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 26px 60px rgba(0,0,0,0.45);
}

.bp-boarding-card:hover::before {
    transform: scale(1.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .bp-boarding-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bp-boarding-features-section {
        padding: 70px 18px 80px;
    }

    .bp-boarding-card-grid {
        grid-template-columns: 1fr;
    }

    .bp-boarding-card {
        min-height: 200px;
        border-radius: 22px;
    }

    .bp-boarding-card h3 {
        font-size: 1.25rem;
    }

    .bp-boarding-card p {
        font-size: 0.85rem;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .bp-boarding-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bp-boarding-story-layout {
        grid-template-columns: 1fr;
    }

    .bp-boarding-story-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .bp-boarding-hero {
        min-height: 62vh;
        padding: 145px 18px 80px;
    }

    .bp-boarding-intro-section {
        padding: 70px 18px 20px;
    }

    .bp-boarding-story-section {
        padding: 50px 18px 75px;
    }

    .bp-boarding-story-image {
        height: 300px;
        border-radius: 26px;
    }

    .bp-boarding-story-content h2 {
        font-size: 1.9rem;
    }

    .bp-boarding-story-content p {
        font-size: 0.9rem;
    }

    .bp-boarding-features-section {
        padding: 70px 18px 80px;
    }

    .bp-boarding-card-grid {
        grid-template-columns: 1fr;
    }

    .bp-boarding-card {
        min-height: 245px;
        border-radius: 26px;
    }
}

/* =========================
   GALLERY PAGE HERO
========================= */

.bp-gallery-hero {
    position: relative;
    min-height: 70vh;
    padding: 160px 20px 100px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bp-gallery-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-gallery-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-gallery-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.95)),
        radial-gradient(circle at center, rgba(39,192,132,0.14), transparent 45%);
}

.bp-gallery-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(to bottom, transparent, var(--bp-black));
    z-index: -1;
}

.bp-gallery-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.bp-gallery-hero-content span {
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-gallery-hero-content h1 {
    margin: 16px 0;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #fff;
    text-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

.bp-gallery-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}


/* =========================
   GALLERY INTRO
========================= */

.bp-gallery-intro-section {
    padding: 80px 20px 40px;
}


/* =========================
   GALLERY SHOWCASE
========================= */

.bp-gallery-showcase-section {
    padding: 50px 20px 110px;
}

.bp-gallery-category {
    margin-bottom: 90px;
}

.bp-gallery-category:last-child {
    margin-bottom: 0;
}

.bp-gallery-category h3 {
    text-align: center;
    margin: 0 0 32px;
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.bp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bp-gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    cursor: zoom-in;
    box-shadow:
        0 22px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: 0.35s ease;
}

.bp-gallery-grid img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        0 0 30px rgba(39,192,132,0.08);
}

/* =========================
   RESPONSIVE GALLERY
========================= */

@media (max-width: 992px) {
    .bp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bp-gallery-hero {
        min-height: 62vh;
        padding: 145px 18px 80px;
    }

    .bp-gallery-intro-section {
        padding: 70px 18px 25px;
    }

    .bp-gallery-showcase-section {
        padding: 40px 18px 80px;
    }

    .bp-gallery-category {
        margin-bottom: 60px;
    }

    .bp-gallery-category h3 {
        margin-bottom: 24px;
        font-size: clamp(1.45rem, 7vw, 2.2rem);
    }
}

@media (max-width: 576px) {
    .bp-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bp-gallery-grid img {
        height: 240px;
        border-radius: 22px;
    }
}

/* =========================
   GALLERY LIGHTBOX
========================= */

.bp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
}

.bp-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bp-lightbox img {
    max-width: 86vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 35px 100px rgba(0,0,0,0.8);
}

.bp-lightbox-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s ease;
    cursor: pointer;
}

.bp-lightbox-close:hover {
    background: rgba(39,192,132,0.22);
    transform: rotate(90deg);
}

.bp-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: 0.3s ease;
    cursor: pointer;
}

.bp-lightbox-arrow.left {
    left: 28px;
}

.bp-lightbox-arrow.right {
    right: 28px;
}

.bp-lightbox-arrow:hover {
    background: rgba(39,192,132,0.22);
    color: #fff;
}

/* MOBILE LIGHTBOX */

@media (max-width: 768px) {
    .bp-lightbox img {
        max-width: 92vw;
        max-height: 76vh;
        border-radius: 18px;
    }

    .bp-lightbox-close {
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
    }

    .bp-lightbox-arrow {
        top: auto;
        bottom: 24px;
        transform: none;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .bp-lightbox-arrow.left {
        left: calc(50% - 62px);
    }

    .bp-lightbox-arrow.right {
        right: calc(50% - 62px);
    }
}

/* CONTACT PAGE */

.bp-contact-hero {
    position: relative;
    min-height: 58vh;
    padding: 150px 20px 80px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bp-contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bp-contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-contact-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(2,6,4,0.55), rgba(2,6,4,0.95)),
        radial-gradient(circle at center, rgba(39,192,132,0.12), transparent 45%);
}

.bp-contact-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.bp-contact-hero-content span {
    color: var(--bp-soft-green);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-contact-hero-content h1 {
    margin: 16px 0;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.bp-contact-hero-content p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

/* LAYOUT */

.bp-contact-layout-section {
    padding: 80px 20px 110px;
}

.bp-contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 30px;
    align-items: stretch;
}

.bp-contact-info-panel {
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(39,192,132,0.12), transparent 40%),
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}

.bp-contact-info-item {
    min-height: 132px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.bp-contact-info-item:last-child {
    border-bottom: none;
}

.bp-contact-info-item h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.bp-contact-info-item p {
    margin: 0;
    color: rgba(255,255,255,0.66);
    line-height: 1.7;
    font-size: 0.92rem;
}

.bp-contact-info-item a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: 0.3s ease;
}

.bp-contact-info-item a:hover {
    color: var(--bp-soft-green);
}

.bp-contact-info-item > i {
    color: var(--bp-soft-green);
    font-size: 1.45rem;
    min-width: 28px;
    text-shadow: 0 0 22px rgba(39,192,132,0.35);
}

.bp-contact-socials {
    display: flex;
    gap: 12px;
}

.bp-contact-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(39,192,132,0.12);
    border: 1px solid rgba(39,192,132,0.25);
    color: #fff;
    transition: 0.35s ease;
}

.bp-contact-socials a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--bp-green), var(--bp-soft-green));
    color: #fff;
}

/* MAP */

.bp-contact-map-panel {
    min-height: 565px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.12);
}

.bp-contact-map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%) contrast(95%);
}

/* MOBILE */

@media (max-width: 992px) {
    .bp-contact-layout {
        grid-template-columns: 1fr;
    }

    .bp-contact-map-panel {
        min-height: 430px;
    }
}

@media (max-width: 768px) {
    .bp-contact-hero {
        min-height: 55vh;
        padding: 140px 18px 70px;
    }

    .bp-contact-layout-section {
        padding: 60px 18px 80px;
    }

    .bp-contact-info-item {
        min-height: auto;
        padding: 22px;
        align-items: flex-start;
    }

    .bp-contact-map-panel {
        min-height: 360px;
        border-radius: 24px;
    }
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.bp-floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 3500;

    height: 62px;
    width: 62px;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: flex-start; /* important */

    padding: 0 18px; /* gives room when expanded */

    color: #fff;
    text-decoration: none;

    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.25), transparent 38%),
        linear-gradient(135deg, #0f6b4b,#085223);

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.45),
        0 0 30px rgba(37,211,102,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);

    overflow: hidden;
    transition: 0.35s ease;
}

/* ICON stays centered */
.bp-floating-whatsapp i {
    font-size: 1.65rem;
    min-width: 26px; /* keeps icon fixed */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TEXT */
.bp-floating-whatsapp span {
    margin-left: 10px;

    width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;

    font-size: 0.9rem;
    font-weight: 800;

    transition: 0.35s ease;
}

/* HOVER EXPANSION */
.bp-floating-whatsapp:hover {
    width: 170px; /* more space for text */
    transform: translateY(-5px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.55),
        0 0 40px rgba(37,211,102,0.35);
}

.bp-floating-whatsapp:hover span {
    width: 120px; /* allows longer text */
    opacity: 1;
}

/* LIGHT SWIPE EFFECT */
.bp-floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: translateX(-100%) rotate(25deg);
    transition: 0.65s ease;
}

.bp-floating-whatsapp:hover::before {
    transform: translateX(100%) rotate(25deg);
}

/* MOBILE */

@media (max-width: 768px) {
    .bp-floating-whatsapp {
        right: 18px;
        bottom: 18px;
        height: 56px;
        width: 56px;
        padding: 0 14px;
    }

    .bp-floating-whatsapp i {
        font-size: 1.45rem;
    }

    .bp-floating-whatsapp:hover {
        width: 170px;
    }

    .bp-floating-whatsapp:hover span {
        width: 100px;
    }
}