   /* ============================================
           ROOT VARIABLES
        ============================================ */
        :root {
            --gold: #C9A84C;
            --gold-light: #E8D5A3;
            --gold-dark: #A68A3E;
            --gold-shimmer: #D4AF37;
            --white: #FFFFFF;
            --off-white: #FAFAF8;
            --cream: #F5F0E8;
            --charcoal: #2C2C2C;
            --gray: #8A8A8A;
            --light-gray: #E8E8E8;
        }

        /* ============================================
           GLOBAL RESET & BASE
        ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        ::selection {
            background-color: var(--gold);
            color: var(--white);
        }

        /* ============================================
           CUSTOM SCROLLBAR
        ============================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--cream);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-dark);
        }

        /* ============================================
           TYPOGRAPHY
        ============================================ */
        .font-playfair {
            font-family: 'Playfair Display', serif;
        }
        .font-cormorant {
            font-family: 'Cormorant Garamond', serif;
        }

        .gold-text {
            color: var(--gold);
        }

        /* ============================================
           PRELOADER
        ============================================ */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        #preloader.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold);
            letter-spacing: 8px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .loader-bar {
            width: 200px;
            height: 1px;
            background: var(--light-gray);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .loader-logo-img { /* create by bella */
            width: 250px;   
            height: auto;
            align-items: center;
            opacity: 85%;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse {
          0%, 100% {
            transform: scale(1);
            opacity: 1;
          }
          50% {
            transform: scale(1.15);
            opacity: 0.7;
          }
        }

        .loader-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: loaderSlide 1.5s ease infinite;
        }

        @keyframes loaderSlide {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           CURSOR CUSTOM (Desktop Only)
        ============================================ */
        .custom-cursor {
            width: 20px;
            height: 20px;
            border: 1.5px solid var(--gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: transform 0.2s ease, opacity 0.2s ease;
            mix-blend-mode: difference;
        }

        .custom-cursor.hover {
            transform: scale(2.5);
            background: rgba(201, 168, 76, 0.1);
        }

        @media (max-width: 768px) {
            .custom-cursor { display: none; }
        }

        /* ============================================
           NAVBAR
        ============================================ */
        .navbar-main {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 25px 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-main.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            box-shadow: 0 1px 30px rgba(201, 168, 76, 0.08);
        }

        .navbar-brand-custom {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--gold) !important;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
        }

        .navbar-brand-custom span {
            font-weight: 300;
            color: var(--charcoal);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 6px;
            display: block;
            margin-top: -2px;
        }

        .nav-link-custom {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--charcoal) !important;
            padding: 8px 20px !important;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-link-custom:hover {
            color: var(--gold) !important;
        }

        .nav-link-custom:hover::after {
            width: 60%;
        }

        .navbar-toggler-custom {
            border: none;
            background: none;
            padding: 0;
        }

        .navbar-toggler-custom:focus {
            box-shadow: none;
        }

        .hamburger {
            width: 28px;
            height: 20px;
            position: relative;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 1px;
            background: var(--charcoal);
            position: absolute;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .hamburger span:nth-child(3) { bottom: 0; width: 60%; }

        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            background: var(--gold);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            bottom: auto;
            top: 50%;
            width: 100%;
            transform: translateY(-50%) rotate(-45deg);
            background: var(--gold);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 9998;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-content {
            text-align: center;
        }

        .mobile-menu-content a {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--charcoal);
            text-decoration: none;
            padding: 15px 0;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .mobile-menu-content a:hover {
            color: var(--gold);
            transform: translateX(10px);
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: var(--white);
            overflow: hidden;
        }

        .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Layer 1: Overlay putih transparan */
    background-color: var(--white);
    
    /* Layer 2: Image background */
    background-image: url('./assets/sakura-souvenir-BG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Layer 3: Opacity via pseudo-element agar lebih fleksibel */
    opacity: 75%;
    
    /* Opsional: efek halus */
    filter: saturate(0.8) brightness(1.1);
    pointer-events: none; /* agar tidak mengganggu klik */
    z-index: 0;
}

/* Pastikan konten hero di atas pattern */
.hero-content {
    position: relative;
    z-index: 2;
}

        .hero-gold-line {
            position: absolute;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
            opacity: 0.2;
        }

        .hero-gold-line:nth-child(1) { left: 15%; }
        .hero-gold-line:nth-child(2) { left: 50%; }
        .hero-gold-line:nth-child(3) { left: 85%; }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .hero-subtitle-top {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 400;
            color: var(--charcoal);
            line-height: 1.1;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 2vw, 1.4rem);
            font-weight: 300;
            color: var(--gray);
            letter-spacing: 2px;
            margin-top: 20px;
            margin-bottom: 50px;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        .hero-cta {
            opacity: 0;
            animation: fadeInUp 1s ease 1.4s forwards;
        }

        .btn-gold {
            display: inline-block;
            padding: 16px 50px;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-gold:hover {
            color: var(--white);
        }

        .btn-gold:hover::before {
            left: 0;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            opacity: 0;
            animation: fadeInUp 1s ease 1.8s forwards;
        }

        .hero-scroll-indicator span {
            font-size: 0.55rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gray);
            display: block;
            margin-bottom: 15px;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: var(--light-gray);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            animation: scrollDown 2s ease infinite;
        }

        @keyframes scrollDown {
            0% { top: -100%; }
            100% { top: 100%; }
        }

        /* ============================================
           SECTION DIVIDER
        ============================================ */
        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 20px 0;
        }

        .section-divider .line {
            width: 80px;
            height: 1px;
            background: var(--gold-light);
        }

        .section-divider .diamond {
            width: 6px;
            height: 6px;
            border: 1px solid var(--gold);
            transform: rotate(45deg);
        }

        /* ============================================
           ABOUT SECTION (Minimal)
        ============================================ */
        .about-section {
            padding: 120px 0;
            background: var(--off-white);
            position: relative;
        }

        .about-label {
            font-size: 0.6rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 25px;
        }

        .about-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 400;
            color: var(--charcoal);
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .about-title em {
            color: var(--gold);
            font-style: italic;
        }

        .about-text {
            font-size: 0.9rem;
            line-height: 2;
            color: var(--gray);
            font-weight: 300;
            max-width: 500px;
        }

        .about-stats {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold);
            font-weight: 400;
        }

        .stat-label {
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray);
            margin-top: 5px;
        }

        .about-image-wrapper {
            position: relative;
            height: 500px;
        }

        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-image-frame {
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 1px solid var(--gold-light);
            z-index: -1;
        }

        /* ============================================
           COLLECTION / IMAGE GRID SECTION
        ============================================ */
        .collection-section {
            padding: 120px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-label {
            font-size: 0.6rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--charcoal);
        }

        .section-title em {
            color: var(--gold);
            font-style: italic;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 28px;
            background: transparent;
            border: 1px solid var(--light-gray);
            color: var(--gray);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(201, 168, 76, 0.05);
        }

        /* Image Grid */
        .grid-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .grid-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1;
            background: var(--cream);
        }

        .grid-item.tall {
            grid-row: span 2;
            aspect-ratio: auto;
        }

        .grid-item.wide {
            grid-column: span 2;
            aspect-ratio: 2/1;
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .grid-item:hover img {
            transform: scale(1.08);
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to top,
                rgba(44, 44, 44, 0.7) 0%,
                rgba(44, 44, 44, 0) 60%
            );
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .grid-item:hover .grid-overlay {
            opacity: 1;
        }

        .grid-overlay h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 400;
            transform: translateY(20px);
            transition: transform 0.5s ease 0.1s;
        }

        .grid-item:hover .grid-overlay h4 {
            transform: translateY(0);
        }

        .grid-overlay .grid-category {
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 8px;
            transform: translateY(20px);
            transition: transform 0.5s ease 0.05s;
        }

        .grid-item:hover .grid-overlay .grid-category {
            transform: translateY(0);
        }

        .grid-overlay .grid-price {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--gold-light);
            margin-top: 8px;
            transform: translateY(20px);
            transition: transform 0.5s ease 0.15s;
        }

        .grid-item:hover .grid-overlay .grid-price {
            transform: translateY(0);
        }

        /* Grid item animation */
        .grid-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .grid-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           FEATURED / HIGHLIGHT SECTION
        ============================================ */
        .featured-section {
            padding: 0;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .featured-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Playfair Display', serif;
            font-size: clamp(5rem, 15vw, 15rem);
            color: rgba(255, 255, 255, 0.02);
            white-space: nowrap;
            font-weight: 700;
            pointer-events: none;
        }

        .featured-content {
            padding: 120px 0;
            position: relative;
            z-index: 2;
        }

        .featured-image {
            position: relative;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .featured-image:hover img {
            transform: scale(1.05);
        }

        .featured-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
        }

        .featured-label {
            font-size: 0.6rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 25px;
        }

        .featured-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .featured-title em {
            color: var(--gold);
            font-style: italic;
        }

        .featured-desc {
            font-size: 0.9rem;
            line-height: 2;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
            margin-bottom: 40px;
        }

        .btn-gold-white {
            display: inline-block;
            padding: 16px 50px;
            background: var(--gold);
            border: 1px solid var(--gold);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.5s ease;
            align-self: flex-start;
        }

        .btn-gold-white:hover {
            background: transparent;
            color: var(--gold);
        }

        /* ============================================
           TESTIMONIAL / QUOTE SECTION
        ============================================ */
        .quote-section {
            padding: 120px 0;
            background: var(--cream);
            text-align: center;
            position: relative;
        }

        .quote-icon {
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            color: var(--gold-light);
            line-height: 1;
            margin-bottom: 20px;
        }

        .quote-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 2.5vw, 2rem);
            font-weight: 300;
            font-style: italic;
            color: var(--charcoal);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .quote-author {
            margin-top: 30px;
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 500;
        }

        /* ============================================
           MARQUEE / RUNNING TEXT
        ============================================ */
        .marquee-section {
            padding: 40px 0;
            background: var(--white);
            overflow: hidden;
            border-top: 1px solid var(--cream);
            border-bottom: 1px solid var(--cream);
        }

        .marquee-track {
            display: flex;
            animation: marquee 30s linear infinite;
            width: max-content;
        }

        .marquee-item {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 300;
            color: var(--light-gray);
            white-space: nowrap;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .marquee-item .dot {
            width: 8px;
            height: 8px;
            border: 1px solid var(--gold-light);
            transform: rotate(45deg);
            flex-shrink: 0;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ============================================
           CONTACT SECTION
        ============================================ */
        .contact-section {
            padding: 120px 0;
            background: var(--white);
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .contact-detail h6 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--charcoal);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact-detail p {
            font-size: 0.85rem;
            color: var(--gray);
            font-weight: 300;
            line-height: 1.8;
            margin: 0;
        }

        .contact-form .form-control {
            border: none;
            border-bottom: 1px solid var(--light-gray);
            border-radius: 0;
            padding: 15px 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            color: var(--charcoal);
            background: transparent;
            transition: border-color 0.3s ease;
        }

        .contact-form .form-control:focus {
            box-shadow: none;
            border-bottom-color: var(--gold);
        }

        .contact-form .form-control::placeholder {
            color: var(--gray);
            font-weight: 300;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .btn-submit {
            margin-top: 30px;
            padding: 16px 50px;
            background: var(--gold);
            border: 1px solid var(--gold);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.5s ease;
        }

        .btn-submit:hover {
            background: var(--gold-dark);
            border-color: var(--gold-dark);
        }

        /* ============================================
           FOOTER
        ============================================ */
        
        
        .operational-hours div { /*by bella*/
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }
        
        .operational-hours div:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .operational-hours span:last-child {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
        }
        
        /* end bella script */
        
        
        .footer {
            background: var(--charcoal);
            padding: 80px 0 40px;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold);
            letter-spacing: 4px;
            margin-bottom: 20px;
        }

        .footer-desc {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
            line-height: 2;
            max-width: 300px;
        }

        .footer-title {
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 300;
            transition: color 0.3s ease;
            letter-spacing: 1px;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.25);
            font-weight: 300;
            letter-spacing: 2px;
        }

        /* ============================================
           LIGHTBOX MODAL
        ============================================ */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .lightbox-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-modal img {
            max-width: 85%;
            max-height: 85vh;
            object-fit: contain;
            transform: scale(0.9);
            transition: transform 0.4s ease;
        }

        .lightbox-modal.active img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }

        .lightbox-close:hover {
            color: var(--gold);
        }

        .lightbox-caption {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: var(--white);
        }

        .lightbox-caption h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .lightbox-caption p {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-light);
        }

        /* ============================================
           BACK TO TOP
        ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--gold);
            color: var(--white);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            font-size: 1rem;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
        }

        /* ============================================
           REVEAL ANIMATIONS
        ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1199px) {
            .grid-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .grid-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-item.tall {
                grid-row: span 1;
                aspect-ratio: 1;
            }

            .grid-item.wide {
                grid-column: span 1;
                aspect-ratio: 1;
            }

            .featured-info {
                padding: 40px 20px;
            }

            .featured-image img {
                height: 400px;
            }

            .about-image-wrapper {
                height: 350px;
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {
            .grid-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .about-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .hero-title {
                font-size: clamp(2.5rem, 10vw, 4rem);
            }

            .contact-section {
                padding: 80px 0;
            }
        }

        @media (max-width: 575px) {
            .filter-buttons {
                gap: 6px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.55rem;
                letter-spacing: 2px;
            }

            .about-stats {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        .captcha-box{
            background:#f1f1f1;
            padding:10px;
            width:120px;
            text-align:center;
            font-size:22px;
            font-weight:bold;
            letter-spacing:4px;
            margin-bottom:10px;
        }