    /* ============================================
       PRELOADER 2026/03/13 - Updated with new design and animations
    ============================================ */

    #preloader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        pointer-events: all;
        overflow: hidden;
    }


    .preloader-top,
    .preloader-bottom {
        position: absolute;
        left: 0;
        right: 0;
        height: 50%;
        background: #0a0a0a;
        transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1;
    }

    .preloader-top {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .preloader-bottom {
        bottom: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* When preloader exits */
    #preloader.exit .preloader-top {
        transform: translateY(-100%);
    }

    #preloader.exit .preloader-bottom {
        transform: translateY(100%);
    }

    #preloader.done {
        pointer-events: none;
    }

    /* Center Content */
    .preloader-content {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        transition: opacity 0.5s ease;
    }

    #preloader.exit .preloader-content {
        opacity: 0;
    }

    /* Logo Image */
    .preloader-logo-wrap {
        position: relative;
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preloader-img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.15);
        animation: preloader-pulse 2s ease-in-out infinite;
        position: relative;
        z-index: 3;
    }

    .preloader-logo-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(255, 107, 157, 0.5);
        animation: preloader-spin 3s linear infinite;
        border-top-color: #ff6b9d;
    }

    .preloader-logo-ring.ring-2 {
        inset: -12px;
        border-color: rgba(255, 107, 157, 0.2);
        border-right-color: #ff6b9d;
        animation: preloader-spin 4.5s linear infinite reverse;
    }

    @keyframes preloader-spin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes preloader-pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.04);
        }
    }

    /* Brand Text */
    .preloader-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        animation: preloader-fadein 0.8s ease 0.3s both;
    }

    .brand-sam {
        font-family: 'Poppins', sans-serif;
        font-size: 3.5rem;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: 0.25em;
        line-height: 1;
        text-shadow: 0 0 40px rgba(255, 107, 157, 0.6);
    }

    .brand-sub {
        font-family: 'Poppins', sans-serif;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.5em;
        color: #ff6b9d;
        text-transform: uppercase;
    }

    @keyframes preloader-fadein {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Loading Dots */
    .preloader-dots {
        display: flex;
        gap: 8px;
        animation: preloader-fadein 0.8s ease 0.5s both;
    }

    .preloader-dots span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #ff6b9d;
        animation: preloader-bounce 1.2s ease-in-out infinite;
    }

    .preloader-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .preloader-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes preloader-bounce {

        0%,
        60%,
        100% {
            transform: translateY(0);
            opacity: 0.5;
        }

        30% {
            transform: translateY(-10px);
            opacity: 1;
        }
    }

    /* ============================================
       END PRELOADER
    ============================================ */

    * {
        margin: 0;
        padding: 0;
        -webkit-tap-highlight-color: rgba(255, 107, 157, 0.3);
        box-sizing: border-box;
    }


    html {
        scroll-behavior: smooth;
        background: #000;
    }

    body {
        margin: 0;
        position: relative;
        z-index: 0;
        scroll-behavior: smooth;
        min-height: 100vh;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("../image/ss.webp");
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    body::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        background-color: rgba(0, 0, 0, 0.247);
    }

    /* body { */
    /* width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #8b1a1a 0%, #c41e3a 50%, #8b1a1a 100%);
        overflow-x: hidden;
        font-family: 'Poppins', Arial, sans-serif; */

    /* background-image: url("./image/kl.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-image: url("./image/kl.png"); */

    /* } */
    /* 
    body {
        margin: 0;
        position: relative;
        z-index: 0;
        scroll-behavior: smooth;
    }

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("../image/ss.jpg");
        background-size: cover;
        background-position: center;
        transform: scale(1.01);
        z-index: -2;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background-color: rgba(0, 0, 0, 0.247);
    } */



    /*  */


    /* Navigation */
    .navbar {
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem 2rem;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-nav {
        margin: 0 auto !important;
    }

    .navbar-brand {
        font-weight: bold;
        font-size: 1.5rem;
        color: white !important;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-link {
        color: white !important;
        margin: 0 1rem;
        font-weight: 500;
        transition: all 0.3s;
        cursor: pointer;
        position: relative;
    }

    .nav-link:hover {
        color: #ff6b9d !important;
        transform: translateY(-2px);
    }

    .nav-link.active {
        color: #ff6b9d !important;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #ff6b9d;
        border-radius: 2px;
    }

    /* Hero Section */
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 1rem;
        position: relative;
        color: white;
    }

    .hero-left {
        flex: 1;
        max-width: 500px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
        backdrop-filter: blur(50px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 1.9rem 1.1rem;
        transition: all 0.3s;

    }

    .hero-left h1 {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-left p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 0.9;
        color: #ffffff;
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .btn-hero {
        padding: 0.75rem 1.2rem;
        font-size: 1rem;
        font-weight: bold;
        border: 2px solid white;
        background: transparent;
        color: white;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .btn-hero:hover {

        background: white;
        color: #c41e3a;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    /* Hero Right */
    .hero-right {
        flex: 1;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
        backdrop-filter: blur(50px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 1.9rem 1.1rem; */
    }

    .ice-cream-blob {
        width: 300px;
        height: 350px;
        background: radial-gradient(circle at 30% 30%, #ff9fb2, #ff4757);
        border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        position: relative;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Choose Type */
    .choose-type {
        display: flex;
        justify-content: center;
        transform: translateY(-47%);
        z-index: 99999;
        margin-top: 10px !important;
        border-radius: 35px;
        background: rgb(255 255 255 / 11%);
        backdrop-filter: blur(12px);
        width: fit-content;
        margin: auto;
        padding: 1rem;
    }

    .type-icons {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
    }

    .type-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s;
        color: white;
    }

    .type-icon:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }

    .type-icon.active {
        background: white;
        color: #c41e3a;
    }

    /* Products Section */
    .products-section {
        padding: 4rem 2rem;
        background: repeating-radial-gradient(circle,
                rgb(16 72 255 / 23%),
                #add8e600 7px);
        backdrop-filter: blur(50px);
    }

    /* Products Scroll Container */
    .products-scroll-container {
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    .products-scroll-wrapper {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .products-scroll-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .products-scroll-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .products-scroll-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }

    .products-scroll-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    /* Product Card New Design */
    .product-card-new {
        min-width: 320px;
        max-width: 320px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 107, 157, 0.3) 100%);
        backdrop-filter: blur(50px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s;
        scroll-snap-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        margin-bottom: 15px;
    }

    .product-card-new:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 70%, rgba(255, 107, 157, 0.4) 100%);
    }

    .product-image-container {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        padding: 2rem;
        position: relative;
        overflow: hidden;
    }

    .product-image-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(255, 107, 157, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

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

    .product-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s;
    }

    .product-card-new:hover .product-img {
        transform: scale(1.1);
    }

    .product-info {
        padding: 1.5rem;
        text-align: center;
    }

    .product-title {
        color: white;
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .product-description {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        min-height: 45px;
    }

    .btn-booking {
        width: 100%;
        padding: 0.9rem 2rem;
        background: white;
        color: #c41e3a;
        border: 2px solid white;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
    }

    .btn-booking:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    /* Products Scroll Dots */
    .products-scroll-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 2rem;
    }

    .product-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s;
    }

    .product-dot.active {
        background: white;
        width: 35px;
        border-radius: 6px;
    }

    /* Old Product Grid Styles (keeping for backwards compatibility) */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 107, 157, 0.3) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 2rem;
        color: white;
        transition: all 0.3s;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .product-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 35%;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 157, 0.25) 50%, rgba(255, 107, 157, 0.4) 100%);
        pointer-events: none;
        border-radius: 0 0 20px 20px;
    }

    .product-card:hover {
        transform: translateY(-10px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 70%, rgba(255, 107, 157, 0.4) 100%);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

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

    .product-image {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .product-name {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .order-type-label {
        font-size: 0.85rem;
        opacity: 0.9;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }

    .order-buttons {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .order-btn {
        flex: 1;
        padding: 0.6rem 0.5rem;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .order-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
        transform: scale(1.05);
    }

    .order-btn.active {
        background: white;
        color: #c41e3a;
        border-color: white;
    }

    .product-price {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
    }

    .quantity-control {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: bold;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quantity-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: white;
        transform: scale(1.1);
    }

    .quantity-value {
        min-width: 30px;
        font-weight: bold;
        font-size: 1.1rem;
    }

    /* ===== STACK AREA ===== */
    .stack-area {
        height: 300px;
        display: flex;
        gap: 2px;
        position: relative;
    }

    .stack-wrapper {
        flex: 1;
        position: relative;
    }

    /* ===== CARDS ===== */
    .stack-card {
        position: absolute;
        inset: 0;
        margin: auto;
        height: 180px;
        border-radius: 18px;
        padding: 16px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
        transition: transform .45s cubic-bezier(.4, 0, .2, 1),
            opacity .45s ease;
    }

    .card-white {
        background: #fff;
    }

    .card-glass {
        background: linear-gradient(180deg, rgb(78 68 68 / 26%) 0%, rgb(118 104 104 / 33%) 70%, rgb(161 162 111 / 55%) 100%);
        backdrop-filter: blur(16px);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .2);
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    .review-name {
        font-weight: bold;
        color: #333;
    }

    .review-stars {
        color: #ffc107;
        font-size: 0.9rem;
    }

    .review-text {
        color: #666;
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: center;
    }

    /* ===== 3D CYLINDER ===== */
    .cylinder {
        width: 22px;
        height: 100%;
        perspective: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wheel {
        height: 35%;
        width: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform-style: preserve-3d;
    }

    .img-logo {
        width: 150px;
    }

    .wheel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .4);
        transform: rotateX(0deg);
        transition: all .35s ease;
    }

    .wheel-dot.active {
        height: 34px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 0 12px rgba(255, 255, 255, .9);
        transform: rotateX(25deg);
    }

    /* ===== MOBILE SLIDER ===== */
    .mobile-slider-container {
        display: none;
    }

    .desktop-view {
        display: flex;
    }

    /* ===== SECTION TITLE ===== */
    .section-title {
        text-align: center;
        margin-bottom: 4rem;
        color: white;
    }

    .section-title h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 900;
        margin-bottom: 1rem;
        color: #fff;
        line-height: 1.15;
        letter-spacing: -0.01em;
        text-transform: none;
    }

    /* Gradient word inside h2 */
    .title-gradient {
        background: linear-gradient(135deg, #ff6b9d, #c41e3a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .title-underline {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #ff6b9d, #c41e3a);
        margin: 0 auto 1.2rem;
        border-radius: 999px;
    }

    .section-subtitle {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.98rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.02em;
        margin-top: 0;
    }

    /* ===== ABOUT US SECTION ===== */
    .about-section {
        padding: 6rem 2rem;
        color: white;
        background: repeating-radial-gradient(circle, rgb(16 72 255 / 23%), #add8e600 7px);
        backdrop-filter: blur(50px);
    }

    .about-content {
        padding-right: 2rem;
    }

    .about-content h3 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #fff;
    }

    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        opacity: 0.95;
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(50px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(10px);
    }

    .feature-item i {
        color: #4ade80;
        font-size: 1.3rem;
    }

    .feature-item span {
        font-weight: 600;
    }

    .about-image-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        background: linear-gradient(135deg, #8b1a1a00 0%, #22191b 50%, #8b1a1a 100%);
    }

    .about-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        transition: transform 0.3s;
    }

    .about-image-wrapper:hover .about-image {
        transform: scale(1.05);
    }

    .image-decoration {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255, 107, 157, 0.3), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* ===== SERVICES SECTION ===== */
    .services-section {
        padding: 6rem 2rem;
        color: white;
        background: repeating-radial-gradient(circle, rgb(16 72 255 / 23%), #add8e600 7px);
        backdrop-filter: blur(50px);
    }

    .service-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
        backdrop-filter: blur(50px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 2.5rem 2rem;
        text-align: center;
        transition: all 0.3s;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        transition: all 0.3s;
    }

    .service-card:hover .service-icon {
        background: white;
        color: #c41e3a;
        transform: rotate(360deg);
    }

    .service-card h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }

    .service-highlight {
        display: inline-block;
        padding: 0.5rem 1.5rem;
        background: white;
        color: #c41e3a;
        border-radius: 25px;
        font-weight: bold;
        font-size: 0.9rem;
    }

    .services-features {
        margin-top: 4rem;
    }

    .feature-box {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s;
    }

    .feature-box:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .feature-box i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #ffd700;
    }

    .feature-box h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        font-weight: bold;
    }

    .feature-box p {
        opacity: 0.9;
        margin: 0;
    }

    /* ===== LOCATION SECTION ===== */
    .location-section {
        padding: 6rem 2rem;
        background: repeating-radial-gradient(circle, #722ec542, #add8e600 7px);
        backdrop-filter: blur(50px);
        color: white;
    }

    .location-info {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(50px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        height: 100%;
    }

    .location-info h3 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 2rem;
    }

    .area-list {
        margin-bottom: 2rem;
    }

    .area-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: rgb(0 0 0 / 41%);
        border-radius: 12px;
        margin-bottom: 1rem;
        transition: all 0.3s;
    }

    .area-item:hover {
        background: rgba(255, 255, 255, 0.886);
        transform: translateX(10px);
        color: rgba(0, 0, 0, 0.886);
    }

    .area-item i {
        color: #ff6b9d;
        font-size: 1.5rem;
        margin-top: 0.3rem;
    }

    .area-item h4 {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }

    .area-item p {
        margin: 0;
        opacity: 0.9;
    }

    .location-contact {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .location-contact h4 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .contact-item i {
        color: #4ade80;
        font-size: 1.2rem;
    }

    .map-wrapper {
        height: 600px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .location-gallery-card {
        margin-top: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(50px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .location-gallery-card h4 {
        margin-bottom: 0.35rem;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .location-gallery-card p {
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }

    .location-gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .location-gallery-item {
        border: 0;
        padding: 0;
        border-radius: 14px;
        overflow: hidden;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.08);
        aspect-ratio: 1 / 1;
        position: relative;
    }

    .location-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .location-gallery-item:hover img {
        transform: scale(1.07);
    }

    .gallery-modal {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.82);
        backdrop-filter: blur(6px);
        z-index: 12000;
        padding: 2rem 1rem;
        overflow: auto;
    }

    .gallery-modal.show {
        display: flex;
    }

    .gallery-modal-stage {
        width: min(96vw, 1100px);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        min-height: calc(100vh - 4rem);
    }

    .gallery-modal-content {
        width: min(92vw, 980px);
        max-height: 86vh;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(13, 10, 14, 0.95);
    }

    .nav-phone {
        color: #4b91e5;
        font-size: 1.2rem;
        font-weight: 600;
        margin-right: 0.5rem;
        transition: all 0.3s;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    .gallery-modal-content img {
        max-width: 100%;
        max-height: 86vh;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .gallery-close-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.4);
        background: rgb(233 8 8 / 90%);
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        z-index: 2;
    }

    .gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-size: 1.7rem;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
    }

    .gallery-prev-btn {
        left: max(8px, calc((100% - min(92vw, 980px)) / 2 - 56px));
    }

    .gallery-next-btn {
        right: max(8px, calc((100% - min(92vw, 980px)) / 2 - 56px));
    }

    body.gallery-open {
        overflow-y: auto;
    }

    /* ===================================================
       CONTACT SECTION — DESIGN v1
    =================================================== */
    .contact-section {
        padding: 7rem 2rem;
        color: white;
        background: repeating-radial-gradient(circle, rgb(16 72 255 / 23%), #add8e600 7px);
        backdrop-filter: blur(50px);
        position: relative;
        overflow: hidden;
    }

    /* Ambient glow blobs */
    .contact-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
        top: -120px;
        right: -100px;
        pointer-events: none;
    }

    .contact-section::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(196, 30, 58, 0.10) 0%, transparent 70%);
        bottom: -80px;
        left: -80px;
        pointer-events: none;
    }

    /* ── Card ── */
    .contact-card {
        background:
            radial-gradient(ellipse 80% 60% at 10% 20%, rgba(196, 30, 58, 0.18) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 90% 80%, rgba(255, 107, 157, 0.13) 0%, transparent 55%),
            #0d0a0e;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 28px;
        padding: 3.5rem 3rem;
        position: relative;
        backdrop-filter: blur(30px);
        box-shadow:
            0 0 0 1px rgba(255, 107, 157, 0.05),
            0 30px 80px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        overflow: hidden;
    }

    /* subtle grid texture */
    .contact-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 40px 40px;
        border-radius: 28px;
        pointer-events: none;
        z-index: 0;
    }

    /* top pink gradient accent line */
    .contact-card::after {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ff6b9d 30%, #c41e3a 70%, transparent);
        border-radius: 28px 28px 0 0;
        z-index: 1;
    }

    .contact-card form,
    .success-msg {
        position: relative;
        z-index: 2;
    }

    /* ── Form Fields ── */
    .form-field {
        position: relative;
        margin-bottom: 1.6rem;
    }

    .form-field label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 0.65rem;
        transition: color 0.3s ease;
    }

    .label-icon {
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: #ff6b9d;
        transition: color 0.3s;
    }

    .form-field input,
    .form-field textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 1rem 1.3rem;
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.97rem;
        font-weight: 400;
        outline: none;
        -webkit-appearance: none;
        transition:
            border-color 0.35s ease,
            background 0.35s ease,
            box-shadow 0.35s ease;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: rgba(255, 255, 255, 0.2);
        font-weight: 300;
    }

    /* FOCUS — vivid pink glow */
    .form-field input:focus,
    .form-field textarea:focus {
        border-color: #ff6b9d;
        background: rgba(255, 107, 157, 0.06);
        box-shadow:
            0 0 0 3px rgba(255, 107, 157, 0.18),
            0 4px 20px rgba(255, 107, 157, 0.10);
    }

    /* FILLED — gentle reminder border stays pink */
    .form-field input:not(:placeholder-shown):not(:focus),
    .form-field textarea:not(:placeholder-shown):not(:focus) {
        border-color: rgba(255, 107, 157, 0.45);
        background: rgba(255, 107, 157, 0.04);
    }

    /* Label turns pink when field is active */
    .form-field:focus-within label {
        color: #ff6b9d;
    }

    .form-field:focus-within .label-icon {
        color: #ff6b9d;
    }

    .form-field textarea {
        resize: none;
        min-height: 140px;
        line-height: 1.7;
    }

    /* Character counter */
    .char-hint {
        position: absolute;
        bottom: 12px;
        right: 14px;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.2);
        pointer-events: none;
        transition: color 0.3s;
        font-family: 'DM Sans', sans-serif;
    }

    .form-field textarea:focus~.char-hint {
        color: rgba(255, 107, 157, 0.5);
    }

    /* ── Submit Button ── */
    .btn-submit-new {
        width: 100%;
        padding: 1.1rem 2rem;
        margin-top: 0.5rem;
        border: none;
        border-radius: 14px;
        background: linear-gradient(135deg, #ff6b9d 0%, #c41e3a 100%);
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        box-shadow: 0 8px 30px rgba(196, 30, 58, 0.35);
    }

    /* shimmer sweep */
    .btn-submit-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
        transition: left 0.55s ease;
    }

    .btn-submit-new:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(255, 107, 157, 0.45);
    }

    .btn-submit-new:hover::before {
        left: 160%;
    }

    .btn-submit-new:active {
        transform: translateY(0);
    }

    .btn-submit-new .btn-icon {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .btn-submit-new:hover .btn-icon {
        transform: translateX(4px) rotate(-30deg);
    }

    /* ── Success State ── */
    .success-msg {
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        padding: 2.5rem 2rem;
        text-align: center;
        animation: smFadeUp 0.5s ease;
    }

    .success-msg.show {
        display: flex;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff6b9d, #c41e3a);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
        animation: smPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .success-msg h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        color: #fff;
        margin: 0;
    }

    .success-msg p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.95rem;
        margin: 0;
    }

    @keyframes smPopIn {
        from {
            transform: scale(0);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes smFadeUp {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== FOOTER ===== */
    .footer {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(50px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 3rem 2rem 1rem;
        color: white;
    }

    .footer h4 {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }

    .footer p {
        opacity: 0.9;
        line-height: 1.6;
    }

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

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        opacity: 0.9;
        transition: all 0.3s;
    }

    .footer-links a:hover {
        opacity: 1;
        color: #ff6b9d;
        transform: translateX(5px);
        display: inline-block;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s;
    }

    .social-icons a:hover {
        background: white;
        color: #c41e3a;
        transform: translateY(-5px);
    }

    .image-footer {
        width: 100%;

    }


    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.8;
    }

    .infocontact {
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
    }

    @media (min-width: 769px) {
        .products-scroll-dots {
            display: none !important;
        }
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 768px) {
        .img-logo {
            width: 149px;
        }

        .gallery-modal {
            padding: 1rem 0.5rem 4.5rem;
            transform: translateY(144%);
            height: 40%;
        }

        .navbar-toggler-icon {
            filter: brightness(0) invert(1) !important;
        }

        .products-scroll-wrapper::-webkit-scrollbar {
            height: 0px !important;

        }

        /* Hide desktop view on mobile */
        .desktop-view {
            display: none !important;
        }

        /* Show mobile slider */
        .mobile-slider-container {
            display: block;
            width: 100%;
            position: relative;
        }

        .mobile-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .slide {
            width: 100vw;
            min-width: 100vw;
            flex-shrink: 0;
            scroll-snap-align: start;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

        .slide .hero-left h1 {
            font-size: 2.5rem;
            color: white;
        }

        .slide .hero-right .ice-cream-blob {
            width: 250px;
            height: 300px;
        }

        .stack-area-mobile {
            width: 100%;
            height: 340px;
            display: flex;
            gap: 2px;
            position: relative;
        }

        .stack-area-mobile .stack-wrapper {
            flex: 1;
            position: relative;
        }

        .stack-area-mobile .cylinder {
            width: 22px;
            height: 100%;
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        /* Choose Type - Fixed at bottom */
        .choose-type {
            position: relative;
            bottom: 0;
            left: 0;
            right: 0;
            transform: none;
            padding: 0.5rem;
            z-index: 999;
            border-radius: 35px;
            border: #ffffff 1px solid;
            background: rgb(255 255 255 / 11%);
            backdrop-filter: blur(50px);
            margin-bottom: 15px;
        }

        .hero-section {
            flex-direction: column;
            padding: 2rem 1rem;
            min-height: auto;
        }

        .product-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .card-glass .review-name,
        .card-glass .review-text {
            color: rgb(0, 0, 0);
        }

        /* Section titles */
        .section-title h2 {
            font-size: 2rem;
        }

        /* About section */
        .about-content {
            padding-right: 0;
            margin-bottom: 2rem;
        }

        .about-content h3 {
            font-size: 1.5rem;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        /* Services */
        .service-card {
            padding: 2rem 1.5rem;
        }

        /* Location */
        .map-wrapper {
            height: 400px;
            margin-top: 2rem;
        }

        .location-gallery-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .gallery-nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
            top: auto;
            bottom: -52px;
            transform: none;
        }

        .gallery-prev-btn {
            left: calc(50% - 56px);
        }

        .gallery-next-btn {
            right: calc(50% - 56px);
        }

        /* Contact */
        .contact-card {
            padding: 2rem 1.5rem;
            border-radius: 20px;
        }

        .hero-images {
            width: 520px;
        }
    }

    @media (max-width: 480px) {
        .hero-images {
            width: 415px;
        }



        .products-scroll-wrapper {
            gap: 1rem;
        }

        .about-section {
            padding: 1rem 0rem;
        }

        .services-section {
            padding: 1.5rem 0rem;
        }

        .location-section {
            padding: 2rem 0rem;
        }

        .location-info {
            padding: 1rem;
        }

        .location-gallery-card {
            margin-top: 1rem;
            padding: 0.8rem;
        }

        .location-gallery-grid {
            gap: 0.6rem;
        }

        .gallery-modal {
            padding: 1rem 0.5rem 4.5rem;
            transform: translateY(271%);
            height: 27%;
        }

        .gallery-modal-stage {
            min-height: calc(100vh - 25.5rem);

        }



        .gallery-modal-content {
            width: 96vw;
            border-radius: 12px;
            max-height: 78vh;
        }

        .gallery-close-btn {
            top: 10px;
            right: 10px;
            width: 38px;
            height: 38px;
            font-size: 0.95rem;
        }

        .contact-section {
            padding: 2rem 0rem;
        }

        .products-section {
            padding: 2rem 0.5rem;
        }

        .products-section {
            padding: 2rem 0.5rem;
        }

        .product-card-new {
            min-width: 280px;
            max-width: 280px;
        }

        .product-image-container {
            height: 240px;
            padding: 1.5rem;
        }

        .product-title {
            font-size: 1.1rem;
        }

        .product-description {
            font-size: 0.85rem;
        }

        .container-fluid {
            padding-right: 0 !important;
            padding-left: 0 !important;
            margin-right: 0 !important;
            margin-left: 0 !important;
        }

        .section-title h2 {
            font-size: 1.8rem;
        }

        .contact-card {
            padding: 1.5rem 1.2rem;
        }

        .stack-card {
            height: 220px;
        }
    }


    .error-text {
        color: #ff4d6d;
        font-size: 13px;
        margin-top: 4px;
    }

    .spinner {
        width: 18px;
        height: 18px;
        border: 3px solid #fff;
        border-top: 3px solid transparent;
        border-radius: 50%;
        display: none;
        animation: spin 0.6s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }


    .waytocontact {
        color: white;
    }