/* ========================================
   SHREE MANGAL BALAJI JEWELLERS â€” STYLES
   Premium Luxury Jewellery Brand
======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8860B;
    --gold-muted: #C5953B;
    --gold-pale: #F0D680;
    --navy: #1C3055;
    --navy-light: #2A4270;
    --navy-dark: #0F1E38;
    --bg-primary: #080808;
    --bg-secondary: #0E0E0E;
    --bg-card: #141414;
    --bg-card-hover: #1A1A1A;
    --text-primary: #F5F0E8;
    --text-secondary: #B8B0A0;
    --text-muted: #8A8272;
    --champagne: #F5E6CC;
    --white: #FFFFFF;
    --black: #000000;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
    --shadow-gold-intense: 0 0 80px rgba(212, 175, 55, 0.25);
    --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    background-image: url('assets/bg-luxury.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.1rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* ===== CURSOR GLOW ===== */
#cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover #cursor-glow { opacity: 1; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo-wrap {
    margin-bottom: 2rem;
}

.preloader-logo-img {
    width: 120px;
    height: auto;
    margin: 0 auto;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-monogram {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.4em;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-bar-track {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.15);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: preloaderFill 2.5s var(--ease-smooth) forwards;
}

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s 0.5s var(--ease-smooth) forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== PARTICLE CANVAS ===== */
#gold-particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1.2rem 0;
    transition: all 0.5s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 100;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height 0.3s var(--ease-smooth);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.logo-text-fallback {
    align-items: center;
}

.logo-mbj {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta-btn {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 100;
    padding: 5px;
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.4s var(--ease-smooth);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.btn-arrow {
    transition: transform 0.3s var(--ease-smooth);
    font-size: 1.2em;
}

.btn-gold:hover .btn-arrow,
.btn-outline:hover .btn-arrow {
    transform: translateX(4px);
}

/* Shimmer button effect */
.shimmer-btn {
    position: relative;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent 30%);
    animation: shimmerRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.shimmer-btn:hover::after { opacity: 1; }

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

/* ===== SECTION HEADINGS ===== */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: 'â€”';
    margin: 0 1rem;
    color: var(--gold-muted);
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.gold-line::before {
    content: 'â—†';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(28, 48, 85, 0.15) 0%, var(--bg-primary) 70%);
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(28, 48, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 2;
}

.hero-floating-gems {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-gem {
    position: absolute;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.15;
    animation: floatGem 8s ease-in-out infinite;
}

.gem-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 1.2rem; }
.gem-2 { top: 25%; right: 15%; animation-delay: 1.5s; font-size: 0.8rem; }
.gem-3 { top: 60%; left: 5%; animation-delay: 3s; }
.gem-4 { top: 70%; right: 10%; animation-delay: 0.8s; font-size: 1.5rem; }
.gem-5 { top: 40%; left: 80%; animation-delay: 2.2s; }
.gem-6 { top: 85%; left: 40%; animation-delay: 4s; font-size: 0.9rem; }

@keyframes floatGem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.03);
}

.badge-star {
    color: var(--gold);
    font-size: 0.7rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .title-line {
    display: block;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--champagne));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline-wrap {
    margin-bottom: 2.5rem;
    min-height: 2rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.typewriter-cursor {
    color: var(--gold);
    animation: cursorBlink 0.8s ease-in-out infinite;
    font-weight: 300;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.scroll-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-track {
    width: 1px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-thumb {
    width: 100%;
    height: 15px;
    background: var(--gold);
    position: absolute;
    top: -15px;
    animation: scrollDown 2s var(--ease-smooth) infinite;
}

@keyframes scrollDown {
    0% { top: -15px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.about-img-frame:hover .about-img {
    transform: scale(1.05);
}

.frame-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    pointer-events: none;
    transition: inset 0.5s var(--ease-smooth);
}

.about-img-frame:hover .frame-border {
    inset: 20px;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold);
    border-style: solid;
    pointer-events: none;
}

.frame-tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.frame-tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.frame-bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.frame-br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: inline;
}

.exp-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
}

.exp-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.about-text .about-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--gold);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ===== COLLECTIONS / GALLERY ===== */
.collections {
    background: var(--bg-primary);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    letter-spacing: 0.05em;
}

.filter-btn:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.filter-btn.active {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    transition: all 0.6s var(--ease-smooth);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    position: relative;
    visibility: visible;
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.gallery-img-wrap:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(8, 8, 8, 0.95) 0%,
        rgba(8, 8, 8, 0.5) 40%,
        rgba(8, 8, 8, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.gallery-img-wrap:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.gallery-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--bg-primary);
    background: var(--gold);
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.3s var(--ease-smooth);
    transform: translateY(10px);
}

.gallery-img-wrap:hover .gallery-view-btn {
    transform: translateY(0);
}

.gallery-view-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Gallery shimmer sweep */
.gallery-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.8s var(--ease-smooth);
    pointer-events: none;
}

.gallery-img-wrap:hover .gallery-shimmer {
    left: 150%;
}

.gallery-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-body {
    position: relative;
    z-index: 2;
    width: 920px;
    max-width: 90vw;
    max-height: 88vh;
    background: rgba(14, 14, 14, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-bounce);
    overflow: hidden;
}

.lightbox.active .lightbox-body {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    max-height: 52vh;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.lightbox-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0;
}

.lightbox-cat {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.lightbox-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 0.2rem;
    line-height: 1.25;
}

@media (max-width: 768px) {
    .lightbox-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.8rem 1.2rem;
        max-height: 85vh;
        overflow-y: auto;
        text-align: center;
        width: 92vw;
    }

    .lightbox-img {
        max-height: 38vh;
    }

    .lightbox-info {
        align-items: center;
        text-align: center;
    }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 5;
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    font-size: 3rem;
    color: var(--white);
    opacity: 0.5;
    transition: all 0.3s;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    color: var(--gold);
}

/* ===== SERVICES ===== */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s var(--ease-smooth);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    transition: all 0.5s var(--ease-smooth);
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto 0;
    opacity: 0.3;
    transition: all 0.5s var(--ease-smooth);
}

.service-card:hover .service-line {
    width: 60px;
    opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s var(--ease-out-expo);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.testimonial-stars span {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s var(--ease-smooth);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 0 0.8rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    outline: none;
    transition: border-color 0.4s var(--ease-smooth);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-smooth);
    font-family: var(--font-body);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.3rem;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transition: width 0.5s var(--ease-out-expo);
}

.form-group input:focus ~ .input-highlight,
.form-group textarea:focus ~ .input-highlight {
    width: 100%;
}

.form-submit-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    transition: all 0.4s var(--ease-smooth);
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.info-icon {
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-smooth);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 0 2rem;
    position: relative;
}

.footer-gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-bottom: 3rem;
    opacity: 0.3;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 1rem;
    opacity: 0.8;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.footer-domain {
    font-size: 0.85rem;
    color: var(--gold-muted);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.footer-domain:hover {
    color: var(--gold);
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-reveal,
.anim-reveal-left,
.anim-reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease-out-expo);
}

.anim-reveal {
    transform: translateY(40px);
}

.anim-reveal-left {
    transform: translateX(-60px);
}

.anim-reveal-right {
    transform: translateX(60px);
}

.anim-reveal.visible,
.anim-reveal-left.visible,
.anim-reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.25); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 3rem;
        gap: 2rem;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta-btn {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-lg {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: -20px;
        right: 10px;
        padding: 1rem 1.5rem;
    }

    .exp-number {
        font-size: 2.2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Lightbox */
    .lightbox-body {
        max-width: 95vw;
    }

    .lightbox-prev { left: 0.5rem; font-size: 2rem; }
    .lightbox-next { right: 0.5rem; font-size: 2rem; }

    #cursor-glow { display: none; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .footer-nav {
        gap: 1rem;
    }
}

/* ===== PRINT ===== */
@media print {
    #preloader, #gold-particles, #cursor-glow,
    .scroll-indicator, .hero-floating-gems { display: none !important; }
    body { background: #fff; color: #000; }
    .section { padding: 40px 0; }
}

/* ========================================
   ULTRA PREMIUM ANIMATION UPGRADES
   Peak Interactive Experience
======================================== */

/* ===== CUSTOM LUXURY CURSOR ===== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s,
                background 0.3s,
                opacity 0.3s;
    mix-blend-mode: difference;
    opacity: 0;
}

.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.3s;
    opacity: 0;
}

.custom-cursor-dot.visible {
    opacity: 1;
}

.custom-cursor.hovering {
    width: 70px;
    height: 70px;
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
}

.custom-cursor.hovering + .custom-cursor-dot {
    opacity: 0;
}

.custom-cursor.clicking {
    width: 30px;
    height: 30px;
    border-color: var(--gold-pale);
    background: rgba(212, 175, 55, 0.15);
}

.cursor-trail-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s;
}

/* ===== MOTION BLUR ON SCROLL ===== */
.motion-blur-active {
    filter: blur(0px);
    transition: filter 0.1s linear;
}

@media (max-width: 768px), (pointer: coarse) {
    .motion-blur-active,
    main {
        filter: none !important;
        transform: none !important;
    }
}

/* ===== CINEMATIC TEXT REVEAL ===== */
.char-split {
    display: inline-block;
    overflow: hidden;
}

.char-split .char {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.char-split.revealed .char {
    transform: translateY(0);
    opacity: 1;
}

.word-split {
    overflow: hidden;
    display: inline-block;
}

.word-split .word {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.word-split.revealed .word {
    transform: translateY(0);
}

/* ===== GLITCH TEXT EFFECT ===== */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.glitch-text:hover::before {
    animation: glitchTop 0.4s linear;
    color: var(--gold-light);
    opacity: 0.8;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text:hover::after {
    animation: glitchBottom 0.4s linear 0.05s;
    color: var(--champagne);
    opacity: 0.8;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchTop {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, -2px); }
    40% { transform: translate(3px, 2px); }
    60% { transform: translate(-2px, 1px); }
    80% { transform: translate(2px, -1px); }
    100% { transform: translate(0); }
}

@keyframes glitchBottom {
    0% { transform: translate(0); }
    20% { transform: translate(3px, 2px); }
    40% { transform: translate(-3px, -1px); }
    60% { transform: translate(2px, -2px); }
    80% { transform: translate(-2px, 1px); }
    100% { transform: translate(0); }
}

/* ===== KINETIC FLOATING TEXT ===== */
.kinetic-text .kinetic-char {
    display: inline-block;
    animation: kineticFloat 3s ease-in-out infinite;
    animation-delay: var(--char-delay, 0s);
}

@keyframes kineticFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(0.5deg); }
    75% { transform: translateY(3px) rotate(-0.5deg); }
}

/* ===== GOLD RIPPLE CLICK ===== */
.click-ripple {
    position: fixed;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    pointer-events: none;
    z-index: 99997;
    animation: rippleExpand 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translate(-50%, -50%);
}

@keyframes rippleExpand {
    0% { width: 0; height: 0; opacity: 0.6; }
    100% { width: 150px; height: 150px; opacity: 0; }
}

/* ===== 3D WEBGL CANVAS ===== */
#webgl-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ===== SECTION DIVIDER ANIMATION ===== */
.section-divider {
    position: relative;
    height: 1px;
    background: transparent;
    margin: 0;
    overflow: visible;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1), left 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider.visible::after {
    width: 100%;
    left: 0;
}

/* ===== IMAGE REVEAL WIPE ===== */
.img-reveal-wrap {
    position: relative;
    overflow: hidden;
}

.img-reveal-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.img-reveal-wrap.revealed::after {
    transform: scaleX(0);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    z-index: 100001;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== FLOATING AMBIENT ORBS ===== */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.12;
    animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.ambient-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: -7s;
}

.ambient-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ===== HORIZONTAL SCROLL MARQUEE ===== */
.marquee-section {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    width: fit-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.12);
    white-space: nowrap;
    padding: 0 3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.5s;
}

.marquee-item .sep {
    color: var(--gold);
    margin: 0 1.5rem;
    font-size: 0.6em;
    vertical-align: middle;
}

.marquee-track:hover .marquee-item {
    color: rgba(212, 175, 55, 0.25);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== NOISE TEXTURE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 150px;
}

/* ===== VIGNETTE OVERLAY ===== */
.vignette-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
}

/* ===== AURORA BACKGROUND ===== */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-beam {
    position: absolute;
    width: 150%;
    height: 300px;
    opacity: 0.04;
    filter: blur(100px);
    animation: auroraShift 15s ease-in-out infinite alternate;
}

.aurora-beam-1 {
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
    top: 15%;
    left: -25%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.aurora-beam-2 {
    background: linear-gradient(90deg, transparent, var(--navy), var(--navy-light), transparent);
    top: 55%;
    left: -25%;
    transform: rotate(10deg);
    animation-delay: -5s;
}

.aurora-beam-3 {
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--champagne), transparent);
    top: 75%;
    left: -25%;
    transform: rotate(-8deg);
    animation-delay: -10s;
}

@keyframes auroraShift {
    0% { transform: translateX(-10%) rotate(-15deg); opacity: 0.03; }
    50% { opacity: 0.06; }
    100% { transform: translateX(10%) rotate(-10deg); opacity: 0.03; }
}

/* ===== SCROLL-TRIGGERED SKEW ===== */
.scroll-skew {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ===== BREATHING GLOW ON SECTION TAGS ===== */
.section-tag {
    animation: breatheGlow 3s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { box-shadow: 0 0 0px rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
}

/* ===== ENHANCED GALLERY HOVER 3D ===== */
.gallery-item .gallery-img-wrap {
    perspective: 800px;
}

.gallery-item:hover .gallery-img {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== TEXT STROKE OUTLINE EFFECT ===== */
.stroke-text {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
    transition: color 0.5s, -webkit-text-stroke 0.5s;
}

.stroke-text:hover {
    -webkit-text-stroke: 0px;
    color: var(--gold);
}

/* ===== PARALLAX DEPTH LAYERS ===== */
.parallax-layer {
    will-change: transform;
    transition: transform 0.05s linear;
}

@media (min-width: 769px) {
    body.custom-cursor-active,
    body.custom-cursor-active * {
        cursor: none !important;
    }
}

/* ========================================
   STORE LOCATOR â€” LUXURY MAP INTEGRATION
======================================== */

.store-locator-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.store-locator-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.store-locator-subtitle {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.8rem;
    letter-spacing: 0.03em;
}

.store-locator-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.05);
    min-height: 480px;
}

.store-locator-panel {
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.store-panel-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.store-form-group {
    position: relative;
}

.store-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
    letter-spacing: 0.02em;
}

.store-input::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.store-input:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

.store-form-row {
    display: flex;
    gap: 0.8rem;
}

.store-half {
    flex: 1;
}

.store-directions-btn {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

.store-locator-map {
    position: relative;
    min-height: 480px;
}

.store-locator-map gmp-map {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
}

/* Google Maps autocomplete dropdown styling */
.pac-container {
    background: var(--bg-card) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    margin-top: 4px !important;
    font-family: var(--font-body) !important;
    z-index: 100002 !important;
}

.pac-item {
    padding: 10px 16px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.06) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.pac-item:hover {
    background: rgba(212, 175, 55, 0.08) !important;
}

.pac-item-query {
    color: var(--gold) !important;
    font-weight: 500 !important;
}

.pac-icon {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(15deg) !important;
}

/* ===== STORE LOCATOR RESPONSIVE ===== */
@media (max-width: 768px) {
    .store-locator-wrap {
        grid-template-columns: 1fr;
    }

    .store-locator-panel {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .store-locator-map {
        min-height: 350px;
    }

    .store-locator-map gmp-map {
        min-height: 350px;
    }
}

/* ========================================
   1. HERO VIDEO BACKGROUND & AUDIO TOGGLE
======================================== */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: contrast(1.1) brightness(0.8);
}

.hero-stream-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.85) 100%),
                linear-gradient(180deg, rgba(8,8,8,0.5) 0%, transparent 40%, rgba(8,8,8,0.95) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-audio-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(14, 14, 14, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-smooth);
}

.hero-audio-toggle:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* ========================================
   2. 360Â° VIEWER & 4K LOUPE MAGNIFIER
======================================== */
.lightbox-viewer-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-stage {
    position: relative;
    cursor: grab;
    overflow: hidden;
    border-radius: 12px;
    user-select: none;
}

.lightbox-stage:active {
    cursor: grabbing;
}

.loupe-magnifier {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.8), inset 0 0 15px rgba(212, 175, 55, 0.3);
    background-repeat: no-repeat;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
}

.lightbox-stage:hover .loupe-magnifier {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.viewer-hint-360 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    animation: breatheGlow 2.5s ease-in-out infinite;
}

.lightbox-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.2rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.spec-tag {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-tag strong {
    color: var(--gold);
}

/* ========================================
   3. CUSTOM JEWELLERY DESIGN STUDIO
======================================== */
.custom-studio {
    background: rgba(14, 14, 14, 0.6);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.studio-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.8rem auto 0;
}

.studio-wrap {
    margin-top: 3rem;
}

/* Stepper Bar */
.studio-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.4;
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed {
    opacity: 0.8;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.step-indicator.active .step-num {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step-name {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
    margin: 0 1rem;
}

/* Studio Content Grid */
.studio-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}

.studio-step-panel {
    display: none;
}

.studio-step-panel.active {
    display: block;
    animation: fadeInUp 0.5s var(--ease-smooth) forwards;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Option Radio Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.option-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.option-card:hover {
    border-color: var(--gold-muted);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-3px);
}

.option-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.option-icon {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.option-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Metal Swatches */
.metal-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 0.8rem;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.4), 0 4px 10px rgba(0,0,0,0.5);
}

.swatch-yellow { background: linear-gradient(135deg, #FFE066, #D4AF37, #997A15); }
.swatch-rose { background: linear-gradient(135deg, #FAD0C4, #E8A898, #B86B5A); }
.swatch-antique { background: linear-gradient(135deg, #C5953B, #8B6508, #4A3500); }
.swatch-platinum { background: linear-gradient(135deg, #FFFFFF, #D1D5DB, #6B7280); }

.studio-nav-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Right Live Preview Stage */
.studio-preview-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.8rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.preview-stage {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(8,8,8,0.9) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stage-aura {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.15;
    animation: orbFloat 10s ease-in-out infinite;
}

.preview-img {
    max-height: 190px;
    width: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.7));
    transition: transform 0.5s var(--ease-bounce);
}

.stage-badge {
    position: absolute;
    bottom: 12px;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(8,8,8,0.8);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.preview-summary {
    margin-top: 1.5rem;
}

.preview-summary h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.summary-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.summary-list span { color: var(--text-muted); }
.summary-list strong { color: var(--text-primary); }

.price-estimator {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.2rem;
}

.price-estimator span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0.2rem 0;
}

.price-estimator small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.studio-quote-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .studio-grid {
        grid-template-columns: 1fr;
    }
    .studio-preview-card {
        position: static;
    }
    .option-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== ROYAL LOGO IMAGE ===== */
.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(3deg);
}

.preloader-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    animation: pulse 2s infinite ease-in-out;
}

/* ===== METAL SELECTOR TABS ===== */
.metal-selector-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metal-btn {
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(18, 18, 18, 0.8);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 40px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-smooth);
}

.metal-btn:hover {
    color: var(--gold-light);
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.metal-btn.active {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hidden {
    display: none !important;
}
