:root {
    --primary-bg: #ffffff; /* White background */
    --primary-bg-light: #f8fafc; /* Very light blue-grey */
    --accent: #111A31; /* Logo dark navy for text/icons */
    --accent-hover: #1A243E; /* Lighter navy */
    --text-main: #111A31;
    --text-muted: #475569;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(17, 26, 49, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(17, 26, 49, 0.08);
    --3d-shadow: 8px 8px 16px rgba(17, 26, 49, 0.06), -8px -8px 16px rgba(255, 255, 255, 0.9);
    --3d-shadow-hover: 15px 15px 30px rgba(17, 26, 49, 0.12), -15px -15px 30px rgba(255, 255, 255, 1);
    --3d-border: 1px solid rgba(255, 255, 255, 1);
}

body.dark-mode {
    --primary-bg: #111A31; /* Logo Navy */
    --primary-bg-light: #0d1426; /* Darker Navy */
    --accent: #f8fafc; /* Light Color */
    --accent-hover: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(17, 26, 49, 0.8);
    --glass-border: rgba(248, 250, 252, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --3d-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4), -4px -4px 10px rgba(26, 36, 62, 0.5);
    --3d-shadow-hover: 15px 15px 30px rgba(0, 0, 0, 0.6), -8px -8px 15px rgba(26, 36, 62, 0.7);
    --3d-border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dark Mode Background Patterns */
body.dark-mode .hero-particles {
    background-image: radial-gradient(rgba(248, 250, 252, 0.08) 1.5px, transparent 1.5px);
}

body.dark-mode .about,
body.dark-mode .diamonds,
body.dark-mode .catalog,
body.dark-mode .events,
body.dark-mode .contact {
    background-image: 
        linear-gradient(45deg, rgba(248, 250, 252, 0.02) 25%, transparent 25%, transparent 75%, rgba(248, 250, 252, 0.02) 75%, rgba(248, 250, 252, 0.02)), 
        linear-gradient(45deg, rgba(248, 250, 252, 0.02) 25%, transparent 25%, transparent 75%, rgba(248, 250, 252, 0.02) 75%, rgba(248, 250, 252, 0.02));
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}


/* Force Navbar and Footer to stay Light Theme */
body.dark-mode .navbar,
body.dark-mode .footer {
    --primary-bg: #ffffff;
    --primary-bg-light: #f8fafc;
    --accent: #111A31;
    --accent-hover: #1A243E;
    --text-main: #111A31;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(17, 26, 49, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(17, 26, 49, 0.08);
    --3d-shadow: 8px 8px 16px rgba(17, 26, 49, 0.06), -8px -8px 16px rgba(255, 255, 255, 0.9);
}

body.dark-mode .navbar .logo img,
body.dark-mode .footer .logo img {
    filter: none !important;
}

body.dark-mode .navbar .theme-toggle {
    background: var(--primary-bg-light);
    border: 1px solid var(--glass-border);
    box-shadow: var(--3d-shadow);
    color: var(--accent);
}

body.dark-mode .navbar .hamburger span {
    background-color: var(--accent);
}

body.dark-mode .navbar .nav-links a::after {
    background-color: var(--accent);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--primary-bg);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--primary-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background-color: var(--accent);
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(17, 26, 49, 0.4);
}

.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(17, 26, 49, 0.2);
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg-light);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: var(--primary-bg-light);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: var(--primary-bg-light);
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: rotate(15deg);
    box-shadow: var(--3d-shadow-hover);
}

body.dark-mode .logo img {
    /* Only apply to logos NOT in navbar/footer if they exist, but navbar/footer will override anyway */
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
}

.hero.cinematic {
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(17, 26, 49, 0.1) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.word-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpWord 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUpWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.label {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    background: var(--primary-bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-bg-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges .divider {
    height: 14px;
    width: 1px;
    background-color: rgba(17, 26, 49, 0.3);
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.diamond-anim {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.cinematic-octagon {
    max-width: 600px;
}

.rotating-diamond {
    transform-origin: center;
    animation: rotate-float 15s linear infinite;
}

.rotating-octagon {
    transform-origin: center;
    animation: rotate-octagon 40s linear infinite;
}

@keyframes rotate-octagon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-float {
    0% { transform: rotate(0deg) translateY(0px); }
    25% { transform: rotate(90deg) translateY(-10px); }
    50% { transform: rotate(180deg) translateY(0px); }
    75% { transform: rotate(270deg) translateY(10px); }
    100% { transform: rotate(360deg) translateY(0px); }
}

.anim-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw 3s ease-in-out infinite alternate;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

.anim-path-reverse {
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
    animation: draw-reverse 4s ease-in-out infinite alternate;
}

@keyframes draw-reverse {
    to { stroke-dashoffset: 400; }
}

.anim-pulse {
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { fill: rgba(255, 255, 255, 0); }
    100% { fill: rgba(255, 255, 255, 0.15); }
}

.hero-product-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: float-3d 6s ease-in-out infinite alternate;
    transition: opacity 0.6s ease;
}

@keyframes float-3d {
    0% { transform: translateY(0px) rotateY(-5deg) rotateX(5deg); }
    100% { transform: translateY(-20px) rotateY(5deg) rotateX(-5deg); }
}

.hero-product-img {
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(15px 25px 35px rgba(17, 26, 49, 0.25));
}

.hero-product-glow {
    display: none;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--primary-bg-light);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(17, 26, 49, 0.03);
    background-image: 
        linear-gradient(45deg, rgba(17, 26, 49, 0.02) 25%, transparent 25%, transparent 75%, rgba(17, 26, 49, 0.02) 75%, rgba(17, 26, 49, 0.02)), 
        linear-gradient(45deg, rgba(17, 26, 49, 0.02) 25%, transparent 25%, transparent 75%, rgba(17, 26, 49, 0.02) 75%, rgba(17, 26, 49, 0.02));
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    perspective: 1200px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    border-left: 2px solid rgba(17, 26, 49, 0.3);
    padding-left: 2rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number, .stat-item span {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    display: inline-block;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.step-card {
    background: var(--primary-bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: center;
    transform-style: preserve-3d;
    transform: translateY(0) translateZ(0);
}

.step-card:hover {
    transform: translateY(-10px) translateZ(30px) rotateX(4deg) rotateY(4deg);
    border-color: rgba(17, 26, 49, 0.1);
    box-shadow: var(--3d-shadow-hover);
    background: var(--primary-bg);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(17, 26, 49, 0.05);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Diamonds Section */
.diamonds {
    padding: 7rem 0;
    background-color: var(--primary-bg-light);
    perspective: 1200px;
}

.diamond-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.diamond-card {
    background: var(--primary-bg-light);
    padding: 3.5rem;
    border-radius: 16px;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform-style: preserve-3d;
    transform: translateY(0) translateZ(0);
}

.diamond-card:hover {
    transform: translateY(-10px) translateZ(30px) rotateX(4deg) rotateY(4deg);
}

.diamond-card:hover .card-icon img {
    transform: translateZ(50px) rotateX(5deg);
}

.card-icon {
    margin-bottom: 2.5rem;
    perspective: 1000px;
    height: 120px;
    display: flex;
    align-items: flex-end; /* Ensures information starts at the same point */
    justify-content: flex-start;
}

.card-icon img {
    filter: drop-shadow(10px 20px 20px rgba(17, 26, 49, 0.25));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.diamond-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.diamond-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-size: 1.1rem;
}

/* Catalog Section */
.catalog {
    padding: 7rem 0;
    background: var(--primary-bg);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(17, 26, 49, 0.03);
    perspective: 1200px;
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

.catalog-card {
    background: var(--primary-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.3s ease;
    transform-style: preserve-3d;
    transform: translateY(0) translateZ(0);
}

.catalog-card:hover {
    transform: translateY(-10px) translateZ(30px) rotateX(4deg) rotateY(-4deg);
    border-color: rgba(17, 26, 49, 0.1);
    box-shadow: var(--3d-shadow-hover);
    background: var(--primary-bg);
}

.catalog-icon {
    margin-bottom: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.catalog-icon img {
    filter: drop-shadow(8px 15px 15px rgba(17, 26, 49, 0.2));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.catalog-card:hover .catalog-icon img {
    transform: translateZ(40px) scale(1.2) rotateY(10deg);
}

.category-badge {
    background: rgba(17, 26, 49, 0.05);
    color: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(17, 26, 49, 0.2);
}

.catalog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.catalog-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    min-height: 80px;
    flex-grow: 1;
}

.carat-range {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    /* Merged into 768px */
}

/* Events Section */
.events {
    padding: 7rem 0;
    background-color: var(--primary-bg-light);
    perspective: 1200px;
}

/* Events Timeline */
.events-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 10px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(17, 26, 49, 0.2);
    z-index: 1;
}

.timeline-month {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 10px;
}

.timeline-month .dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 3px solid rgba(17, 26, 49, 0.2);
    transition: var(--transition);
}

.timeline-month.past .dot {
    border-color: rgba(17, 26, 49, 0.4);
    background: rgba(17, 26, 49, 0.1);
}

.timeline-month.active .dot.glow {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 15px rgba(17, 26, 49, 0.4);
}

.timeline-month.upcoming .dot {
    border-color: rgba(17, 26, 49, 0.3);
}

.timeline-month .month-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-month.active .month-name {
    color: var(--accent);
    font-weight: 600;
}

/* Event Categories */
.events-category-title {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(17, 26, 49, 0.1);
    padding-bottom: 1rem;
}

.events-category-title.past-title {
    margin-top: 5rem;
    color: var(--text-muted);
}

/* Event Hero */
.events-hero {
    display: flex;
    background: linear-gradient(145deg, var(--primary-bg), var(--primary-bg-light));
    border: 1px solid var(--accent);
    border-radius: 12px;
    margin-top: 4rem;
    position: relative;
    box-shadow: 0 10px 50px rgba(17, 26, 49, 0.1), 0 0 20px rgba(17, 26, 49, 0.1);
    overflow: hidden;
}

.events-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.events-hero-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-event-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.event-details-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-details-row p {
    margin: 0;
    color: var(--text-main);
}

.event-details-row strong {
    color: var(--accent);
}

.countdown-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.countdown-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1;
}

.time-box small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.colon {
    font-size: 2rem;
    color: var(--accent);
    margin-top: -15px;
    opacity: 0.5;
}

.large-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.featured-text {
    color: var(--accent);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-left: 1rem;
}

.past-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.past-card.compact {
    padding: 1.5rem;
    border-left: none;
    border-top: 3px solid transparent;
    opacity: 0.65;
}

.past-card.compact:hover {
    border-top-color: rgba(255, 255, 255, 0.3);
    border-left-color: transparent;
    opacity: 0.85;
}

.past-card.compact h3 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.past-card.compact .event-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
    min-height: auto;
}

/* Badges */
.event-badges {
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.upcoming {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.badge.upcoming.glow {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.badge.completed {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Event Cards General */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.event-city {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-dates {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-venue {
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.event-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.event-card .btn {
    margin-top: auto;
}

/* Contact Section */
.contact {
    padding: 7rem 0;
    background: var(--primary-bg-light);
    box-shadow: 0 -20px 40px rgba(17, 26, 49, 0.02); /* Section elevation shadow */
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.office-card {
    background: var(--primary-bg-light);
    padding: 4rem;
    border-radius: 16px;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    height: 100%;
}

.office-card h3 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.social-links {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(17, 26, 49, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-links a, .social-links .wechat {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-main);
    transition: var(--transition);
    font-size: 1.05rem;
    cursor: pointer;
}

.social-links a:hover, .social-links .wechat:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--primary-bg-light);
    padding: 4rem;
    border-radius: 16px;
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--primary-bg);
    border: 1px solid rgba(17, 26, 49, 0.2);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: inset 2px 2px 5px rgba(17, 26, 49, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--primary-bg);
    box-shadow: 0 0 0 2px rgba(17, 26, 49, 0.1), inset 2px 2px 5px rgba(17, 26, 49, 0.05);
}

.form-group select option {
    background-color: var(--primary-bg);
    color: var(--text-main);
}

.form-status {
    display: none;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(17, 26, 49, 0.05);
    border: 1px solid rgba(17, 26, 49, 0.2);
    color: var(--accent);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.input-error {
    border-color: #ff4757 !important;
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.1) !important;
}

/* Footer */
.footer {
    background: var(--primary-bg-light);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.footer-brand .tagline {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer h4 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--accent);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0);
    animation: bounce-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.5s;
}

@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    color: var(--primary-bg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 38px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-bg);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    z-index: 998;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: var(--accent);
    color: var(--primary-bg);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .contact-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text p {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .diamond-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-right .btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        text-align: center;
        gap: 1.5rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active a::after {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 130px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero p {
        margin: 0 auto 2.5rem;
    }
    
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .label {
        border-left: none;
        border-bottom: 2px solid var(--accent);
        padding-left: 0;
        padding-bottom: 5px;
    }
    
    .hero-graphic {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-hero {
        flex-direction: column;
    }
    
    .events-hero-content {
        padding: 3rem 1.5rem;
    }
    
    .countdown-timer {
        justify-content: space-between;
    }
    
    .past-grid {
        grid-template-columns: 1fr;
    }
    
    .events-timeline {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding-bottom: 1rem;
    }
    
    .timeline-line {
        right: 0;
        width: 150%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper, .office-card {
        padding: 1.5rem;
    }

    .nav-links {
        padding-top: 5rem;
    }

    .logo {
        white-space: nowrap;
        max-width: 70vw;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .logo img {
        height: 35px !important;
        margin-right: 0 !important;
    }

    .logo span {
        font-size: 1rem !important;
        line-height: 1.2;
        display: block;
        margin-top: 0;
    }

    .trust-badges {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.2rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        gap: 0.8rem;
    }

    .trust-badges .divider {
        display: none;
    }
}

/* Product Marquee Slider */
.marquee-section {
    padding: 8rem 0;
    background: var(--primary-bg);
    overflow: visible;
    position: relative;
    border-top: var(--3d-border);
    border-bottom: var(--3d-border);
    box-shadow: inset 0 10px 20px rgba(17, 26, 49, 0.03), inset 0 -10px 20px rgba(17, 26, 49, 0.03);
    z-index: 5;
}

.marquee-container {
    width: 100%;
    overflow: hidden; /* Keep hidden on the container, but the section is visible */
    position: relative;
    padding: 2rem 0; /* Add padding here too */
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-bg), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    align-items: center;
    animation: marquee 45s linear infinite;
}

.marquee-track img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(5px 15px 15px rgba(17, 26, 49, 0.2));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    perspective: 1000px;
}

.marquee-track img:hover {
    transform: scale(1.3) translateY(-20px) rotateX(10deg) rotateY(10deg);
    z-index: 10;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

@media (max-width: 768px) {
    .marquee-track img {
        width: 90px;
        height: 90px;
    }
    .marquee-container::before,
    .marquee-container::after {
        width: 60px;
    }
}

/* Scroll Rotating Diamond */
.scroll-diamond {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scale(0.5) rotateY(20deg);
    width: 180px;
    height: 180px;
    z-index: 999;
    pointer-events: none;
    filter: drop-shadow(15px 25px 35px rgba(17, 26, 49, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.scroll-diamond.visible {
    opacity: 1;
    transform: translateY(-50%) scale(1.1) rotateY(15deg);
}

.scroll-diamond img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
}

@media (max-width: 768px) {
    .scroll-diamond {
        width: 80px;
        height: 80px;
        right: 15px;
    }
}

/* Product Viewer Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 26, 49, 0.95);
    backdrop-filter: blur(15px);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2100;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-container {
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    display: flex;
    background: var(--primary-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: modalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-image-wrapper {
    flex: 1.5;
    background: var(--primary-bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
}

.modal-image-wrapper:active {
    cursor: grabbing;
}

#modalImage {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    pointer-events: none;
}

.modal-info {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-bg);
    border-left: 1px solid var(--glass-border);
}

.modal-badge {
    background: rgba(17, 26, 49, 0.05);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-bottom: 2rem;
}

.modal-info h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.modal-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.modal-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.modal-controls button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modal-controls button:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.modal-footer-info {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Marquee Image Interaction */
.marquee-track img {
    cursor: zoom-in;
}

@media (max-width: 992px) {
    .modal-container {
        flex-direction: column;
        height: 90vh;
        width: 95%;
    }
    .modal-image-wrapper {
        flex: 1;
    }
    .modal-info {
        flex: 1;
        padding: 2rem;
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }
    .modal-info h3 {
        font-size: 1.8rem;
    }
}

/* Spin & Win Styles */
.spin-trigger {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #111A31; /* Theme Navy */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid #fff;
}

body.dark-mode .spin-trigger {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.spin-trigger:hover {
    width: 180px;
    border-radius: 30px;
}

.spin-text {
    white-space: nowrap;
    margin-left: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

.spin-trigger:hover .spin-text {
    display: block;
}

.spin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 26, 49, 0.9);
    backdrop-filter: blur(10px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spin-modal.active {
    display: flex;
    opacity: 1;
}

.spin-modal-content {
    background: var(--primary-bg);
    width: 90%;
    max-width: 500px;
    padding: 3rem 2rem;
    border-radius: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-spin {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-muted);
}

.spin-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.spin-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    border: 8px solid var(--accent);
    overflow: hidden;
    transition: transform 5s cubic-bezier(0.1, 0, 0, 1);
    box-shadow: 0 0 0 5px #fff, 0 0 0 10px var(--accent);
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #ff4757;
    z-index: 100; /* Above everything */
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
}

.wheel-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        #111A31 0deg 45deg,
        #1A243E 45deg 90deg,
        #111A31 90deg 135deg,
        #1A243E 135deg 180deg,
        #111A31 180deg 225deg,
        #1A243E 225deg 270deg,
        #111A31 270deg 315deg,
        #1A243E 315deg 360deg
    );
}

.wheel-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.wheel-label {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(var(--a));
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.wheel-label span {
    margin-top: 35px; /* Distance from outer edge */
    font-size: 0.95rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    text-align: center;
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.spin-result {
    display: none;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

.congrats-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coupon-box {
    background: var(--primary-bg-light);
    border: 2px dashed var(--accent);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.coupon-box span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
}

.coupon-box button {
    background: #111A31 !important; /* Always Dark Navy */
    color: #ffffff !important; /* Always White Text */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.coupon-box button:hover {
    background: #1A243E !important;
    transform: translateY(-2px);
}

.small-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.spin-notification {
    display: none;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-bg-light);
    border-radius: 15px;
    border: 1px solid var(--accent);
    animation: fadeIn 0.5s ease;
}

.spin-notification p {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3D Grid Pattern for Light Theme */
body:not(.dark-mode) .diamonds, 
body:not(.dark-mode) .catalog, 
body:not(.dark-mode) .events, 
body:not(.dark-mode) .contact {
    background-image: 
        linear-gradient(rgba(17, 26, 49, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 26, 49, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
}

body:not(.dark-mode) .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .wheel-container {
        width: 280px;
        height: 280px;
    }
    .wheel-label span {
        font-size: 0.8rem;
        margin-top: 25px;
    }
    .spin-btn {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
    .spin-header h2 {
        font-size: 1.8rem;
    }
    .spin-modal-content {
        padding: 2rem 1rem;
        width: 95%;
    }
}

@media (max-width: 350px) {
    .wheel-container {
        width: 240px;
        height: 240px;
    }
    .wheel-label span {
        font-size: 0.7rem;
        margin-top: 20px;
    }
}


/* 3D Grid Pattern for Events Calendar (Mobile) */
@media (max-width: 768px) {
    .events {
        background-image: 
            linear-gradient(rgba(17, 26, 49, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(17, 26, 49, 0.05) 1px, transparent 1px);
        background-size: 40px 40px;
    }
    
    body.dark-mode .events {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    }
}

/* Live Event Styles */
.badge.live-badge {
    background: #ff4757;
    color: #fff;
    border: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.live-status {
    border-color: #ff4757 !important;
    background: rgba(255, 71, 87, 0.05) !important;
}


/* Language Selector Styles */
.lang-selector {
    position: relative;
    z-index: 1001;
}

.lang-btn {
    background: var(--primary-bg-light);
    border: var(--3d-border);
    box-shadow: var(--3d-shadow);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    box-shadow: var(--3d-shadow-hover);
    transform: translateY(-2px);
}

.lang-btn .chevron {
    transition: transform 0.3s ease;
}

.lang-selector.active .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--primary-bg-light);
    border: var(--3d-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    min-width: 160px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    animation: slideDown 0.3s ease forwards;
    backdrop-filter: blur(10px);
}

.lang-selector.active .lang-dropdown {
    display: flex;
}

.lang-option {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-main);
    text-align: left;
    white-space: nowrap;
}

.lang-option:hover {
    background: rgba(17, 26, 49, 0.05);
    color: var(--accent);
}

.lang-option.active {
    background: var(--accent);
    color: var(--primary-bg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide Google Translate Bar */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-value span:nth-child(2),
.goog-te-menu-value img {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Fix for mobile menu with language selector */
@media (max-width: 768px) {
    .lang-selector {
        margin-right: 0.5rem;
    }
    .lang-btn span {
        display: none;
    }
    .lang-btn {
        width: 44px;
        height: 44px;
        justify-content: center;
        padding: 0;
    }
    .lang-btn .chevron {
        display: none;
    }
}

/* Responsive Adjustments for Navbar */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transition: var(--transition);
        padding-top: 2rem;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links a {
        font-size: 1.4rem;
        font-family: var(--font-heading);
        letter-spacing: 2px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        gap: 1rem;
    }

    .logo span {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
    }
    .nav-right .btn-outline {
        display: none; /* Hide WhatsApp button on very small screens to save space */
    }
    .logo img {
        height: 35px !important;
        margin-right: 6px !important;
    }
    .logo span {
        font-size: 0.85rem !important;
        letter-spacing: 0.1px !important;
    }
    .nav-right {
        gap: 0.6rem;
    }
    .theme-toggle {
        width: 38px;
        height: 38px;
    }
    .lang-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
    }
    .lang-btn svg:first-child {
        width: 16px;
        height: 16px;
    }
}



.nav-links-wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
}


.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-dropdown {
    min-width: 190px;
}


.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

