:root {
    --shatsi-black: #050505;
    --shatsi-green: #0f2f23;
    --shatsi-green-light: #1f5b42;
    --shatsi-brown: #6b3f24;
    --shatsi-coffee: #9b6738;
    --shatsi-cream: #f4e7c5;
    --shatsi-gold: #c9a45c;
    --shatsi-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--shatsi-black);
    color: var(--shatsi-white);
    overflow-x: hidden;
}

/* ================================
   FLOATING HEADER
================================ */
.shatsi-floating-header {
    position: fixed;
    top: 26px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.shatsi-logo-wrap,
.shatsi-menu-btn {
    pointer-events: auto;
}

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

.shatsi-logo-wrap img {
    width: 145px;
    height: auto;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.55));
    transition: transform 0.45s ease, filter 0.45s ease;
}

.shatsi-logo-wrap:hover img {
    transform: scale(1.06) translateY(-2px);
    filter:
        drop-shadow(0 18px 35px rgba(0,0,0,0.7))
        drop-shadow(0 0 18px rgba(201,164,92,0.35));
}

/* Menu Button */
.shatsi-menu-btn {
    border: 1px solid rgba(244, 231, 197, 0.22);
    outline: none;
    color: var(--shatsi-cream);
    background:
        linear-gradient(135deg, rgba(15,47,35,0.75), rgba(107,63,36,0.38));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 13px 18px 13px 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow:
        0 18px 45px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.12);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.shatsi-menu-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(244,231,197,0.24), transparent);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.shatsi-menu-btn i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--shatsi-black);
    background: linear-gradient(135deg, var(--shatsi-cream), var(--shatsi-gold));
    box-shadow: 0 0 22px rgba(201,164,92,0.45);
    transition: transform 0.4s ease;
}

.shatsi-menu-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(201,164,92,0.65);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.65),
        0 0 30px rgba(201,164,92,0.18);
}

.shatsi-menu-btn:hover::before {
    transform: translateX(120%);
}

.shatsi-menu-btn:hover i {
    transform: rotate(90deg) scale(1.08);
}

/* ================================
   SIDEBAR
================================ */
.shatsi-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.62);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    opacity: 0;
    visibility: hidden;
    z-index: 1200;
    transition: all 0.4s ease;
}

.shatsi-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.shatsi-sidebar {
    position: fixed;
    top: 20px;
    right: 20px;
    width: min(430px, calc(100% - 40px));
    height: calc(100vh - 40px);
    z-index: 1300;
    border-radius: 34px;
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(201,164,92,0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(31,91,66,0.42), transparent 38%),
        linear-gradient(145deg, rgba(8,16,12,0.96), rgba(17,10,5,0.97));
    border: 1px solid rgba(244,231,197,0.18);
    box-shadow:
        -25px 25px 90px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateX(115%) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition: all 0.55s cubic-bezier(.19,1,.22,1);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shatsi-sidebar::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -80px;
    background: rgba(201,164,92,0.18);
    filter: blur(40px);
    border-radius: 50%;
}

.shatsi-sidebar::after {
    content: "☕";
    position: absolute;
    right: 30px;
    bottom: 18px;
    font-size: 120px;
    opacity: 0.04;
    transform: rotate(-14deg);
}

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

.shatsi-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(244,231,197,0.22);
    background: rgba(255,255,255,0.04);
    color: var(--shatsi-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.shatsi-close-btn:hover {
    background: var(--shatsi-cream);
    color: var(--shatsi-black);
    transform: rotate(90deg);
}


/* Sidebar Links */
.sidebar-links {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}


.sidebar-links a {
    position: relative;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
    padding: 15px 18px;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.sidebar-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(244,231,197,0.13), rgba(201,164,92,0.04));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sidebar-links a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 9px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--shatsi-gold), var(--shatsi-cream));
    transition: width 0.35s ease;
}

.sidebar-links a:hover {
    color: var(--shatsi-cream);
    transform: translateX(9px);
    text-shadow: 0 0 18px rgba(201,164,92,0.35);
}

.sidebar-links a:hover::before {
    opacity: 1;
}

.sidebar-links a:hover::after {
    width: 58px;
}

/* Order Button */
.sidebar-order-btn {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    width: 100%;
    min-height: 62px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-decoration: none;
    color: var(--shatsi-black);
    font-weight: 800;
    background:
        linear-gradient(135deg, var(--shatsi-cream), var(--shatsi-gold), var(--shatsi-coffee));
    box-shadow:
        0 18px 45px rgba(201,164,92,0.25),
        inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    overflow: hidden;
}

.sidebar-order-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.sidebar-order-btn:hover {
    transform: translateY(-4px) scale(1.02);
    color: var(--shatsi-black);
    box-shadow:
        0 26px 70px rgba(201,164,92,0.38),
        0 0 36px rgba(201,164,92,0.22);
}

.sidebar-order-btn:hover::before {
    transform: translateX(120%);
}

.shatsi-floating-header {
    transition: transform 0.45s ease, opacity 0.45s ease;
}

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

.shatsi-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--shatsi-black);
    overflow: hidden;
}

.hero-right-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
    filter: brightness(0.72) contrast(1.12) saturate(1.08);
    z-index: 0;
}

.hero-bg-blend {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,
            var(--shatsi-black) 0%,
            rgba(0,0,0,0.80) 26%,
            rgba(0,0,0,0.58) 48%,
            rgba(0,0,0,0.28) 75%,
            rgba(0,0,0,0.82) 100%
        ),
        linear-gradient(to bottom,
            rgba(0,0,0,0.9) 0%,
            rgba(0,0,0,0.08) 45%,
            var(--shatsi-black) 100%
        ),
        radial-gradient(circle at 70% 45%, rgba(201,164,92,0.18), transparent 36%),
        radial-gradient(circle at 35% 55%, rgba(15,47,35,0.45), transparent 42%);
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding-top: 80px;
}

.hero-left h1 {
    margin-top: 18px;
    font-size: clamp(45px, 7vw, 80px);
    font-weight: 800;
    color: #ffffff;
    line-height: 0.95;
}

.hero-subtitle {
    margin-top: 14px;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
    color: var(--shatsi-gold);
    letter-spacing: 0.08em;
}

.hero-left p {
    margin-top: 22px;
    max-width: 520px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
}

.hero-left {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding-top: 80px;
}

/* GLOW BEHIND TEXT */
.hero-left::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(201,164,92,0.35) 0%,
        rgba(201,164,92,0.12) 55%,
        rgba(15,47,35,0.18) 55%,
        transparent 75%
    );
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-left::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(15,47,35,0.35),
        transparent 70%
    );
    filter: blur(50px);
    z-index: -1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 78px;
    background: var(--shatsi-black);
    clip-path: polygon(
        0 48%,
        8% 54%,
        16% 58%,
        24% 56%,
        32% 50%,
        40% 44%,
        50% 42%,
        60% 47%,
        70% 54%,
        82% 58%,
        92% 54%,
        100% 48%,
        100% 100%,
        0 100%
    );
    z-index: 4;
}

@media (max-width: 992px) {
    .hero-right-bg-video {
        width: 100%;
        opacity: 0.7;
        object-position: center;
        filter: brightness(0.9) contrast(1.08) saturate(1.08);
    }

    .hero-bg-blend {
        background:
            linear-gradient(to bottom,
                rgba(0,0,0,0.45) 0%,
                rgba(0,0,0,0.25) 45%,
                var(--shatsi-black) 100%
            ),
            linear-gradient(to right,
                rgba(0,0,0,0.45),
                rgba(0,0,0,0.25)
            );
    }

    .hero-left {
        text-align: center;
        margin: 0 auto;
        padding-top: 120px;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-left::before {
        width: 300px;
        height: 300px;
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
        opacity: 0.9;
    }

    .hero-left::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-left::before {
        width: 280px;
        height: 280px;
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }

    .hero-left::after {
        display: none;
    }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
    .shatsi-floating-header {
        top: 18px;
        padding: 0 18px;
    }

    .shatsi-logo-wrap img {
        width: 112px;
    }

    .shatsi-menu-btn {
        padding: 10px 12px 10px 16px;
        font-size: 12px;
        gap: 9px;
    }

    .shatsi-menu-btn i {
        width: 34px;
        height: 34px;
    }

    .shatsi-sidebar {
        top: 12px;
        right: 12px;
        width: calc(100% - 24px);
        height: calc(100vh - 24px);
        padding: 28px 22px;
        border-radius: 28px;
    }

    .sidebar-brand h2 {
        font-size: 25px;
    }

    .sidebar-links a {
        font-size: 17px;
        padding: 13px 14px;
    }
}

@media (max-width: 768px) {
    .shatsi-sidebar {
        justify-content: center;
        padding-top: 70px;
        padding-bottom: 34px;
    }

    .sidebar-links {
        gap: 12px;
        margin-top: 0;
    }
}


/*about us section*/

.shatsi-about {
    position: relative;
    padding: 30px 0 140px;
    background:
        linear-gradient(to bottom, var(--shatsi-black) 0%, #07140f 42%, #102f23 100%);
    overflow: hidden;
}

.about-green-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42%;
    background:
        radial-gradient(circle at 18% 30%, rgba(201,164,92,0.16), transparent 34%),
        linear-gradient(135deg, #123b2b, #07140f);
    clip-path: polygon(
        0 28%,
        10% 22%,
        22% 30%,
        34% 18%,
        48% 26%,
        62% 16%,
        76% 24%,
        88% 14%,
        100% 22%,
        100% 100%,
        0 100%
    );
    z-index: 0;
}

.shatsi-about .container {
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
    max-width: 620px;
}

.about-script {
    display: inline-block;
    margin-bottom: 18px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 28px;
    color: var(--shatsi-gold);
}

.about-text h2 {
    max-width: 620px;
    font-size: clamp(24px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
}

.about-text p {
    color: rgba(255,255,255,0.76);
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--shatsi-cream);
    font-weight: 700;
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.about-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.about-btn.primary {
    color: var(--shatsi-black);
    background: linear-gradient(135deg, var(--shatsi-cream), var(--shatsi-gold));
    box-shadow: 0 18px 45px rgba(201,164,92,0.22);
}

.about-btn.outline {
    color: var(--shatsi-cream);
    border: 1px solid rgba(244,231,197,0.28);
    background: rgba(255,255,255,0.03);
}

.about-btn:hover {
    transform: translateY(-4px);
}

.about-btn.primary:hover {
    color: var(--shatsi-black);
    box-shadow: 0 24px 65px rgba(201,164,92,0.35);
}

.about-btn.outline:hover {
    color: var(--shatsi-black);
    background: var(--shatsi-cream);
}

.about-image-card {
    position: relative;
    width: min(430px, 100%);
    height: 560px;
    margin-left: auto;
    border-radius: 8px;
    padding: 10px;
    transform: translateX(-100px);
    background: rgba(244,231,197,0.08);
    border: 1px solid rgba(244,231,197,0.26);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.55),
        0 0 45px rgba(201,164,92,0.08);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.86) contrast(1.08) saturate(1.05);
}

@media (max-width: 992px) {
    .shatsi-about {
        padding: 90px 0 110px;
        text-align: center;
    }

    .about-text {
        margin: 0 auto;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-actions {
        justify-content: center;
    }

    .about-image-card {
        height: 430px;
        margin: 40px auto 0;
        transform: none;
        width: min(430px, 92%);
    }

    .about-image-card::before {
        display: none;
    }
}

/* =========================
   PRODUCTS SECTION
========================= */
.shatsi-products {
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201,164,92,0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(15,47,35,0.5), transparent 35%),
        var(--shatsi-black);
}

/* Header */
.products-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.products-header h2 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--shatsi-white);
}

.products-header p {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

/* Cards */
.product-card {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    padding: 36px 28px;
    height: 100%;
    background:
        linear-gradient(145deg, rgba(15,47,35,0.65), rgba(10,10,10,0.9));
    border: 1px solid rgba(244,231,197,0.14);
    box-shadow:
        0 25px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Glow effect */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(201,164,92,0.15), transparent 50%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

/* Hover */
.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,164,92,0.5);
    box-shadow:
        0 35px 100px rgba(0,0,0,0.8),
        0 0 30px rgba(201,164,92,0.18);
}

.product-card:hover::before {
    opacity: 1;
}

/* Featured middle card */
.product-card.featured {
    transform: scale(1.05);
    border-color: rgba(201,164,92,0.4);
    background:
        linear-gradient(145deg, rgba(31,91,66,0.7), rgba(10,10,10,0.95));
}

/* Content */
.product-content {
    position: relative;
    z-index: 2;
}

.product-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.product-desc {
    margin-top: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

.price {
    display: block;
    margin-top: 22px;
    font-size: 20px;
    font-weight: 700;
    color: var(--shatsi-gold);
}

.product-image {
    position: relative;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 26px;
    background: rgba(244,231,197,0.06);
    border: 1px solid rgba(244,231,197,0.12);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.82) contrast(1.08) saturate(1.08);
}

.product-card:hover .product-image img {
    transform: scale(1.12);
    filter: brightness(0.95) contrast(1.12) saturate(1.12);
}

.product-order-btn {
    margin-top: 24px;
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--shatsi-black);
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--shatsi-cream), var(--shatsi-gold), var(--shatsi-coffee));
    box-shadow:
        0 18px 45px rgba(201,164,92,0.22),
        inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.product-order-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.product-order-btn:hover {
    color: var(--shatsi-black);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 28px 70px rgba(201,164,92,0.4),
        0 0 30px rgba(201,164,92,0.2);
}

.product-order-btn:hover::before {
    transform: translateX(120%);
}

.product-order-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.product-order-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

@media (max-width: 768px) {

    .shatsi-products {
        padding: 80px 0;
    }

    .products-header {
        margin-bottom: 40px;
    }

    .products-header h2 {
        font-size: 28px;
    }

    .products-header p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* 🔥 FORCE HORIZONTAL SCROLL (override bootstrap row) */
    .products-scroll {
        display: flex !important;   /* 👈 key fix */
        flex-wrap: nowrap !important;

        overflow-x: auto;
        gap: 16px;

        padding: 10px 16px 20px;

        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;

        -webkit-overflow-scrolling: touch;
    }

    /* hide scrollbar */
    .products-scroll::-webkit-scrollbar {
        display: none;
    }

    .products-scroll {
        scrollbar-width: none;
    }

    /* each card */
    .products-scroll > [class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;

        scroll-snap-align: start;
    }

    /* spacing fix (important) */
    .products-scroll > [class*="col-"]:first-child {
        margin-left: 0;
    }

    .products-scroll > [class*="col-"]:last-child {
        margin-right: 16px;
    }

    .product-card {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .product-card.featured {
        transform: none;
    }

    .product-image {
        height: 180px;
        margin-bottom: 18px;
    }

    .product-content h3 {
        font-size: 20px;
    }

    .product-desc {
        font-size: 14px;
    }

    .price {
        font-size: 18px;
    }

    .product-order-btn {
        min-height: 48px;
        font-size: 13px;
    }
}
/* =========================
   WHY CHOOSE US
========================= */
.shatsi-why {
    position: relative;
    background: var(--shatsi-black);
    overflow: hidden;
}

/* LEFT SIDE */
.why-left {
    display: flex;
    align-items: center;
    padding: 100px 80px;
    background:
        radial-gradient(circle at 20% 30%, rgba(201,164,92,0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(15,47,35,0.5), transparent 35%),
        var(--shatsi-black);
}

.why-content {
    max-width: 520px;
}

.why-subtitle {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--shatsi-gold);
    font-weight: 600;
}

.why-content h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--shatsi-white);
}

.why-content p {
    margin-top: 20px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-size: 16px;
}

/* STATS */
.why-stats {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.why-stats h3 {
    font-size: 28px;
    color: var(--shatsi-gold);
    margin-bottom: 6px;
}

.why-stats span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* RIGHT IMAGE */
.why-right {
    position: relative;
}

/* RIGHT VIDEO */
.why-right {
    position: relative;
    overflow: hidden;
}

.why-video {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

/* Video */
.why-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1) saturate(1.05);
}

/* FADED EDGES (LEFT + RIGHT + TOP + BOTTOM) */
.why-video::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(to left, var(--shatsi-black), transparent 35%),
        linear-gradient(to right, var(--shatsi-black), transparent 35%),
        linear-gradient(to top, var(--shatsi-black), transparent 25%),
        linear-gradient(to bottom, var(--shatsi-black), transparent 25%);
}


/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {

    .why-left {
        padding: 70px 25px;
        text-align: center;
    }

    .why-content {
        margin: 0 auto;
    }

    .why-stats {
        justify-content: center;
        gap: 24px;
    }

    .why-right {
        order: -1;
    }
}

@media (max-width: 992px) {
    .why-video {
        min-height: 300px;
    }

    .why-video::after {
        background:
            linear-gradient(to bottom, var(--shatsi-black), transparent 40%),
            linear-gradient(to top, var(--shatsi-black), transparent 40%);
    }
}

/* =========================
   TESTIMONIALS
========================= */
.shatsi-testimonials {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(201,164,92,0.1), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(15,47,35,0.55), transparent 35%),
        var(--shatsi-black);
    overflow: hidden;
}

.testimonials-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.testimonials-header span {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--shatsi-gold);
    font-weight: 700;
}

.testimonials-header h2 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--shatsi-white);
}

.testimonials-header p {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 34px 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(15,47,35,0.68), rgba(10,10,10,0.92));
    border: 1px solid rgba(244,231,197,0.14);
    box-shadow:
        0 25px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -32px;
    right: 22px;
    font-size: 140px;
    font-family: Georgia, serif;
    color: rgba(201,164,92,0.12);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,164,92,0.48);
    box-shadow:
        0 35px 100px rgba(0,0,0,0.75),
        0 0 35px rgba(201,164,92,0.16);
}

.testimonial-card.featured {
    transform: scale(1.04);
    border-color: rgba(201,164,92,0.36);
    background:
        linear-gradient(145deg, rgba(31,91,66,0.75), rgba(10,10,10,0.96));
}

.testimonial-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.testimonial-photo {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    padding: 4px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--shatsi-gold), var(--shatsi-cream));
    box-shadow: 0 0 30px rgba(201,164,92,0.22);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-person h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-person span {
    color: var(--shatsi-gold);
    font-size: 13px;
}

/* Mobile */
@media (max-width: 768px) {
    .shatsi-testimonials {
        padding: 80px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonials-header p {
        font-size: 14px;
        padding: 0 10px;
    }

    .testimonial-card,
    .testimonial-card.featured {
        transform: none;
        padding: 28px 22px;
    }

    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }

    .testimonial-photo {
        width: 74px;
        height: 74px;
    }
}

/* =========================
   CTA SECTION
========================= */
.shatsi-cta {
    position: relative;
    padding: 90px 0; /* reduced from 140px */
    background: url("../images/c4.png") center/cover no-repeat;
    overflow: hidden;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        radial-gradient(circle at 30% 40%, rgba(201,164,92,0.15), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(15,47,35,0.5), transparent 45%);
    z-index: 1;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px; /* slightly tighter */
}

/* Title */
.cta-content h2 {
    font-size: clamp(26px, 4vw, 42px); /* smaller */
    font-weight: 800;
    color: var(--shatsi-white);
}

/* Text */
.cta-content p {
    margin-top: 16px;
    font-size: 15px; /* reduced */
    color: rgba(255,255,255,0.75);
}

/* Button */
.cta-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    color: var(--shatsi-black);

    background: linear-gradient(
        135deg,
        var(--shatsi-cream),
        var(--shatsi-gold),
        var(--shatsi-coffee)
    );

    box-shadow:
        0 18px 45px rgba(201,164,92,0.25),
        inset 0 1px 0 rgba(255,255,255,0.4);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

/* Hover */
.cta-btn:hover {
    transform: translateY(-4px) scale(1.04);
    color: var(--shatsi-black);
    box-shadow:
        0 30px 80px rgba(201,164,92,0.45),
        0 0 40px rgba(201,164,92,0.25);
}

.cta-btn:hover::before {
    transform: translateX(120%);
}

.cta-btn i {
    font-size: 18px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .shatsi-cta {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* =========================
   FOOTER
========================= */
.shatsi-footer {
    position: relative;
    padding: 80px 0 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(201,164,92,0.08), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(15,47,35,0.45), transparent 35%),
        #050505;
    border-top: 1px solid rgba(244,231,197,0.12);
}

.footer-logo img {
    width: 125px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 18px rgba(201,164,92,0.18));
}

.footer-desc {
    max-width: 280px;
    color: rgba(255,255,255,0.7);
    font-size: 15px; /* increased */
    line-height: 1.8;
}

.shatsi-footer h4 {
    color: var(--shatsi-white);
    font-size: 15px; /* increased */
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px; /* increased */
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--shatsi-gold);
    padding-left: 6px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--shatsi-black);
    background: linear-gradient(135deg, var(--shatsi-cream), var(--shatsi-gold));
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(201,164,92,0.22);
    transition: all 0.35s ease;
}

.footer-socials a:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow:
        0 26px 70px rgba(201,164,92,0.4),
        0 0 30px rgba(201,164,92,0.18);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(244,231,197,0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px; /* increased */
}

.footer-bottom a {
    color: var(--shatsi-gold);
    text-decoration: none;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--shatsi-cream);
}

/* =========================
   FLOATING WHATSAPP
========================= */
.shatsi-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;

    height: 58px;
    width: 58px; /* fixed circle */
    border-radius: 50%;

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

    text-decoration: none;
    color: var(--shatsi-black);

    background: linear-gradient(135deg, var(--shatsi-cream), var(--shatsi-gold), var(--shatsi-coffee));

    box-shadow:
        0 18px 50px rgba(0,0,0,0.45),
        0 0 28px rgba(201,164,92,0.22);

    transition: all 0.35s ease;
    position: fixed;
    overflow: hidden;
}

/* Hidden text */
.shatsi-floating-whatsapp span {
    position: absolute;
    right: 70px;
    background: rgba(0,0,0,0.85);
    color: var(--shatsi-cream);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Icon */
.shatsi-floating-whatsapp i {
    font-size: 22px;
    z-index: 2;
}

/* Hover effect */
.shatsi-floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 28px 80px rgba(0,0,0,0.55),
        0 0 40px rgba(201,164,92,0.32);
}

/* Show text on hover */
.shatsi-floating-whatsapp:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .shatsi-footer {
        padding: 60px 0 24px;
    }

    .shatsi-footer h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-desc,
    .footer-links a {
        font-size: 13px;
    }

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

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    /* WhatsApp stays icon-only on mobile */
    .shatsi-floating-whatsapp span {
        display: none;
    }

    .shatsi-floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}