
        :root {
            --primary-black: #000000;
            --primary-gold: #d4af37;
            --secondary-gold: #C9A227;
            --accent-gold: #f4e87c;
            --pure-white: #ffffff;
            --off-white: #f8f8f8;
            --text-gray: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--pure-white);
            background: var(--primary-black);
            background-image:
                radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.14), transparent 18%),
                radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 12%),
                radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.08), transparent 15%);
            background-repeat: no-repeat;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .hero-section {
    width: 100%;
    overflow: hidden;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 80vh;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.banner-overlay h1 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
}

.banner-overlay p {
    margin: 10px 0;
    font-size: 18px;
}

.hero-cta {
    margin-top: 15px;
    padding: 10px 20px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

.full-banner {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

        /* Navigation */
        .catalogue-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 25px 0;
            transition: all 0.3s ease;
        }

        .catalogue-nav.scrolled {
            background: rgba(0, 0, 0, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            padding: 12px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
               display: flex;
    align-items: center;
    justify-content: space-between;
        }

        
        .nav-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .nav-logo img {
            max-height: 120px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .catalogue-nav.scrolled .nav-logo img {
            max-height: 60px;
        }

        .nav-menu {
            display: none;
        }

        .nav-link {
            color: var(--pure-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: grid;
            place-items: center;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 10%;
            left: -60px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 55%);
            filter: blur(36px);
            pointer-events: none;
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 8%;
            right: -40px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.25);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
            transform: translate(20px, 20px);
            opacity: 0.9;
            pointer-events: none;
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18) 0%, rgba(0, 0, 0, 0.92) 45%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--pure-white);
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .hero-copy {
            text-align: left;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.2rem, 6vw, 5.8rem);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: 2px;
            line-height: 1.02;
            color: var(--pure-white);
            text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
        }

        .hero-subtitle {
            font-size: clamp(1.05rem, 2.5vw, 1.75rem);
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.8;
            max-width: 650px;
            color: rgba(255,255,255,0.92);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 999px;
            color: var(--primary-gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 35px;
        }

        .hero-cta {
            display: inline-block;
            padding: 18px 40px;
            background: var(--primary-gold);
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-gold);
        }

        .hero-cta:hover {
            background: transparent;
            color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .hero-visual {
            min-height: 500px;
            border-radius: 30px;
            background: linear-gradient(150deg, rgba(255,255,255,0.06), rgba(212,175,55,0.1));
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            position: relative;
            display: grid;
            place-items: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 30%);
            pointer-events: none;
        }

        .hero-visual .visual-card {
            position: relative;
            width: 85%;
            max-width: 400px;
            aspect-ratio: 4 / 5;
            background: rgba(0, 0, 0, 0.65);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .visual-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .visual-card-content {
            padding: 24px;
            display: grid;
            gap: 18px;
        }

        .visual-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: var(--pure-white);
            letter-spacing: 0.5px;
        }

        .visual-card-text {
            color: rgba(255,255,255,0.85);
            font-size: 0.96rem;
            line-height: 1.8;
        }

        .hero-highlight {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .hero-highlight-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 25px;
            text-align: left;
            color: var(--pure-white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }

        .hero-highlight-card h4 {
            font-size: 1rem;
            color: var(--primary-gold);
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .hero-highlight-card p {
            font-size: 0.98rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
        }

        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 420px;
            }

            .hero-highlight {
                grid-template-columns: 1fr;
            }
        }

        .whatsapp-section {
    text-align: center;
    padding: 40px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-btn i {
    margin-right: 8px;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

        /* Parallax Sections */
        .parallax-section {
            position: relative;
            padding: 120px 0;
            overflow: visible;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 1;
            pointer-events: none;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2;
            pointer-events: none;
        }

        .parallax-content {
            position: relative;
            z-index: 3;
            
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: transparent;
            background: linear-gradient(90deg, #f4e87c 0%, #ffffff 40%, #d4af37 100%);
            -webkit-background-clip: text;
            background-clip: text;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.35);
            position: relative;
            z-index: 10;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--primary-gold);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
            z-index: 10;
        }

        /* Category Filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.08);
            color: var(--primary-gold);
            border: 2px solid rgba(212, 175, 55, 0.75);
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .filter-btn:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
        }

        .filter-btn.active {
            background: var(--primary-gold);
            color: var(--primary-black);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
        }

        .products-count {
            text-align: center;
            margin-bottom: 40px;
        }

        #product-count {
            font-size: 18px;
            font-weight: 600;
            color: var(--pure-white);
        }
.product-grid {
    width:100%;
    column-count: 5;
    column-gap: 2px;
}

@media (max-width: 992px) {
    .product-grid { column-count: 3; }
}
@media (max-width: 600px) {
    .product-grid { column-count: 2; }
}

/* Card */
.product-card {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

/* Image auto height */
.product-image img {
    width: 100%;
    height: auto; /* IMPORTANT */
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.product-card:hover img {
    transform: scale(1.05);
}

/* Bottom overlay */
.product-overlay-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.product-overlay-bottom h3 {
    font-size: 14px;
    margin: 0;
}

.product-overlay-bottom p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #d4af37;
}

/* Full clickable */
.full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}
       /* Collection Showcase */
        .collection-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .collection-item {
            position: relative;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .collection-item:hover {
            transform: scale(1.02);
        }

        .collection-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .collection-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.3) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .collection-item:hover .collection-overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(212, 175, 55, 0.5) 100%);
        }

        .collection-name {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--pure-white);
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .collection-count {
            font-size: 14px;
            color: var(--primary-gold);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Stats Section */
        .stats-section {
            background: var(--primary-black);
            padding: 80px 0;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            color: var(--pure-white);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
            padding: 50px 0;
            text-align: center;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 600;
            color: var(--pure-white);
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .cta-btn-primary {
            background: var(--primary-gold);
            color: var(--primary-black);
            border: 2px solid var(--primary-gold);
        }

        .cta-btn-primary:hover {
            background: transparent;
            color: var(--primary-gold);
        }

        .cta-btn-secondary {
            background: transparent;
            color: var(--pure-white);
            border: 2px solid var(--pure-white);
        }

        .cta-btn-secondary:hover {
            background: var(--pure-white);
            color: var(--primary-black);
        }

        /* Footer */
        .catalogue-footer {
            background: var(--primary-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .footer-logo img {
    height: 100px;
}

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }

        .footer-text {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--pure-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 12px;
            color: var(--text-gray);
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card.fade-in,
        .product-card.visible {
            opacity: 1 !important;
            transform: none !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 3rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .collection-showcase {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-black);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--primary-gold);
            border-top: 3px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Testimonials Section */
       .testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #111);
    color: #fff;
    text-align: center;
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Card Design */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    position: relative;
    transition: 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #d4af37;
}

/* Quote Icon */
.quote-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Name */
.testimonial-footer h4 {
    margin: 0;
    font-size: 14px;
}

/* Role */
.testimonial-footer span {
    font-size: 12px;
    color: #aaa;
}

       .deck-section {
    padding: 60px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.deck-wrapper {
    overflow-x: auto;
    padding: 30px 0;
}

.deck-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Card Style */
.deck-card {
    width: 220px;
    height: 300px;
    flex: 0 0 auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, z-index 0.3s;
}

/* Overlapping effect */
.deck-card:nth-child(even) {
    margin-top: 30px;
}

/* Image */
.deck-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.deck-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #d4af37;
    text-align: left;
}

/* Hover effect */
.deck-card:hover {
    transform: scale(1.08) rotate(-2deg);
    z-index: 10;
}

/* Scrollbar hidden */
.deck-wrapper::-webkit-scrollbar {
    display: none;
}

.animated-banner {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Image Animation */
.banner-bg {
    position: absolute;
    inset: 0;
    background: url('../img/bg3.avif') center/cover no-repeat;
    animation: zoomBanner 20s infinite alternate ease-in-out;
    filter: brightness(0.5);
}

@keyframes zoomBanner {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
}

.banner-content p {
    margin: 10px 0;
    font-size: 18px;
}

.banner-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #d4af37;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
}

/* Floating Particles */
.particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s linear infinite;
}

.particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.particles span:nth-child(2) { left: 30%; animation-delay: 2s; }
.particles span:nth-child(3) { left: 50%; animation-delay: 4s; }
.particles span:nth-child(4) { left: 70%; animation-delay: 6s; }
.particles span:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes float {
    0% {
        bottom: -10px;
        transform: translateX(0);
    }
    100% {
        bottom: 100%;
        transform: translateX(50px);
    }
}

        /* Newsletter Section */
        .newsletter-section {
            padding: 50px 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.95));
            position: relative;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .newsletter-content {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .newsletter-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--pure-white);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .newsletter-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--pure-white);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: rgba(255, 255, 255, 0.12);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-btn {
            padding: 15px 30px;
            background: var(--primary-gold);
            color: var(--primary-black);
            border: 2px solid var(--primary-gold);
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .newsletter-btn:hover {
            background: transparent;
            color: var(--primary-gold);
            transform: translateY(-2px);
        }

        .newsletter-note {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        /* Social Media Section */
        .social-section {
            padding: 50px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .social-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .social-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .social-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .social-title {
            color: var(--pure-white);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .social-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .social-link {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--accent-gold);
        }

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-input {
                width: 100%;
                max-width: 400px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .social-grid {
                grid-template-columns: 1fr;
            }
        }

        .zoom-container {
    position: relative;
    overflow: hidden;
}

.zoom-image {
    width: 100%;
    display: block;
}

/* Lens */
.zoom-lens {
    position: absolute;
    border: 1px solid #d4af37;
    width: 120px;
    height: 120px;
    display: none;
    cursor: crosshair;
    background: rgba(255, 255, 255, 0.2);
}

/* Zoom result box */
.zoom-result {
    position: absolute;
    top: 0;
    left: 105%;
    width: 300px;
    height: 300px;
    border: 1px solid #d4af37;
    background-repeat: no-repeat;
    display: none;
    z-index: 999;
    background-color: #000;
}

.zoom-container {
    overflow: hidden;
}

.zoom-container img {
    transition: transform 0.3s ease;
}