/* ============================================================
     *  HOME PAGE — Section Styles (uses header.php CSS variables)
     * ============================================================ */

    .bs-section { padding: 2rem 0; }
    .bs-section--alt { background: var(--surface-2); }
    .bs-section--dark { background: #0F172A; }

    .bs-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.25);
        color: var(--accent);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.3rem 0.85rem;
        border-radius: 999px;
        margin-bottom: 0.85rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-eyebrow:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px var(--accent-glow);
    }

    .bs-heading {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: var(--text-1);
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        margin-bottom: 0.5rem;
    }
    .bs-heading .accent { 
        color: var(--accent);
        position: relative;
    }
    .bs-heading .accent::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent);
        border-radius: 2px;
        opacity: 0.3;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-section:hover .bs-heading .accent::after {
        transform: scaleX(1);
    }

    .bs-sub {
        color: var(--text-3);
        font-size: 1rem;
        max-width: 620px;
    }

    .bs-section__head { margin-bottom: 2.75rem; }
    .bs-section__head.text-center .bs-sub { margin-inline: auto; }

    /* ============================================================
     *  ENHANCED ANIMATIONS
     * ============================================================ */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(60px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-40px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes fadeInLeft {
        from { opacity: 0; transform: translateX(-60px) scale(0.95) rotate(-3deg); }
        to { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
    }
    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(60px) scale(0.95) rotate(3deg); }
        to { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
    }
    @keyframes scaleIn {
        from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
        to { opacity: 1; transform: scale(1) rotate(0deg); }
    }
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(2deg); }
    }
    @keyframes floatSlow {
        0%, 100% { transform: translateY(0) scale(1); }
        33% { transform: translateY(-10px) scale(1.02); }
        66% { transform: translateY(5px) scale(0.98); }
    }
    @keyframes pulseGlow {
        0%, 100% { box-shadow: 0 0 20px rgba(16,185,129,0.1); }
        50% { box-shadow: 0 0 60px rgba(16,185,129,0.4), 0 0 120px rgba(16,185,129,0.1); }
    }
    @keyframes shimmerMove {
        0% { background-position: -300% 0; }
        100% { background-position: 300% 0; }
    }
    @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-80px) scale(0.9) rotate(-5deg); }
        to { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(80px) scale(0.9) rotate(5deg); }
        to { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); }
    }
    @keyframes zoomIn {
        from { opacity: 0; transform: scale(0.3) rotate(-15deg); }
        to { opacity: 1; transform: scale(1) rotate(0deg); }
    }
    @keyframes bounceIn {
        0% { opacity: 0; transform: scale(0.3) rotate(-20deg); }
        50% { opacity: 1; transform: scale(1.1) rotate(3deg); }
        70% { transform: scale(0.95) rotate(-2deg); }
        100% { transform: scale(1) rotate(0deg); }
    }
    @keyframes rotateIn {
        from { opacity: 0; transform: rotate(-40deg) scale(0.5); }
        to { opacity: 1; transform: rotate(0deg) scale(1); }
    }
    @keyframes flipIn {
        from { opacity: 0; transform: perspective(600px) rotateY(-90deg) scale(0.8); }
        to { opacity: 1; transform: perspective(600px) rotateY(0deg) scale(1); }
    }
    @keyframes glowPulse {
        0%, 100% { box-shadow: 0 0 20px rgba(16,185,129,0.2); }
        50% { box-shadow: 0 0 60px rgba(16,185,129,0.5), 0 0 100px rgba(16,185,129,0.2); }
    }
    @keyframes tilt {
        0%, 100% { transform: rotate(0deg) scale(1); }
        25% { transform: rotate(2deg) scale(1.02); }
        75% { transform: rotate(-2deg) scale(0.98); }
    }
    @keyframes wavy {
        0%, 100% { transform: translateY(0); }
        25% { transform: translateY(-8px); }
        75% { transform: translateY(8px); }
    }
    @keyframes spinSlow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    @keyframes borderGlow {
        0%, 100% { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
        50% { border-color: var(--warm); box-shadow: 0 0 40px var(--warm-glow); }
    }

    .anim-fade-up { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-fade-down { opacity: 0; animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-fade-left { opacity: 0; animation: fadeInLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-fade-right { opacity: 0; animation: fadeInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-scale { opacity: 0; animation: scaleIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-float { animation: float 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
    .anim-float-slow { animation: floatSlow 6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
    .anim-pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }
    .anim-slide-left { opacity: 0; animation: slideInLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-slide-right { opacity: 0; animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-zoom { opacity: 0; animation: zoomIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-bounce { opacity: 0; animation: bounceIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-rotate { opacity: 0; animation: rotateIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-flip { opacity: 0; animation: flipIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .anim-glow-pulse { animation: glowPulse 3s ease-in-out infinite; }
    .anim-tilt { animation: tilt 5s ease-in-out infinite; }
    .anim-wavy { animation: wavy 3s ease-in-out infinite; }
    .anim-spin-slow { animation: spinSlow 20s linear infinite; }
    .anim-border-glow { animation: borderGlow 2s ease-in-out infinite; }

    .anim-delay-1 { animation-delay: 0.1s; }
    .anim-delay-2 { animation-delay: 0.2s; }
    .anim-delay-3 { animation-delay: 0.3s; }
    .anim-delay-4 { animation-delay: 0.4s; }
    .anim-delay-5 { animation-delay: 0.5s; }
    .anim-delay-6 { animation-delay: 0.6s; }
    .anim-delay-7 { animation-delay: 0.7s; }
    .anim-delay-8 { animation-delay: 0.8s; }
    .anim-delay-9 { animation-delay: 0.9s; }
    .anim-delay-10 { animation-delay: 1s; }
    .anim-delay-11 { animation-delay: 1.1s; }
    .anim-delay-12 { animation-delay: 1.2s; }
    .anim-delay-13 { animation-delay: 1.3s; }
    .anim-delay-14 { animation-delay: 1.4s; }
    .anim-delay-15 { animation-delay: 1.5s; }

    .anim-stagger > * {
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .anim-stagger > *:nth-child(1) { animation-delay: 0.05s; }
    .anim-stagger > *:nth-child(2) { animation-delay: 0.1s; }
    .anim-stagger > *:nth-child(3) { animation-delay: 0.15s; }
    .anim-stagger > *:nth-child(4) { animation-delay: 0.2s; }
    .anim-stagger > *:nth-child(5) { animation-delay: 0.25s; }
    .anim-stagger > *:nth-child(6) { animation-delay: 0.3s; }
    .anim-stagger > *:nth-child(7) { animation-delay: 0.35s; }
    .anim-stagger > *:nth-child(8) { animation-delay: 0.4s; }
    .anim-stagger > *:nth-child(9) { animation-delay: 0.45s; }
    .anim-stagger > *:nth-child(10) { animation-delay: 0.5s; }
    .anim-stagger > *:nth-child(11) { animation-delay: 0.55s; }
    .anim-stagger > *:nth-child(12) { animation-delay: 0.6s; }

    .hover-lift {
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hover-lift:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 30px 80px -20px var(--accent-glow);
    }
    .hover-glow {
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hover-glow:hover {
        border-color: var(--accent);
        box-shadow: 0 0 50px var(--accent-glow);
    }
    .hover-rotate:hover {
        transform: rotate(-5deg) scale(1.05);
    }
    .hover-shimmer {
        background-size: 300% 100%;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hover-shimmer:hover {
        animation: shimmerMove 1.5s ease infinite;
        background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface));
        background-size: 300% 100%;
    }
    .hover-scale-glow:hover {
        transform: scale(1.08);
        box-shadow: 0 0 60px var(--accent-glow);
    }
    .hover-tilt:hover {
        transform: rotate(3deg) scale(1.05);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* ============================================================
     *  HORIZONTAL SCROLL - FIXED
     * ============================================================ */
    .bs-scroll-horizontal {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0;
        padding-right: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        scroll-behavior: smooth;
        scroll-padding: 0;
        position: relative;
    }
    .bs-scroll-horizontal:active {
        cursor: grabbing;
    }
    .bs-scroll-horizontal::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    .bs-scroll-horizontal > * {
        flex: 0 0 20%;
        min-width: 220px;
        scroll-snap-align: start;
        cursor: pointer;
        scroll-snap-stop: always;
        scroll-margin: 0;
        margin-right: 0;
    }
    .bs-scroll-horizontal > *:last-child {
        margin-right: 0;
    }

    @media (max-width: 1199px) {
        .bs-scroll-horizontal > * { flex: 0 0 25%; min-width: 200px; }
    }
    @media (max-width: 991px) {
        .bs-scroll-horizontal > * { flex: 0 0 33.33%; min-width: 180px; }
    }
    @media (max-width: 767px) {
        .bs-scroll-horizontal { gap: 0.75rem; cursor: grab; }
        .bs-scroll-horizontal > * { flex: 0 0 70%; min-width: 160px; }
    }
    @media (max-width: 480px) {
        .bs-scroll-horizontal > * { flex: 0 0 80%; min-width: 140px; }
    }

    /* ---------- HERO - COMPACT ---------- */
    .bs-hero {
        position: relative;
        min-height: 45vh;
        max-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        text-align: center;
    }
    .bs-hero__media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .bs-hero__media video,
    .bs-hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .bs-hero__media .bs-hero-slider {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .bs-hero__media .bs-hero-slider img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.8s ease;
    }
    .bs-hero__media .bs-hero-slider img.active {
        opacity: 1;
    }
    .bs-hero__media .bs-hero-slider-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        gap: 8px;
    }
    .bs-hero__media .bs-hero-slider-nav button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: 1px solid rgba(255,255,255,0.3);
        color: #fff;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        backdrop-filter: blur(6px);
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bs-hero__media .bs-hero-slider-nav button:hover {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 0 30px var(--accent-glow);
    }
    .bs-hero__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15,23,42,0.72) 0%, rgba(15,23,42,0.35) 55%, rgba(249,115,22,0.18) 100%);
        z-index: 1;
    }
    .bs-hero__overlay-glow {
        position: absolute;
        inset: 0;
        background: var(--gradient_glow, linear-gradient(135deg, rgba(14,165,233,0.12) 0%, rgba(249,115,22,0.12) 100%));
        mix-blend-mode: overlay;
        pointer-events: none;
        z-index: 1;
    }
    .bs-hero__content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        padding: 2rem 0;
    }
    .bs-hero__eyebrow {
        display: inline-flex; align-items: center; gap: 0.5rem;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.25);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.3rem 0.8rem;
        border-radius: 999px;
        margin-bottom: 0.75rem;
        backdrop-filter: blur(6px);
        animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-hero__eyebrow i { color: var(--accent-l); }
    .bs-hero h1 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: #fff;
        margin-bottom: 0.75rem;
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    }
    .bs-hero h1 .accent { color: var(--warm-l); }
    .bs-hero p {
        color: rgba(255,255,255,0.85);
        font-size: 1rem;
        margin-bottom: 1.25rem;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    }

    .bs-hero__search {
        background: var(--surface);
        border-radius: 14px;
        padding: 0.4rem;
        box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        max-width: 580px;
        margin: 0 auto;
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-hero__search:hover {
        box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        transform: scale(1.02);
    }
    .bs-hero__search input {
        flex: 1;
        min-width: 180px;
        border: none;
        outline: none;
        background: transparent;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        color: var(--text-1);
        transition: all 0.3s ease;
    }
    .bs-hero__search input:focus {
        transform: scale(1.02);
    }
    .bs-hero__search input::placeholder { color: var(--text-4); }
    .bs-hero__search button {
        border: none;
        background: var(--warm);
        color: #fff;
        font-weight: 700;
        padding: 0.7rem 1.5rem;
        border-radius: 10px;
        font-size: 0.9rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: inline-flex; align-items: center; gap: 0.4rem;
        white-space: nowrap;
    }
    .bs-hero__search button:hover {
        background: var(--warm-light);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 30px rgba(249,115,22,0.5);
    }

    /* ---------- LEFT ALIGN SECTION HEADERS ---------- */
    .bs-section__head--left {
        text-align: left;
        margin-bottom: 2.5rem;
    }
    .bs-section__head--left .bs-eyebrow {
        margin-left: 0;
    }
    .bs-section__head--left .bs-heading {
        margin-left: 0;
    }
    .bs-section__head--left .bs-sub {
        margin-left: 0;
        max-width: 600px;
    }

    /* ---------- ABOUT ---------- */
    .bs-about__img-wrap {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        min-height: 420px;
        box-shadow: 0 24px 60px -20px rgba(15,23,42,0.25);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-about__img-wrap:hover {
        transform: scale(1.02) rotate(-1deg);
        box-shadow: 0 30px 80px -20px var(--accent-glow);
    }
    .bs-about__img-wrap img {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-about__img-wrap:hover img {
        transform: scale(1.08);
    }
    .bs-about__badge {
        position: absolute;
        bottom: 1.5rem; left: 1.5rem;
        background: var(--surface);
        border-radius: 14px;
        padding: 1rem 1.25rem;
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        display: flex; align-items: center; gap: 0.85rem;
        animation: bounceIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-about__badge:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 20px 50px var(--accent-glow);
    }
    .bs-about__badge-icon {
        width: 46px; height: 46px;
        display: inline-flex; align-items: center; justify-content: center;
        background: var(--accent);
        color: #fff;
        border-radius: 12px;
        font-size: 1.1rem;
        animation: float 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    }
    .bs-about__badge strong { display: block; color: var(--text-1); font-size: 1.1rem; }
    .bs-about__badge span { color: var(--text-3); font-size: 0.78rem; }

    .bs-about__feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem 1.25rem;
        margin-top: 1.75rem;
    }
    .bs-about__feature {
        display: flex; align-items: center; gap: 0.65rem;
        color: var(--text-2);
        font-size: 0.92rem;
        font-weight: 500;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: default;
    }
    .bs-about__feature:hover {
        color: var(--accent);
        transform: translateX(10px) scale(1.02);
    }
    .bs-about__feature i {
        width: 28px; height: 28px;
        display: inline-flex; align-items: center; justify-content: center;
        background: rgba(16,185,129,0.1);
        color: var(--accent);
        border-radius: 8px;
        font-size: 0.75rem;
        flex-shrink: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-about__feature:hover i {
        background: var(--accent);
        color: #fff;
        transform: scale(1.15) rotate(-12deg);
        box-shadow: 0 0 30px var(--accent-glow);
    }

    /* ---------- SERVICES ---------- */
    .bs-service-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        height: 100%;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    .bs-service-card::before {
        content: '';
        position: absolute; inset: 0;
        background: var(--gradient_glow, linear-gradient(135deg, rgba(14,165,233,0.1) 0%, rgba(249,115,22,0.1) 100%));
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-service-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform: scale(0.5);
    }
    .bs-service-card:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--accent);
        box-shadow: 0 30px 80px -20px var(--accent-glow);
    }
    .bs-service-card:hover::before { opacity: 1; }
    .bs-service-card:hover::after { opacity: 1; transform: scale(1); }
    .bs-service-card > * { position: relative; z-index: 1; }
    .bs-service-card__icon {
        width: 56px; height: 56px;
        display: inline-flex; align-items: center; justify-content: center;
        background: rgba(16,185,129,0.1);
        color: var(--accent);
        border-radius: 14px;
        font-size: 1.3rem;
        margin: 0 auto 1rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-service-card:hover .bs-service-card__icon {
        background: var(--accent);
        color: #fff;
        transform: scale(1.2) rotate(-15deg);
        box-shadow: 0 0 40px var(--accent-glow);
    }
    .bs-service-card h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        color: var(--text-1);
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        transition: all 0.4s ease;
    }
    .bs-service-card:hover h5 {
        color: var(--accent);
        transform: scale(1.02);
    }
    .bs-service-card p {
        color: var(--text-3);
        font-size: 0.82rem;
        margin: 0;
        line-height: 1.5;
    }

    /* ---------- DESTINATIONS ---------- */
    .bs-dest-card {
        position: relative;
        display: block;
        border-radius: 16px;
        overflow: hidden;
        min-height: 220px;
        text-decoration: none;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-dest-card img {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-dest-card::after {
        content: '';
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0) 55%);
        transition: opacity 0.4s ease;
    }
    .bs-dest-card:hover img { transform: scale(1.15); }
    .bs-dest-card:hover { 
        transform: translateY(-10px) scale(1.03); 
        box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
    }
    .bs-dest-card__tag {
        position: absolute; top: 1rem; left: 1rem; z-index: 2;
        background: var(--accent);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-dest-card:hover .bs-dest-card__tag {
        transform: scale(1.1);
        box-shadow: 0 0 30px var(--accent-glow);
    }
    .bs-dest-card__title {
        position: absolute; bottom: 1rem; left: 1.25rem; z-index: 2;
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 1.15rem;
        transition: all 0.4s ease;
    }
    .bs-dest-card:hover .bs-dest-card__title {
        transform: translateY(-5px) scale(1.05);
        text-shadow: 0 0 30px rgba(255,255,255,0.3);
    }
    .bs-dest-card--lg { min-height: 460px; }

    /* Mobile horizontal scroll for destinations */
    @media (max-width: 767px) {
        .bs-dest-scroll {
            display: flex !important;
            flex-wrap: nowrap !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            gap: 0.75rem !important;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            scroll-behavior: smooth;
            scroll-padding: 0;
        }
        .bs-dest-scroll::-webkit-scrollbar {
            display: none;
        }
        .bs-dest-scroll > * {
            flex: 0 0 70% !important;
            min-width: 200px !important;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            scroll-margin: 0;
        }
        .bs-dest-scroll .bs-dest-card--lg {
            min-height: 300px;
        }
        .bs-dest-scroll .bs-dest-card {
            min-height: 200px;
        }
    }

    /* ---------- HOMESTAY / PACKAGE CARDS ---------- */
    .bs-package-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        min-width: 0;
    }
    .bs-package-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 30px 80px -20px rgba(15,23,42,0.25);
        border-color: var(--border-strong);
    }
    .bs-package-card__img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
    .bs-package-card__img img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-package-card:hover .bs-package-card__img img { transform: scale(1.15); }
    .bs-package-card__price {
        position: absolute; top: 0.5rem; right: 0.5rem;
        background: var(--surface);
        color: var(--accent);
        font-weight: 700;
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-package-card:hover .bs-package-card__price {
        transform: scale(1.1);
        box-shadow: 0 0 30px var(--accent-glow);
    }
    .bs-package-card__meta {
        display: flex;
        border-bottom: 1px solid var(--border);
        flex-wrap: wrap;
    }
    .bs-package-card__meta span {
        flex: 1;
        text-align: center;
        font-size: 0.65rem;
        color: var(--text-3);
        padding: 0.4rem 0;
        border-right: 1px solid var(--border);
        min-width: 0;
        transition: all 0.4s ease;
    }
    .bs-package-card:hover .bs-package-card__meta span {
        color: var(--text-1);
        transform: scale(1.02);
    }
    .bs-package-card__meta span:last-child { border-right: none; }
    .bs-package-card__meta i { color: var(--accent); margin-right: 0.2rem; font-size: 0.6rem; }
    .bs-package-card__body { padding: 0.85rem; text-align: center; }
    .bs-package-card__stars { color: var(--warm); font-size: 0.7rem; margin-bottom: 0.3rem; }
    .bs-package-card__body h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-1);
        margin-bottom: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 0.4s ease;
    }
    .bs-package-card:hover .bs-package-card__body h3 {
        color: var(--accent);
        transform: scale(1.02);
    }
    .bs-package-card__body p {
        color: var(--text-3);
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .bs-package-card__actions { display: flex; gap: 0.3rem; flex-wrap: wrap; }
    .bs-btn-pill {
        flex: 1;
        display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem;
        padding: 0.4rem 0.6rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.7rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        min-width: 0;
    }
    .bs-btn-pill--ghost {
        background: var(--surface-2);
        color: var(--text-2);
        border: 1px solid var(--border);
    }
    .bs-btn-pill--ghost:hover { background: var(--surface-3); color: var(--text-1); transform: scale(1.1) rotate(-3deg); }
    .bs-btn-pill--solid {
        background: var(--accent);
        color: #fff;
        border: 1px solid var(--accent);
    }
    .bs-btn-pill--solid:hover {
        background: var(--accent-light);
        box-shadow: 0 12px 30px -6px var(--accent-glow);
        transform: scale(1.1) rotate(3deg);
    }

    /* ============================================================
     *  REELS - INSTAGRAM STYLE
     * ============================================================ */
    .bs-reels-wrapper {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0.5rem 0 2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        scroll-behavior: smooth;
        scroll-padding: 0;
    }
    .bs-reels-wrapper:active {
        cursor: grabbing;
    }
    .bs-reels-wrapper::-webkit-scrollbar {
        display: none;
    }

    .bs-reel-item {
        flex: 0 0 280px;
        max-width: 280px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        scroll-margin: 0;
        border-radius: 18px;
        overflow: hidden;
        background: #0F172A;
        border: 1px solid var(--border);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        cursor: pointer;
    }
    .bs-reel-item:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--accent);
        box-shadow: 0 30px 80px -20px var(--accent-glow);
    }

    .bs-reel-item__video {
        aspect-ratio: 9/16;
        position: relative;
        overflow: hidden;
        background: #0F172A;
    }
    .bs-reel-item__video iframe {
        width: 100%;
        height: 100%;
        border: 0;
        pointer-events: none;
        object-fit: cover;
    }

    .bs-reel-item__yt-logo {
        position: absolute;
        bottom: 60px;
        right: 10px;
        z-index: 5;
        color: #fff;
        font-size: 1.8rem;
        opacity: 0.7;
        text-shadow: 0 2px 12px rgba(0,0,0,0.6);
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-reel-item:hover .bs-reel-item__yt-logo {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }

    .bs-reel-item__overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 0.8rem 0.8rem;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        color: #fff;
        pointer-events: none;
    }
    .bs-reel-item__overlay h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        margin: 0 0 0.15rem;
    }
    .bs-reel-item__overlay p {
        font-size: 0.7rem;
        opacity: 0.8;
        margin: 0;
    }
    .bs-reel-item__overlay .bs-reel-stats {
        display: flex;
        gap: 0.8rem;
        margin-top: 0.3rem;
        font-size: 0.65rem;
        opacity: 0.7;
    }

    .bs-reel-item__user {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.8rem;
        background: rgba(15,23,42,0.95);
        border-top: 1px solid var(--border);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-reel-item:hover .bs-reel-item__user {
        background: rgba(16,185,129,0.15);
    }
    .bs-reel-item__user-avatar {
        width: 24px; height: 24px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        flex-shrink: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-reel-item:hover .bs-reel-item__user-avatar {
        transform: scale(1.15) rotate(10deg);
    }
    .bs-reel-item__user-name {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-1);
    }
    .bs-reel-item__user-name span {
        font-weight: 400;
        color: var(--text-4);
        font-size: 0.6rem;
        margin-left: 0.2rem;
    }

    @media (max-width: 767px) {
        .bs-reel-item {
            flex: 0 0 55% !important;
            max-width: 55% !important;
            border-radius: 14px;
        }
        .bs-reel-item__overlay h5 { font-size: 0.7rem; }
        .bs-reel-item__overlay p { font-size: 0.6rem; }
        .bs-reel-item__overlay .bs-reel-stats { font-size: 0.55rem; gap: 0.5rem; }
        .bs-reel-item__user { padding: 0.35rem 0.6rem; }
        .bs-reel-item__user-avatar { width: 20px; height: 20px; font-size: 0.5rem; }
        .bs-reel-item__user-name { font-size: 0.6rem; }
        .bs-reel-item__user-name span { font-size: 0.5rem; }
        .bs-reel-item__yt-logo { font-size: 1.4rem; bottom: 45px; right: 8px; }
        .bs-reels-wrapper { gap: 0.75rem; padding: 0.25rem 0 1rem; cursor: grab; }
    }

    /* ---------- PROCESS ---------- */
    .bs-process-card {
        position: relative;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 3rem 1.75rem 1.75rem;
        text-align: center;
        height: 100%;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-process-card:hover {
        border-color: var(--accent);
        box-shadow: 0 30px 80px -22px var(--accent-glow);
        transform: translateY(-15px) scale(1.05);
    }
    .bs-process-card__num {
        position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
        width: 56px; height: 56px;
        display: inline-flex; align-items: center; justify-content: center;
        background: var(--accent);
        color: #fff;
        border-radius: 50%;
        font-size: 1.3rem;
        box-shadow: 0 10px 24px -6px var(--accent-glow);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-process-card:hover .bs-process-card__num {
        transform: translateX(-50%) scale(1.2) rotate(-15deg);
        box-shadow: 0 20px 50px -8px var(--accent-glow);
    }
    .bs-process-card h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        color: var(--text-1);
        margin: 0.5rem 0 0.75rem;
    }
    .bs-process-card p { color: var(--text-3); font-size: 0.9rem; margin: 0; line-height: 1.6; }
    .bs-process-divider {
        width: 40px; height: 3px;
        background: var(--warm);
        border-radius: 2px;
        margin: 0 auto 0.75rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-process-card:hover .bs-process-divider { width: 80px; }

    /* ---------- TESTIMONIALS ---------- */
    .bs-testi-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.5rem;
        text-align: center;
        height: 100%;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-testi-card:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--accent);
        box-shadow: 0 30px 80px -20px var(--accent-glow);
    }
    .bs-testi-card img {
        width: 60px; height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--surface-2);
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        margin: 0 auto 0.75rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-testi-card:hover img {
        border-color: var(--accent);
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 0 30px var(--accent-glow);
    }
    .bs-testi-card h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        color: var(--text-1);
        margin-bottom: 0.1rem;
        font-size: 0.9rem;
    }
    .bs-testi-card .bs-testi-role {
        color: var(--accent);
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 0.5rem;
    }
    .bs-testi-card p {
        color: var(--text-3);
        font-size: 0.8rem;
        line-height: 1.5;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .bs-testi-card .bs-quote-icon {
        color: var(--accent);
        opacity: 0.25;
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-testi-card:hover .bs-quote-icon {
        opacity: 0.6;
        transform: scale(1.4) rotate(10deg);
    }

    /* ---------- BOOKING ---------- */
    .bs-booking {
        position: relative;
        background:
            linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.85) 100%),
            url('https://picsum.photos/seed/bhromonsathi-booking/1920/700') center/cover no-repeat;
        color: #fff;
    }
    .bs-eyebrow--light {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.25);
        color: var(--accent-l);
    }
    .bs-heading--light { color: #fff; }
    .bs-sub--light { color: rgba(255,255,255,0.75); max-width: 100%; }
    .bs-booking__points { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
    .bs-booking__point {
        display: flex; align-items: center; gap: 0.65rem;
        font-weight: 500; font-size: 0.95rem; color: #fff;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: default;
    }
    .bs-booking__point:hover { transform: translateX(15px) scale(1.02); }
    .bs-booking__point i {
        width: 28px; height: 28px;
        display: inline-flex; align-items: center; justify-content: center;
        background: rgba(16,185,129,0.18);
        color: var(--accent-l);
        border-radius: 8px;
        font-size: 0.75rem;
        flex-shrink: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-booking__point:hover i {
        background: var(--accent);
        color: #fff;
        transform: scale(1.2) rotate(-10deg);
        box-shadow: 0 0 30px var(--accent-glow);
    }
    .bs-booking__form {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 18px;
        padding: 2rem;
        backdrop-filter: blur(10px);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-booking__form:hover {
        border-color: var(--accent);
        box-shadow: 0 0 60px var(--accent-glow);
        transform: scale(1.02);
    }
    .bs-booking__label {
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        color: rgba(255,255,255,0.7);
        margin-bottom: 0.4rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .bs-booking__input {
        width: 100%;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 10px;
        padding: 0.7rem 1rem;
        color: #fff;
        font-size: 0.92rem;
        outline: none;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-booking__input::placeholder { color: rgba(255,255,255,0.4); }
    .bs-booking__input:focus {
        border-color: var(--accent);
        background: rgba(255,255,255,0.1);
        box-shadow: 0 0 0 4px var(--accent-glow);
        transform: scale(1.02);
    }
    .bs-booking__input option { color: #0F172A; }

    /* ---------- COMMUNITY ---------- */
    .bs-community-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.75rem 1.25rem;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
    }
    .bs-community-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: var(--accent-glow);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        pointer-events: none;
    }
    .bs-community-card::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -50%;
        width: 100%;
        height: 100%;
        background: var(--warm-glow);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        pointer-events: none;
    }
    .bs-community-card:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--accent);
        box-shadow: 0 30px 80px -22px var(--accent-glow);
    }
    .bs-community-card:hover::before { opacity: 1; }
    .bs-community-card:hover::after { opacity: 0.5; }
    .bs-community-card > * { position: relative; z-index: 1; }
    .bs-community-card__icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 0.75rem;
        background: rgba(16,185,129,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--accent);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-community-card:hover .bs-community-card__icon {
        background: var(--accent);
        color: #fff;
        transform: scale(1.2) rotate(-15deg);
        box-shadow: 0 0 40px var(--accent-glow);
    }
    .bs-community-card h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        color: var(--text-1);
        margin-bottom: 0.2rem;
        font-size: 0.95rem;
    }
    .bs-community-card .bs-community-count {
        font-size: 0.75rem;
        color: var(--text-4);
        margin-bottom: 0.5rem;
        transition: all 0.4s ease;
    }
    .bs-community-card:hover .bs-community-count {
        color: var(--accent);
        transform: scale(1.05);
    }
    .bs-community-card p {
        color: var(--text-3);
        font-size: 0.8rem;
        line-height: 1.5;
        margin: 0;
    }
    .bs-community-card .bs-community-join {
        display: inline-block;
        margin-top: 0.75rem;
        padding: 0.3rem 1.2rem;
        border: 1px solid var(--accent);
        color: var(--accent);
        border-radius: 999px;
        font-size: 0.7rem;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        text-decoration: none;
    }
    .bs-community-card:hover .bs-community-join {
        background: var(--accent);
        color: #fff;
        box-shadow: 0 12px 30px -6px var(--accent-glow);
        transform: scale(1.1);
    }
    .bs-community-card .bs-community-progress {
        margin-top: 0.75rem;
        height: 3px;
        background: var(--border);
        border-radius: 2px;
        overflow: hidden;
    }
    .bs-community-card .bs-community-progress span {
        display: block;
        height: 100%;
        background: var(--accent);
        border-radius: 2px;
        transition: width 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-community-card:hover .bs-community-progress span {
        width: 100% !important;
    }

    /* ---------- TRAVEL STATS COUNTER ---------- */
    .bs-stats-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        text-align: center;
    }
    .bs-stat-item h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: #fff;
        margin: 0;
        line-height: 1.1;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-stat-item h3 .accent { color: var(--accent); }
    .bs-stat-item p {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
        margin: 0.25rem 0 0;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        transition: all 0.4s ease;
    }
    .bs-stat-item:hover h3 {
        transform: scale(1.12);
        text-shadow: 0 0 50px var(--accent-glow);
    }
    .bs-stat-item:hover p {
        color: #fff;
        transform: translateY(-3px);
    }

    /* ---------- LATEST BLOG POSTS ---------- */
    .bs-blog-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        height: 100%;
    }
    .bs-blog-card:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--accent);
        box-shadow: 0 30px 80px -20px var(--accent-glow);
    }
    .bs-blog-card__img {
        aspect-ratio: 16/9;
        overflow: hidden;
    }
    .bs-blog-card__img img {
        width: 100%; height: 100%; object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-blog-card:hover .bs-blog-card__img img { transform: scale(1.15); }
    .bs-blog-card__body { padding: 1rem 1.25rem; }
    .bs-blog-card__body .bs-blog-tag {
        display: inline-block;
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--accent);
        background: rgba(16,185,129,0.1);
        padding: 0.15rem 0.6rem;
        border-radius: 999px;
        margin-bottom: 0.4rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-blog-card:hover .bs-blog-tag {
        background: var(--accent);
        color: #fff;
        transform: scale(1.08);
        box-shadow: 0 0 20px var(--accent-glow);
    }
    .bs-blog-card__body h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text-1);
        margin-bottom: 0.3rem;
        transition: all 0.4s ease;
    }
    .bs-blog-card:hover .bs-blog-card__body h5 {
        color: var(--accent);
        transform: scale(1.02);
    }
    .bs-blog-card__body p {
        color: var(--text-3);
        font-size: 0.8rem;
        line-height: 1.5;
        margin: 0 0 0.5rem;
    }
    .bs-blog-card__body .bs-blog-meta {
        font-size: 0.7rem;
        color: var(--text-4);
    }
    .bs-blog-card__body .bs-blog-meta i { margin-right: 0.2rem; }

    /* ---------- PARTNER BRANDS ---------- */
    .bs-partners {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem 3rem;
        padding: 1.5rem 0;
    }
    .bs-partner-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        opacity: 0.5;
        padding: 0.5rem 1rem;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid transparent;
        min-width: 100px;
    }
    .bs-partner-item:hover {
        opacity: 1;
        transform: translateY(-15px) scale(1.08);
        background: rgba(255,255,255,0.1);
        border-color: var(--accent);
        box-shadow: 0 20px 60px -16px var(--accent-glow);
    }
    .bs-partner-item .bs-partner-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(16,185,129,0.08);
        border-radius: 12px;
        color: var(--accent);
        font-size: 1.4rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-partner-item:hover .bs-partner-icon {
        background: var(--accent);
        color: #fff;
        transform: scale(1.2) rotate(-12deg);
        box-shadow: 0 0 40px var(--accent-glow);
    }
    .bs-partner-item .bs-partner-name {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-3);
        letter-spacing: 0.03em;
        transition: color 0.4s ease;
    }
    .bs-partner-item:hover .bs-partner-name {
        color: var(--text-1);
        transform: scale(1.05);
    }
    .bs-partner-item .bs-partner-badge {
        font-size: 0.55rem;
        color: var(--text-4);
        background: rgba(255,255,255,0.05);
        padding: 0.1rem 0.5rem;
        border-radius: 999px;
        font-weight: 500;
        transition: all 0.4s ease;
    }
    .bs-partner-item:hover .bs-partner-badge {
        background: rgba(16,185,129,0.2);
        color: var(--accent);
        transform: scale(1.05);
    }

    /* ---------- BACK TO TOP ---------- */
    .bs-back-to-top {
        position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 999;
        width: 48px; height: 48px;
        display: inline-flex; align-items: center; justify-content: center;
        background: var(--accent);
        color: #fff;
        border-radius: 50%;
        box-shadow: 0 10px 24px -6px var(--accent-glow);
        opacity: 0; visibility: hidden; transform: translateY(12px);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        text-decoration: none;
    }
    .bs-back-to-top.bs-show { opacity: 1; visibility: visible; transform: translateY(0); }
    .bs-back-to-top:hover { 
        background: var(--accent-light); 
        color: #fff; 
        transform: scale(1.2) rotate(10deg);
        box-shadow: 0 0 40px var(--accent-glow);
    }

    /* ---------- ANNOUNCEMENT STRIP ---------- */
    .bs-announce {
        background: var(--accent);
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }
    .bs-announce__track {
        display: inline-flex;
        gap: 3rem;
        padding: 0.5rem 0;
        animation: bs-marquee 28s linear infinite;
        will-change: transform;
    }
    .bs-announce__track span {
        display: inline-flex; align-items: center; gap: 0.5rem;
        font-size: 0.82rem;
        font-weight: 600;
        padding: 0 1.5rem;
    }
    .bs-announce__track i { color: #fff; opacity: 0.9; }
    @keyframes bs-marquee {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
        .bs-announce__track { animation: none; }
    }

    /* ---------- USP CARDS ---------- */
    .bs-usp-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.75rem 1.25rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-usp-card:hover {
        transform: translateY(-15px) scale(1.05);
        border-color: var(--warm);
        box-shadow: 0 30px 80px -22px var(--warm-glow);
    }
    .bs-usp-card__icon {
        width: 48px; height: 48px;
        display: inline-flex; align-items: center; justify-content: center;
        background: rgba(249,115,22,0.1);
        color: var(--warm);
        border-radius: 12px;
        font-size: 1.2rem;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-usp-card:hover .bs-usp-card__icon {
        background: var(--warm);
        color: #fff;
        transform: scale(1.2) rotate(-12deg);
        box-shadow: 0 0 40px var(--warm-glow);
    }
    .bs-usp-card h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        color: var(--text-1);
        margin: 0;
        font-size: 0.9rem;
    }
    .bs-usp-card p {
        color: var(--text-3);
        font-size: 0.8rem;
        line-height: 1.5;
        margin: 0;
    }

    /* ---------- FAQ ACCORDION ---------- */
    .bs-faq { max-width: 820px; margin: 0 auto; }
    .bs-faq-item {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        margin-bottom: 0.85rem;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-faq-item.is-open { border-color: var(--accent); }
    .bs-faq-q {
        display: flex; align-items: center; justify-content: space-between;
        gap: 1rem;
        padding: 1.1rem 1.4rem;
        cursor: pointer;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 0.98rem;
        color: var(--text-1);
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-faq-q:hover { 
        background: rgba(16,185,129,0.08);
        padding-left: 1.8rem;
    }
    .bs-faq-q i {
        flex-shrink: 0;
        color: var(--accent);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-faq-item.is-open .bs-faq-q i { transform: rotate(180deg); }
    .bs-faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .bs-faq-item.is-open .bs-faq-a { max-height: 240px; }
    .bs-faq-a p {
        padding: 0 1.4rem 1.25rem;
        color: var(--text-3);
        font-size: 0.92rem;
        line-height: 1.65;
        margin: 0;
    }

    /* ============================================================
     *  RESPONSIVE
     * ============================================================ */
    @media (max-width: 991.98px) {
        .bs-hero { min-height: 40vh; max-height: 50vh; }
        .bs-about__feature-grid { grid-template-columns: 1fr 1fr; }
        .bs-dest-card--lg { min-height: 320px; }
        .bs-stats-grid { grid-template-columns: repeat(3, 1fr); }
        .bs-stat-item h3 { font-size: 2.2rem; }
    }

    @media (max-width: 767.98px) {
        .bs-section { padding: 2.5rem 0; }
        .bs-hero { min-height: 35vh; max-height: 45vh; padding: 1.5rem 0; }
        .bs-hero h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
        .bs-hero p { font-size: 0.85rem; margin-bottom: 0.75rem; }
        .bs-hero__search { padding: 0.3rem; border-radius: 12px; }
        .bs-hero__search input { font-size: 0.8rem; padding: 0.5rem 0.8rem; min-width: 120px; }
        .bs-hero__search button { font-size: 0.75rem; padding: 0.5rem 1rem; }
        .bs-hero__eyebrow { font-size: 0.55rem; padding: 0.2rem 0.6rem; margin-bottom: 0.4rem; }

        .bs-about__feature-grid { 
            grid-template-columns: 1fr 1fr; 
            gap: 0.3rem 0.8rem;
        }
        .bs-about__feature { font-size: 0.75rem; gap: 0.4rem; }
        .bs-about__feature i { width: 22px; height: 22px; font-size: 0.6rem; }
        .bs-about__img-wrap { min-height: 220px; }
        .bs-about__badge { padding: 0.6rem 0.8rem; bottom: 0.8rem; left: 0.8rem; }
        .bs-about__badge-icon { width: 34px; height: 34px; font-size: 0.8rem; }
        .bs-about__badge strong { font-size: 0.85rem; }
        .bs-about__badge span { font-size: 0.65rem; }

        .bs-heading { font-size: 1.5rem; }
        .bs-sub { font-size: 0.85rem; }
        .bs-eyebrow { font-size: 0.6rem; padding: 0.2rem 0.6rem; }
        .bs-section__head { margin-bottom: 1.75rem; }
        .bs-section__head--left { margin-bottom: 1.5rem; }

        .bs-usp-card { padding: 1.25rem 0.8rem; }
        .bs-usp-card__icon { width: 38px; height: 38px; font-size: 0.9rem; }
        .bs-usp-card h5 { font-size: 0.75rem; }
        .bs-usp-card p { font-size: 0.65rem; }

        .bs-service-card { padding: 1.25rem 0.8rem; }
        .bs-service-card__icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 0.6rem; }
        .bs-service-card h5 { font-size: 0.8rem; margin-bottom: 0.3rem; }
        .bs-service-card p { font-size: 0.65rem; }

        .bs-package-card__body { padding: 0.6rem; }
        .bs-package-card__body h3 { font-size: 0.75rem; }
        .bs-package-card__body p { font-size: 0.65rem; margin-bottom: 0.5rem; }
        .bs-package-card__stars { font-size: 0.6rem; }
        .bs-btn-pill { font-size: 0.6rem; padding: 0.3rem 0.4rem; }
        .bs-package-card__price { font-size: 0.6rem; padding: 0.15rem 0.4rem; }
        .bs-package-card__meta span { font-size: 0.55rem; padding: 0.25rem 0; }

        .bs-process-card { padding: 2.5rem 1rem 1.25rem; }
        .bs-process-card__num { width: 44px; height: 44px; font-size: 1rem; top: -22px; }
        .bs-process-card h5 { font-size: 0.85rem; margin: 0.3rem 0 0.4rem; }
        .bs-process-card p { font-size: 0.75rem; }
        .bs-process-divider { width: 30px; height: 2px; }

        .bs-testi-card { padding: 1rem; }
        .bs-testi-card img { width: 48px; height: 48px; margin-bottom: 0.5rem; }
        .bs-testi-card h5 { font-size: 0.75rem; }
        .bs-testi-card .bs-testi-role { font-size: 0.55rem; margin-bottom: 0.3rem; }
        .bs-testi-card p { font-size: 0.65rem; -webkit-line-clamp: 3; }
        .bs-testi-card .bs-quote-icon { font-size: 0.9rem; margin-bottom: 0.2rem; }

        .bs-community-card { padding: 1.25rem 0.8rem; }
        .bs-community-card__icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 0.5rem; }
        .bs-community-card h5 { font-size: 0.8rem; }
        .bs-community-card .bs-community-count { font-size: 0.65rem; }
        .bs-community-card p { font-size: 0.7rem; }
        .bs-community-card .bs-community-join { font-size: 0.6rem; padding: 0.2rem 0.8rem; margin-top: 0.5rem; }
        .bs-community-card .bs-community-progress { height: 2px; margin-top: 0.5rem; }

        .bs-stats-grid { 
            grid-template-columns: repeat(2, 1fr); 
            gap: 0.75rem; 
        }
        .bs-stat-item h3 { font-size: 1.5rem; }
        .bs-stat-item p { font-size: 0.6rem; }

        .bs-blog-card__body { padding: 0.6rem 0.8rem; }
        .bs-blog-card__body .bs-blog-tag { font-size: 0.5rem; padding: 0.1rem 0.4rem; }
        .bs-blog-card__body h5 { font-size: 0.75rem; margin-bottom: 0.15rem; }
        .bs-blog-card__body p { font-size: 0.65rem; margin-bottom: 0.3rem; }
        .bs-blog-card__body .bs-blog-meta { font-size: 0.55rem; }

        .bs-partners { gap: 0.75rem 1rem; padding: 0.75rem 0; }
        .bs-partner-item { min-width: 70px; padding: 0.3rem 0.6rem; }
        .bs-partner-item .bs-partner-icon { width: 36px; height: 36px; font-size: 1rem; }
        .bs-partner-item .bs-partner-name { font-size: 0.6rem; }
        .bs-partner-item .bs-partner-badge { font-size: 0.45rem; }

        .bs-booking__form { padding: 1.25rem; }
        .bs-booking__label { font-size: 0.65rem; }
        .bs-booking__input { font-size: 0.8rem; padding: 0.5rem 0.8rem; }
        .bs-booking__point { font-size: 0.8rem; }
        .bs-booking__point i { width: 22px; height: 22px; font-size: 0.6rem; }

        .bs-faq-q { font-size: 0.85rem; padding: 0.8rem 1rem; }
        .bs-faq-a p { font-size: 0.8rem; padding: 0 1rem 0.8rem; }

        .bs-announce__track span { font-size: 0.65rem; padding: 0 0.8rem; }
        .bs-announce__track { gap: 1.5rem; }

        .bs-back-to-top { width: 40px; height: 40px; font-size: 0.8rem; right: 1rem; bottom: 1rem; }
    }

    @media (max-width: 575.98px) {
        .bs-hero { min-height: 30vh; max-height: 40vh; }
        .bs-hero h1 { font-size: 1.5rem; }
        .bs-hero__search { flex-direction: column; }
        .bs-hero__search button { width: 100%; justify-content: center; }
        .bs-about__feature-grid { grid-template-columns: 1fr; }
        .bs-stats-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
        .bs-stat-item h3 { font-size: 1.3rem; }
        .bs-stat-item p { font-size: 0.55rem; }
        .bs-heading { font-size: 1.3rem; }
        .bs-section { padding: 1.5rem 0; }
        .bs-scroll-horizontal > * { flex: 0 0 80% !important; min-width: 140px !important; }
        .bs-scroll-horizontal { gap: 0.5rem !important; }
        .bs-partner-item { min-width: 60px; }
        .bs-partner-item .bs-partner-icon { width: 30px; height: 30px; font-size: 0.8rem; }
        .bs-partner-item .bs-partner-name { font-size: 0.5rem; }
    }

    /* ---------- CENTER ALIGN FOR 2-COLUMN GRIDS ---------- */
    .row.justify-content-center .col-lg-6,
    .row.justify-content-center .col-md-6 {
        display: flex;
        justify-content: center;
    }
    .row.justify-content-center .col-lg-6 > *,
    .row.justify-content-center .col-md-6 > * {
        width: 100%;
        max-width: 100%;
    }
    .bs-about__feature-grid {
        justify-items: center;
    }
    .bs-about__feature-grid .bs-about__feature {
        justify-content: flex-start;
        width: 100%;
    }

    /* ---------- VIDEO MODAL ---------- */
    .bs-video-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(12px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        animation: fadeIn 0.3s ease;
    }
    .bs-video-modal.is-open { display: flex; }
    .bs-video-modal__content {
        position: relative;
        max-width: 900px;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(0,0,0,0.6);
        background: #000;
    }
    .bs-video-modal__content iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border: 0;
        display: block;
    }
    .bs-video-modal__close {
        position: absolute;
        top: -50px;
        right: 0;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.15);
        border: none;
        border-radius: 50%;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bs-video-modal__close:hover {
        background: rgba(239, 68, 68, 0.8);
        transform: rotate(90deg) scale(1.15);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }
    @media (max-width: 480px) {
        .bs-video-modal { padding: 0.5rem; }
        .bs-video-modal__close {
            top: -36px;
            right: 0;
            width: 32px;
            height: 32px;
            font-size: 0.8rem;
        }
    }