/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-gold: #D4AF37;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --accent-gold: #FFD700;
    --luxury-gold: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --premium-glass: rgba(212, 175, 55, 0.1);
    --premium-border: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-primary: 'Dancing Script', cursive;
    --font-secondary: 'Inter', sans-serif;
    --font-luxury: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --header-height: 110px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-premium: 0 20px 60px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.4);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 15px;
    --radius-large: 25px;
    --radius-premium: 30px;
    
    /* Glassmorphism */
    --glass-backdrop: blur(10px);
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--primary-white) 0%, #fafafa 100%);
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23D4AF37" opacity="0.3"/><circle cx="10" cy="10" r="2" fill="%23D4AF37"/></svg>'), auto;
}

/* Premium cursor effects */
.btn, .universe-card, .nav-link, a {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23D4AF37" opacity="0.2"/><circle cx="12" cy="12" r="3" fill="%23D4AF37"/><path d="M12 2L14 8L20 6L16 12L22 14L16 16L20 18L14 16L12 22L10 16L4 18L8 12L2 10L8 8L4 6L10 8Z" fill="%23FFD700" opacity="0.6"/></svg>'), pointer;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-family: var(--font-luxury);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-family: var(--font-luxury);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-gold);
}

h3 { 
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark-gray);
}

h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border: none;
    border-radius: var(--radius-medium);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.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: var(--transition-slow);
}

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

.btn-primary {
    background: var(--luxury-gold);
    color: var(--primary-white);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #FFD700, var(--primary-gold), #B8860B);
}

.btn-secondary {
    background: var(--premium-glass);
    color: var(--primary-gold);
    border: 2px solid var(--premium-border);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: var(--luxury-gold);
    color: var(--primary-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 110px;
    transition: var(--transition-medium);
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--premium-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 110px;
    padding: 0 2rem;
}

.logo {
    position: relative;
    z-index: 1;
    margin-right: 3rem;
}

.logo img {
    height: 100px;
    width: auto;
    transition: var(--transition-medium);
}

.logo a {
    display: block;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-medium);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    display: block;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-slow);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link:hover {
    color: var(--primary-gold);
    background: var(--premium-glass);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-white);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-medium);
    list-style: none;
    pointer-events: none;
}

/* Only show dropdown when hovering specifically on the dropdown item */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ensure other nav items don't trigger dropdown */
.nav-item:not(.dropdown) {
    z-index: 10;
}

.nav-item.dropdown {
    z-index: 5;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--light-gray);
    color: var(--primary-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 3rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    padding-top: calc(var(--header-height) + 2rem);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--primary-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, var(--primary-gold) 30%, #B8860B 70%, #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    animation: titleGlow 3s ease-in-out infinite alternate, gradientShift 4s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)); }
    100% { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8)); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-slow);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* ===== PREMIUM ANIMATIONS ===== */

/* Animation classes */
.animate-ready {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 1s ease-out forwards;
    box-shadow: 0 0 6px var(--primary-gold);
}

@keyframes sparkleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}

/* Premium hover effects */
.premium-hover {
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.premium-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: var(--transition-slow);
    z-index: 1;
}

.premium-hover:hover::before {
    left: 100%;
}

/* Floating animation */
@keyframes premiumFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

.floating {
    animation: premiumFloat 6s ease-in-out infinite;
}

/* Pulse glow effect */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3); }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Premium loading animation */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black), #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.premium-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--primary-white);
}

.loader-logo {
    font-family: var(--font-luxury);
    font-size: 3rem;
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8)); }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-luxury);
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    position: relative;
    animation: sectionTitleGlow 2s ease-in-out infinite alternate;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--luxury-gold);
    border-radius: 2px;
}

@keyframes sectionTitleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #B8941F);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-white);
}

.feature-title {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== OUR UNIVERSES ===== */
.our-universes {
    padding: var(--section-padding);
}

.universes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.universe-card {
    position: relative;
    border-radius: var(--radius-premium);
    overflow: hidden;
    height: 450px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    border: 1px solid var(--premium-border);
}

.universe-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.universe-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.universe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.universe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    opacity: 1;
    transition: var(--transition-medium);
}

.universe-card:hover .universe-overlay {
    background: transparent;
}

.universe-card:hover .universe-image img {
    transform: scale(1.1);
}

.universe-content {
    color: var(--primary-white);
    text-align: center;
    width: 100%;
}

.universe-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 0 0 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

.universe-description {
    margin-bottom: 1.5rem;
    opacity: 1;
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 0 0 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-black), #1a1a1a);
    text-align: center;
}

.cta-title {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.contact-item i {
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item i {
    color: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== UNIVERSE PAGES ===== */
.universe-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 2rem);
}

.universe-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.universe-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.universe-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.universe-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--primary-white);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--primary-gold);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.universe-hero-title {
    font-family: var(--font-luxury);
    color: var(--primary-gold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.universe-hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.universe-description {
    padding: var(--section-padding);
    background: transparent;
}

.universe-desc-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.universe-desc-main {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--primary-black);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.universe-desc-secondary {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
}

.products-gallery {
    padding: var(--section-padding);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.product-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

.universe-features {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.universe-features .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.feature-item .feature-title {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.feature-item .feature-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--light-gray);
    text-align: center;
}

.contact-hero-title {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    padding: var(--section-padding);
}

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

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--medium-gray);
}

.contact-form {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row:last-child {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--primary-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-actions {
    margin-top: 2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info-section {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.contact-info-title {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info .contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), #B8941F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: #B8941F;
}

.contact-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-cta-title {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.contact-benefits i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.map-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    height: 400px;
    background: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-content {
    color: var(--medium-gray);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.map-content h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.map-content p {
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 110px;
        --section-padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .universes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    /* Mobile dropdown menu */
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-white);
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 16px 16px;
        padding: 1rem 0;
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav.active .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin-left: 2rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
    .nav.active .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin-bottom: 2rem;
    }
    
    .logo img {
        height: 80px;
    }
    
    .header {
        height: 90px;
    }
    
    .header-content {
        height: 90px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .universe-hero {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    :root {
        --header-height: 100px;
        --section-padding: 40px 0;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .universes-grid {
        grid-template-columns: 1fr;
    }
    
    .universe-card {
        height: 300px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .universe-hero {
        height: 40vh;
    }
}
