* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black-pure: #000000;
    --black-rich: #0a0a0a;
    --black-soft: #151515;
    --gray-dark: #1f1f1f;
    --gray-medium: #2a2a2a;
    --gray-light: #404040;
    --gray-text: #888888;
    --white-pure: #ffffff;
    --white-soft: #f8f8f8;
    --gold-premium: #c9a961;
    --gold-light: #d4b896;
    --gold-dark: #9d7e3a;
    --champagne: #f7e7ce;
    --neon-purple: #b537f2;
    --neon-pink: #ff006e;
    --neon-blue: #00ffff;
    --electric-blue: #0077ff;
    --hot-magenta: #ff00ff;
    --coral: #ff6b6b;
    --mint: #4ecdc4;
    --violet: #8b5cf6;
    --sunset-orange: #ff9f1c;
    --gradient-vibrant: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ff9f1c 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #ff9f1c 50%, #ffd93d 100%);
    --gradient-cool: linear-gradient(135deg, #4ecdc4 0%, #44a3aa 50%, #667eea 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black-pure);
    color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black-pure);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

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

.loader-content {
    text-align: center;
    position: relative;
}

.logo-trace-container {
    position: relative;
    width: 400px;
    height: 150px;
    margin: 0 auto 40px;
}

.logo-trace {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.trace-path {
    fill: none;
    stroke: var(--gold-premium);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.8));
    animation: tracePath 2s ease-in-out forwards;
}

.trace-path:nth-child(1) {
    animation-delay: 0s;
    stroke-dasharray: 980;
    stroke-dashoffset: 980;
}

.trace-path:nth-child(2) {
    animation-delay: 0.3s;
}

.trace-path:nth-child(3) {
    animation-delay: 0.6s;
}

.trace-path:nth-child(4) {
    animation-delay: 0.9s;
}

.trace-path.accent-line {
    stroke: var(--gold-light);
    stroke-width: 1;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.trace-path:nth-child(5) { animation-delay: 1.2s; }
.trace-path:nth-child(6) { animation-delay: 1.3s; }
.trace-path:nth-child(7) { animation-delay: 1.4s; }
.trace-path:nth-child(8) { animation-delay: 1.5s; }
.trace-path:nth-child(9) { animation-delay: 1.6s; }
.trace-path:nth-child(10) { animation-delay: 1.7s; }

@keyframes tracePath {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.1;
    }
}

.loader-logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 0 40px rgba(201, 169, 97, 0.6));
    animation: logoFadeIn 1.5s ease-in-out 2s forwards;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
        filter: drop-shadow(0 0 40px rgba(201, 169, 97, 0.6)) blur(10px);
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(201, 169, 97, 0.9)) blur(5px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 80px rgba(201, 169, 97, 1)) blur(0px);
    }
}

.loader-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 30px;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(201, 169, 97, 0.6));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-premium);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.loader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    color: var(--gold-premium);
    opacity: 0;
    animation: fadeInText 1s ease-in-out 2.5s forwards;
    margin-bottom: 30px;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 97, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 3s forwards;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent);
    animation: progressFill 2s ease-in-out 3.5s forwards;
    width: 0;
}

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

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(201, 169, 97, 0.6)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 60px rgba(201, 169, 97, 0.9)); }
}

@keyframes loaderFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container-luxury {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.05);
    overflow: visible;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(35px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.nav-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 1px;
    background: var(--gold-premium);
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-brand::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 1px;
    background: var(--gold-premium);
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-brand:hover::before,
.nav-brand:hover::after {
    width: 30px;
    opacity: 1;
}

.brand-line {
    width: 30px;
    height: 1px;
    background: var(--gold-premium);
    opacity: 0.6;
}

.brand-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: var(--gold-premium);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-link {
    color: var(--white-soft);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-smooth);
    padding: 5px 0;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--gold-premium);
    opacity: 0;
    transition: var(--transition-smooth);
}

.nav-link:hover::before {
    opacity: 0.6;
    top: -15px;
}

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

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

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black-pure);
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--gold-premium) 35px, var(--gold-premium) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--gold-premium) 35px, var(--gold-premium) 70px);
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--black-pure) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.luxury-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold-premium);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInDown 1s ease 0.5s forwards;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInScale 1s ease 0.7s forwards;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.3));
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 0.5em;
    color: var(--gold-premium);
    opacity: 0.7;
}

.title-main {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    letter-spacing: 0.15em;
    line-height: 0.9;
    margin: 15px 0;
    background: linear-gradient(135deg, var(--white-pure) 0%, var(--gold-premium) 50%, var(--white-pure) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

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

.divider-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent);
}

.divider-diamond {
    color: var(--gold-premium);
    font-size: 0.8rem;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 0.9rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: var(--gray-text);
    margin-bottom: 50px;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    padding: 18px 45px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--gold-premium);
    color: var(--black-pure);
    border: 1px solid var(--gold-premium);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-dark);
    transition: left 0.4s ease;
}

.cta-primary:hover::before {
    left: 0;
}

.cta-primary span {
    position: relative;
    z-index: 1;
}

.cta-secondary {
    background: transparent;
    color: var(--white-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    border-color: var(--gold-premium);
    color: var(--gold-premium);
}

.scroll-invitation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-premium);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-premium), transparent);
    margin: 15px auto 0;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.philosophy {
    padding: 150px 0;
    background: var(--black-rich);
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: var(--gray-dark);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white-pure);
    position: relative;
    z-index: 1;
}

.title-underline {
    width: 80px;
    height: 1px;
    background: var(--gold-premium);
    margin: 20px auto 0;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-quote {
    text-align: center;
    margin-bottom: 80px;
}

.philosophy-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
}

.philosophy-quote cite {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-text);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-card {
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.3);
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold-premium);
    opacity: 0.5;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white-pure);
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.expertise {
    padding: 150px 0;
    background: var(--black-pure);
}

.expertise-showcase {
    margin-top: 80px;
}

.expertise-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.expertise-item.reversed {
    direction: rtl;
}

.expertise-item.reversed > * {
    direction: ltr;
}

.expertise-image {
    height: 500px;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--gray-dark) 100%);
    position: relative;
    overflow: hidden;
}

.expertise-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
}

.expertise-content {
    padding: 40px;
}

.expertise-category {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-premium);
    opacity: 0.7;
}

.expertise-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white-pure);
    margin: 15px 0 20px;
}

.expertise-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expertise-features span {
    font-size: 0.85rem;
    color: var(--gold-light);
    opacity: 0.8;
}

.gallery {
    padding: 150px 0;
    background: var(--black-rich);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.gallery-item {
    height: 350px;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--gray-dark) 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 0.8;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-premium);
}

.gallery-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white-pure);
    margin-top: 10px;
}

.gallery-testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-testimonial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.gallery-testimonial cite {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-text);
}

.contact {
    padding: 150px 0;
    background: var(--black-pure);
}

.contact-modern {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-premium), var(--white-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-intro p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.1);
    padding: 3rem;
    border-radius: 10px;
}

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

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-soft);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.95rem;
    color: var(--gray-text);
    pointer-events: none;
    transition: all 0.3s ease;
}

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

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-premium), var(--white-soft));
    transition: width 0.4s ease;
}

.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
}

.form-field select option {
    background: var(--black-premium);
    color: var(--white-soft);
}

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

.form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-modern {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    color: var(--gold-premium);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    background: var(--gold-premium);
    color: var(--black-premium);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 97, 0.3);
}

.submit-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--gold-premium);
    color: var(--gold-premium);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-modern .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-premium);
    z-index: -1;
    transition: left 0.3s ease;
}

.submit-modern:hover {
    color: var(--black-premium);
}

.submit-modern:hover .btn-bg {
    left: 0;
}

.submit-modern:hover .btn-icon {
    transform: translateX(5px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white-pure);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.detail-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-premium);
    opacity: 0.7;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--white-soft);
}

.form-elegant {
    background: rgba(26, 26, 26, 0.5);
    padding: 60px;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 0.9rem;
    color: var(--gray-text);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-premium);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-premium);
    transition: width 0.4s ease;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
}

.submit-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.submit-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-premium);
    transition: left 0.4s ease;
    z-index: 0;
}

.submit-luxury:hover::before {
    left: 0;
}

.submit-luxury:hover {
    color: var(--black-pure);
}

.submit-luxury span {
    position: relative;
    z-index: 1;
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-luxury:hover .button-arrow {
    transform: translateX(5px);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    display: block;
}

.footer-luxury {
    padding: 80px 0 40px;
    background: var(--black-rich);
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--gold-premium);
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-text);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

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

.footer-separator {
    color: var(--gray-text);
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold-premium);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-premium);
    color: var(--black-pure);
    transform: translateY(-3px);
}

.social-icon {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 97, 0.05);
}

.footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.6;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold-premium);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-link {
    color: var(--white-soft);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold-premium);
    padding-left: 10px;
}

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

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

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .expertise-item,
    .expertise-item.reversed {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

.logo-circle {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px 0;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo-circle {
    width: 140px;
    height: 140px;
    margin: -40px 0;
}

.nav-logo {
    width: 100%;
    height: auto;
    max-width: 280px;
    filter: drop-shadow(0 0 40px rgba(201, 169, 97, 0.9));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
    padding: 30px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.5) 60%, transparent 80%);
    border-radius: 50%;
}

.navbar.scrolled .nav-logo {
    padding: 25px;
    filter: drop-shadow(0 0 35px rgba(201, 169, 97, 1));
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-premium);
    border-radius: 50%;
    opacity: 0.4;
    animation: ringPulse 3s ease-in-out infinite;
    filter: blur(0.5px);
}

.logo-ring.ring-2 {
    width: 130%;
    height: 130%;
    animation-delay: 0.5s;
    border-width: 2px;
    opacity: 0.25;
    filter: blur(1px);
}

.logo-ring.ring-3 {
    width: 160%;
    height: 160%;
    animation-delay: 1s;
    border-width: 1px;
    opacity: 0.15;
    filter: blur(2px);
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.logo-circle:hover .logo-ring {
    animation-duration: 1.5s;
    border-color: var(--gold-light);
}

.logo-circle:hover .logo-ring.ring-2 {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.5;
    border-color: var(--gold-premium);
}

.logo-circle:hover .logo-ring.ring-3 {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0.4;
    border-color: var(--gold-light);
}

.logo-circle:hover .nav-logo {
    transform: scale(1.15);
    filter: drop-shadow(0 0 60px rgba(201, 169, 97, 1))
            drop-shadow(0 0 100px rgba(201, 169, 97, 0.6));
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.6) 50%, transparent 80%);
}

.neon-text {
    position: relative;
    color: var(--white-pure);
    text-shadow: 
        0 0 10px rgba(201, 169, 97, 0.8),
        0 0 20px rgba(201, 169, 97, 0.6),
        0 0 30px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
}

.neon-text:hover {
    text-shadow: 
        0 0 15px rgba(201, 169, 97, 1),
        0 0 30px rgba(201, 169, 97, 0.8),
        0 0 45px rgba(201, 169, 97, 0.6);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.logo-main {
    position: relative;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 400px;
    opacity: 0;
    animation: heroLogoReveal 1.5s ease-out 0.3s forwards;
}

@keyframes heroLogoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
        filter: blur(10px);
    }
    50% {
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

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

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(201, 169, 97, 0.7));
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    animation: pulsate 3s ease-in-out infinite;
}

@keyframes pulsate {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.glitch {
    position: relative;
    color: var(--white-pure);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(201, 169, 97, 0.8),
        0 0 20px rgba(201, 169, 97, 0.6),
        0 0 30px rgba(201, 169, 97, 0.4);
}

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

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--neon-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(0, 900px, 0, 0); }
    10% { clip: rect(33px, 9999px, 10px, 0); }
    20% { clip: rect(12px, 9999px, 85px, 0); }
    30% { clip: rect(34px, 9999px, 43px, 0); }
    40% { clip: rect(75px, 9999px, 60px, 0); }
    50% { clip: rect(50px, 9999px, 90px, 0); }
    60% { clip: rect(20px, 9999px, 65px, 0); }
    70% { clip: rect(60px, 9999px, 35px, 0); }
    80% { clip: rect(45px, 9999px, 75px, 0); }
    90% { clip: rect(83px, 9999px, 10px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(0, 900px, 0, 0); }
    10% { clip: rect(65px, 9999px, 100px, 0); transform: translate(-2px, 2px); }
    20% { clip: rect(33px, 9999px, 12px, 0); transform: translate(2px, -2px); }
    30% { clip: rect(85px, 9999px, 43px, 0); transform: translate(-2px, 2px); }
    40% { clip: rect(25px, 9999px, 70px, 0); transform: translate(2px, -2px); }
    50% { clip: rect(90px, 9999px, 50px, 0); transform: translate(-2px, 2px); }
    60% { clip: rect(65px, 9999px, 20px, 0); transform: translate(2px, -2px); }
    70% { clip: rect(35px, 9999px, 60px, 0); transform: translate(-2px, 2px); }
    80% { clip: rect(75px, 9999px, 45px, 0); transform: translate(2px, -2px); }
    90% { clip: rect(10px, 9999px, 83px, 0); transform: translate(-2px, 2px); }
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.6em;
    color: var(--gold-premium);
    text-transform: uppercase;
    margin: 80px 0 60px;
    animation: heroTextReveal 2s ease-out 0.5s both;
    text-align: center;
    text-shadow: 
        0 0 30px rgba(201, 169, 97, 0.8),
        0 0 60px rgba(201, 169, 97, 0.6),
        0 0 90px rgba(201, 169, 97, 0.4);
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        letter-spacing: 1em;
        filter: blur(10px);
    }
    50% {
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0.6em;
        filter: blur(0);
    }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0 40px;
    animation: fadeInUp 1s ease 0.7s both;
}

.cta-neon {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    color: var(--gold-premium);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
    transition: 0.2s;
    border: 2px solid var(--gold-premium);
    background: rgba(201, 169, 97, 0.1);
}

.cta-neon:hover {
    color: var(--black-pure);
    background: var(--gold-premium);
    box-shadow: 
        0 0 10px var(--gold-premium),
        0 0 40px var(--gold-premium),
        0 0 80px var(--gold-premium);
    transition-delay: 0.5s;
}

.cta-neon span {
    position: absolute;
    display: block;
}

.cta-neon span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-premium));
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-neon span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-premium));
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes btn-anim2 {
    0% { top: -100%; }
    50%, 100% { top: 100%; }
}

.cta-neon span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--gold-premium));
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim3 {
    0% { right: -100%; }
    50%, 100% { right: 100%; }
}

.cta-neon span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--gold-premium));
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes btn-anim4 {
    0% { bottom: -100%; }
    50%, 100% { bottom: 100%; }
}

.cta-outline {
    padding: 18px 45px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-pure);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    border-color: var(--gold-premium);
    color: var(--gold-premium);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.sound-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    height: 30px;
    margin-top: 40px;
}

.sound-bars span {
    width: 4px;
    background: linear-gradient(to top, var(--gold-premium), var(--neon-blue));
    animation: soundWave 1s ease-in-out infinite;
}

.sound-bars span:nth-child(1) { animation-delay: 0s; height: 20px; }
.sound-bars span:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.sound-bars span:nth-child(3) { animation-delay: 0.2s; height: 30px; }
.sound-bars span:nth-child(4) { animation-delay: 0.3s; height: 25px; }
.sound-bars span:nth-child(5) { animation-delay: 0.4s; height: 20px; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold-premium);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gold-premium);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

.experience-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-premium);
    box-shadow: 
        0 20px 40px rgba(201, 169, 97, 0.2),
        0 0 20px rgba(201, 169, 97, 0.3) inset;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.experience-card:hover .card-glow {
    opacity: 1;
}

.experience-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-premium);
    letter-spacing: 0.1em;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* Upcoming Events Section */
.upcoming-events {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black-pure) 0%, var(--black-rich) 100%);
    position: relative;
    overflow: hidden;
}

.upcoming-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.event-spotlight {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.spotlight-content {
    text-align: center;
    position: relative;
}

.event-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.location-icon {
    font-size: 1.5rem;
}

.location-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--gold-premium);
    opacity: 0.9;
}

.event-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--white-pure);
    margin-bottom: 40px;
    text-shadow: 
        0 0 30px rgba(201, 169, 97, 0.6),
        0 0 60px rgba(201, 169, 97, 0.3);
    animation: fadeInUp 1s ease 0.5s both;
}

.event-date-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.7s both;
}

.event-date-large .month,
.event-date-large .year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    opacity: 0.8;
}

.event-date-large .date {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-premium);
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    padding: 0 20px;
    border-left: 2px solid var(--gold-premium);
    border-right: 2px solid var(--gold-premium);
}

.event-teaser {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-style: italic;
    animation: fadeInUp 1s ease 0.9s both;
}

.event-status {
    animation: fadeInUp 1s ease 1.1s both;
}

.status-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 169, 97, 0.6);
    }
}

.newsletter-section {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    padding: 50px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 2;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.newsletter-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--gold-premium);
    margin-bottom: 15px;
    position: relative;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    position: relative;
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 5px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--white-soft);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

.newsletter-input-group input:focus {
    background: rgba(201, 169, 97, 0.05);
}

.newsletter-btn {
    padding: 15px 30px;
    background: var(--gold-premium);
    border: none;
    color: var(--black-pure);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 150px;
}

.newsletter-btn:hover {
    background: var(--gold-light);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.newsletter-btn:active {
    transform: scale(0.98);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-btn span {
    position: relative;
    z-index: 2;
}

.newsletter-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.newsletter-btn:hover .btn-glow {
    opacity: 1;
}

.newsletter-message {
    margin-top: 20px;
    padding: 10px;
    font-size: 0.9rem;
    display: none;
    position: relative;
}

.newsletter-message.success {
    color: var(--gold-premium);
    display: block;
}

.newsletter-message.error {
    color: #ff4444;
    display: block;
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.neon-glow {
    color: var(--gold-premium);
    text-shadow: 
        0 0 20px rgba(201, 169, 97, 0.8),
        0 0 40px rgba(201, 169, 97, 0.6),
        0 0 60px rgba(201, 169, 97, 0.4);
}

.title-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent);
    margin: 20px auto 60px;
}

.event-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 30px;
    margin: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card.featured {
    border-color: var(--gold-premium);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
}

.event-date {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: center;
    padding: 15px;
    background: var(--gold-premium);
    color: var(--black-pure);
}

.event-date .day {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.event-date .date {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.event-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.event-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white-pure);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.event-details {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.event-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold-premium);
    color: var(--black-pure);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.event-cta:hover {
    background: var(--gold-dark);
    transform: translateX(5px);
}

.vip-card {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-premium) 50%, var(--gold-light) 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: rotateY(0deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    box-shadow: 
        0 20px 60px rgba(201, 169, 97, 0.3),
        0 0 100px rgba(201, 169, 97, 0.1);
}

.vip-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.card-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 55%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

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

.vip-logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.card-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--black-pure);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.card-number {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1em;
}

.perk {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(201, 169, 97, 0.05);
    border-left: 3px solid var(--gold-premium);
    transition: all 0.3s ease;
}

.perk:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(10px);
}

.perk-icon {
    font-size: 2rem;
}

.vip-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold-premium);
    color: var(--black-pure);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.vip-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-cta:hover .cta-glow {
    opacity: 1;
}

.gallery-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(201, 169, 97, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-glow {
    transform: translateX(100%);
}

.gallery-tag {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gold-premium);
    color: var(--black-pure);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gold-premium);
    color: var(--black-pure);
    transform: translateY(-2px);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
}

.booking-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.submit-neon {
    width: 100%;
    padding: 18px;
    background: var(--gold-premium);
    border: none;
    color: var(--black-pure);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-neon:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(201, 169, 97, 0.4),
        0 0 20px rgba(201, 169, 97, 0.6);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.submit-neon:hover .button-glow {
    opacity: 1;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.4));
}

.footer {
    background: var(--black-rich);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    color: var(--gold-premium);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-premium);
    color: var(--black-pure);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    .container-luxury {
        padding: 0 20px;
    }
    
    /* Navigation */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
        position: relative;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.nav-left,
    .nav-menu.nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
        margin: -20px auto;
    }
    
    .nav-brand {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        padding: 80px 20px 40px;
    }
    
    .video-container {
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 20px;
        top: 50%;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        margin-bottom: 30px;
    }
    
    .sound-bars {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .cta-neon,
    .cta-outline {
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /* Section adjustments */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Upcoming Events */
    .event-spotlight {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .event-date-large {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin: 20px 0;
    }
    
    .event-date-large .date {
        font-size: 3rem;
    }
    
    .event-date-large .month,
    .event-date-large .year {
        font-size: 1rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 5px;
        overflow: visible;
    }
    
    .newsletter-input-group input {
        border-bottom: 1px solid rgba(201, 169, 97, 0.3);
        border-radius: 5px 5px 0 0;
        padding: 20px;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 0 0 5px 5px;
        padding: 18px;
        font-size: 1rem;
    }
    
    /* Contact Form */
    .contact {
        padding: 60px 0;
    }
    
    .contact-intro h3 {
        font-size: 1.8rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-form-modern {
        padding: 30px 20px;
        border-radius: 5px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .submit-modern {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    /* Utility adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-elegant {
        padding: 40px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Small Screens */
@media (max-width: 480px) {
    .logo-circle {
        width: 80px;
        height: 80px;
        margin: -15px auto;
    }
    
    .nav-logo {
        width: 50px;
        height: 50px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .cta-neon,
    .cta-outline {
        font-size: 0.8rem;
        padding: 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .event-date-large .date {
        font-size: 2.5rem;
    }
    
    .contact-intro h3 {
        font-size: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
    }
    
    .footer-logo {
        width: 80px;
    }
}