/* --- LUXURY LIGHT THEME VARIABLES --- */
:root {
    --ivory-white: #f8f5f0;
    --pearl: #f0ede5;
    --champagne-gold: #d4af37;
    --rose-gold: #b76e79;
    --crystal-blue: #a0d2db;
    --marble-gray: #e8e8e8;
    --shadow-gray: rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #2c3e50;
    --text-light: #5d6d7e;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
}

/* --- GLOBAL RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--pearl) 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: default;
    min-height: 100vh;
    line-height: 1.6;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* --- LUXURY NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 30px var(--shadow-gray);
}

nav.scrolled {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.brand-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)) invert(1);
    transition: all 0.3s ease;
}

.brand:hover .brand-logo {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)) invert(1);
    transform: scale(1.05);
}

.brand-text {
    background: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.brand-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--rose-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.brand:hover .brand-text::after {
    transform: scaleX(1);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.8;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--rose-gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--text-dark);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    opacity: 1;
    color: var(--text-dark);
}

.nav-link.active::before {
    transform: scaleX(1);
}

/* CTA Button in Nav */
.nav-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold));
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 20px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
                0 0 40px rgba(183, 110, 121, 0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--champagne-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- ENHANCED WEB DESIGN BACKGROUND --- */
.web-design-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--pearl) 100%);
}

.web-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.web-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 65%, rgba(183, 110, 121, 0.1) 75%, transparent 85%),
        linear-gradient(-45deg, transparent 65%, rgba(160, 210, 219, 0.1) 75%, transparent 85%);
    background-size: 100px 100px;
    animation: linesMove 15s linear infinite;
}

@keyframes linesMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 0); }
}

.web-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.web-nodes::before,
.web-nodes::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 2px, transparent 3px),
                     radial-gradient(circle at 80% 70%, rgba(183, 110, 121, 0.15) 2px, transparent 3px),
                     radial-gradient(circle at 40% 80%, rgba(160, 210, 219, 0.15) 2px, transparent 3px),
                     radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.15) 2px, transparent 3px);
    background-size: 200px 200px;
    animation: nodesPulse 8s ease-in-out infinite alternate;
}

.web-nodes::after {
    animation-delay: -4s;
}

@keyframes nodesPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.1); }
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.03) 50%),
        linear-gradient(transparent 50%, rgba(255, 255, 255, 0.03) 50%);
    background-size: 10px 10px;
    opacity: 0.3;
    animation: glitchScan 2s linear infinite;
}

@keyframes glitchScan {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold));
    opacity: 0.1;
    filter: blur(20px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: floatShape1 25s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: floatShape2 30s infinite ease-in-out;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: floatShape3 20s infinite ease-in-out;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation: floatShape4 35s infinite ease-in-out;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 40%;
    left: 60%;
    animation: floatShape5 28s infinite ease-in-out;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-80px, 60px) rotate(120deg); }
    66% { transform: translate(60px, -80px) rotate(240deg); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(70px, -70px) scale(1.2); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-100px, -50px) rotate(90deg); }
    50% { transform: translate(-50px, -100px) rotate(180deg); }
    75% { transform: translate(50px, -50px) rotate(270deg); }
}

@keyframes floatShape5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(90px, 40px) rotate(120deg); }
    66% { transform: translate(-40px, 90px) rotate(240deg); }
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Hero Sparkle */
.hero-sparkle {
    position: absolute;
    top: -50px;
    right: 20%;
    font-size: 3rem;
    animation: sparkle 3s infinite ease-in-out;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Character Animations */
.title-char, .subtitle-char {
    display: inline-block;
    animation: charFloat 3s infinite ease-in-out;
    animation-delay: calc(var(--char-index) * 0.1s);
}

.title-char:nth-child(1) { --char-index: 1; }
.title-char:nth-child(2) { --char-index: 2; }
.title-char:nth-child(3) { --char-index: 3; }
.title-char:nth-child(4) { --char-index: 4; }
.title-char:nth-child(5) { --char-index: 5; }
.title-char:nth-child(6) { --char-index: 6; }
.title-char:nth-child(7) { --char-index: 7; }
.title-char:nth-child(8) { --char-index: 8; }
.title-char:nth-child(9) { --char-index: 9; }
.title-char:nth-child(10) { --char-index: 10; }
.title-char:nth-child(11) { --char-index: 11; }
.title-char:nth-child(12) { --char-index: 12; }
.title-char:nth-child(13) { --char-index: 13; }
.title-char:nth-child(14) { --char-index: 14; }
.title-char:nth-child(15) { --char-index: 15; }
.title-char:nth-child(16) { --char-index: 16; }
.title-char:nth-child(17) { --char-index: 17; }

.subtitle-char:nth-child(1) { --char-index: 1; }
.subtitle-char:nth-child(2) { --char-index: 2; }
.subtitle-char:nth-child(3) { --char-index: 3; }
.subtitle-char:nth-child(4) { --char-index: 4; }
.subtitle-char:nth-child(5) { --char-index: 5; }
.subtitle-char:nth-child(6) { --char-index: 6; }
.subtitle-char:nth-child(7) { --char-index: 7; }
.subtitle-char:nth-child(8) { --char-index: 8; }
.subtitle-char:nth-child(9) { --char-index: 9; }
.subtitle-char:nth-child(10) { --char-index: 10; }

@keyframes charFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.title-space {
    display: inline-block;
    width: 20px;
}

/* Word Animations */
.subtitle-word {
    display: inline-block;
    animation: wordPulse 4s infinite ease-in-out;
    animation-delay: calc(var(--word-index) * 0.3s);
    margin: 0 5px;
}

.subtitle-word:nth-child(1) { --word-index: 1; }
.subtitle-word:nth-child(2) { --word-index: 2; }
.subtitle-word:nth-child(3) { --word-index: 3; }
.subtitle-word:nth-child(4) { --word-index: 4; }
.subtitle-word:nth-child(5) { --word-index: 5; }
.subtitle-word:nth-child(6) { --word-index: 6; }

@keyframes wordPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* Hero CTA */
.hero-cta {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.pulse-btn {
    animation: btnPulse 2s infinite ease-in-out;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), 0 0 60px rgba(183, 110, 121, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3), 0 0 80px rgba(183, 110, 121, 0.2); }
}

.btn-sparkle {
    margin-right: 10px;
    animation: sparkleSpin 2s infinite linear;
}

@keyframes sparkleSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Stats Grid */
.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(15px);
    z-index: -1;
    opacity: 0.5;
    animation: statGlow 3s infinite ease-in-out;
}

@keyframes statGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* Interactive Tech Elements */
.tech-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.tech-element {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: techFloat 20s infinite linear;
    opacity: 0.3;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.element-3 {
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

.element-4 {
    bottom: 30%;
    right: 25%;
    animation-delay: -15s;
}

.element-5 {
    top: 70%;
    left: 30%;
    animation-delay: -20s;
}

@keyframes techFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Enhanced Scroll Indicator */
.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 2s infinite ease-in-out;
    color: var(--champagne-gold);
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* --- GLITCH EFFECTS --- */
.glitch-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 20px 0;
    position: relative;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: glitch1 3s infinite;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-title::before {
    animation: glitch2 2s infinite;
    color: var(--champagne-gold);
    z-index: -1;
}

.glitch-title::after {
    animation: glitch3 1.5s infinite;
    color: var(--rose-gold);
    z-index: -2;
}

.glitch-subtitle {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 40px 0;
    position: relative;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: glitch4 4s infinite;
}

.glitch-subtitle::before,
.glitch-subtitle::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.glitch-subtitle::before {
    animation: glitch5 3s infinite;
    color: var(--crystal-blue);
    z-index: -1;
}

.glitch-subtitle::after {
    animation: glitch6 2.5s infinite;
    color: var(--champagne-gold);
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); clip-path: inset(0 0 0 0); }
    10% { transform: translate(-5px, 5px); clip-path: inset(10% 0 30% 0); }
    20% { transform: translate(5px, -5px); clip-path: inset(30% 0 10% 0); }
    30% { transform: translate(-5px, 0); clip-path: inset(0 0 50% 0); }
    40% { transform: translate(5px, 0); clip-path: inset(50% 0 0 0); }
    50% { transform: translate(0, 5px); clip-path: inset(0 50% 0 0); }
    60% { transform: translate(0, -5px); clip-path: inset(0 0 0 50%); }
    70% { transform: translate(-3px, 3px); clip-path: inset(20% 0 40% 0); }
    80% { transform: translate(3px, -3px); clip-path: inset(40% 0 20% 0); }
    90% { transform: translate(0); clip-path: inset(0 0 0 0); }
}

@keyframes glitch3 {
    0%, 100% { transform: translate(0); opacity: 0.7; }
    15% { transform: translate(6px, -6px); opacity: 0.5; }
    30% { transform: translate(-6px, 6px); opacity: 0.6; }
    45% { transform: translate(4px, 4px); opacity: 0.4; }
    60% { transform: translate(-4px, -4px); opacity: 0.8; }
    75% { transform: translate(2px, -2px); opacity: 0.5; }
    90% { transform: translate(-2px, 2px); opacity: 0.6; }
}

@keyframes glitch4 {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(1px, -1px); }
    50% { transform: translate(-1px, 1px); }
    75% { transform: translate(1px, 1px); }
}

@keyframes glitch5 {
    0%, 100% { transform: translate(0); opacity: 0.7; }
    33% { transform: translate(3px, -3px); opacity: 0.5; }
    66% { transform: translate(-3px, 3px); opacity: 0.6; }
}

@keyframes glitch6 {
    0%, 100% { transform: translate(0); opacity: 0.7; }
    20% { transform: translate(4px, 0); opacity: 0.5; }
    40% { transform: translate(0, 4px); opacity: 0.6; }
    60% { transform: translate(-4px, 0); opacity: 0.5; }
    80% { transform: translate(0, -4px); opacity: 0.6; }
}

.glitch-number {
    position: relative;
    animation: numberGlitch 5s infinite;
}

.glitch-number::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--champagne-gold);
    animation: numberGlitch2 3s infinite;
    opacity: 0.7;
}

@keyframes numberGlitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(1px, -1px); }
    94% { transform: translate(-1px, 1px); }
    96% { transform: translate(1px, 1px); }
    98% { transform: translate(-1px, -1px); }
}

@keyframes numberGlitch2 {
    0%, 100% { transform: translate(0); opacity: 0.7; }
    50% { transform: translate(2px, -2px); opacity: 0.4; }
}

.glitch-btn {
    position: relative;
    overflow: hidden;
}

.glitch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glitchScan 1s linear infinite;
}

.glitch-btn:hover::before {
    animation: glitchScan 0.5s linear infinite;
}

/* --- MAIN CONTENT --- */
.luxury-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Luxury Typography */
.luxury-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--rose-gold) 50%, var(--crystal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    letter-spacing: -2px;
    position: relative;
}

.luxury-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), var(--rose-gold), transparent);
    border-radius: 2px;
}

.luxury-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 40px 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    position: relative;
    padding: 20px 0;
}

.luxury-subtitle::before,
.luxury-subtitle::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--champagne-gold);
    font-size: 1.2rem;
}

.luxury-subtitle::before { left: -40px; }
.luxury-subtitle::after { right: -40px; }

/* Luxury Button */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(183, 110, 121, 0.1));
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold)) 1;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 40px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.luxury-btn:hover::before {
    left: 100%;
}

.luxury-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2),
                0 0 60px rgba(183, 110, 121, 0.1);
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(183, 110, 121, 0.15));
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 100px;
    max-width: 1200px;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px var(--shadow-gray);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1),
                0 10px 30px var(--shadow-gray);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--champagne-gold), transparent);
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* --- SERVICES PREVIEW --- */
.services-preview {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--champagne-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--rose-gold);
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(183, 110, 121, 0.05));
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--champagne-gold), var(--rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- FOOTER --- */
footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: invert(1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--champagne-gold);
    transform: translateX(5px);
}

.footer-column p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--champagne-gold);
}

/* --- LOADING ANIMATION --- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ivory-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--champagne-gold);
    border-right: 3px solid var(--rose-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ivory-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--champagne-gold), var(--rose-gold));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--rose-gold), var(--champagne-gold));
}

/* --- SELECTION COLOR --- */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-dark);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
    .luxury-title {
        font-size: 5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .luxury-title {
        font-size: 4rem;
    }
    
    .luxury-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .luxury-title {
        font-size: 3rem;
    }
    
    .luxury-subtitle {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .luxury-subtitle::before,
    .luxury-subtitle::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .luxury-title {
        font-size: 2.5rem;
    }
    
    .luxury-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
