@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 80px;
    scroll-margin-top: 80px;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    font-family: 'Inter', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--black);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::before,
html::before {
    display: none !important;
}

body > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.main-content {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4E4BC;
    --black: #1a1a1a;
    --white: #ffffff;
    --cream: #F8F6F0;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 50%, var(--gold) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes luxuryFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.luxury-fade-up {
    opacity: 0;
    animation: luxuryFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    will-change: opacity, transform, filter;
}


.luxury-delay-1 { animation-delay: 0.1s; }
.luxury-delay-2 { animation-delay: 0.25s; }
.luxury-delay-3 { animation-delay: 0.4s; }
.luxury-delay-4 { animation-delay: 0.6s; }
.luxury-delay-5 { animation-delay: 0.8s; }
.luxury-delay-6 { animation-delay: 1s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--shadow-gold);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in-up {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-float {
    animation: floatAnimation 3s ease-in-out infinite;
}

.shimmer-effect {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--light-gold) 50%,
        var(--gold) 100%
    );
    background-size: 200% 100%;
    animation: goldShimmer 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

body, p, span, a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}


.language-landing {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.language-container {
    text-align: center;
    color: var(--white);
}

.vp-logo {
    margin-bottom: 60px;
}

.shield {
    width: 120px;
    height: 140px;
    background: var(--gradient-gold);
    border-radius: 60px 60px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px var(--shadow-heavy), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: pulseGold 3s ease-in-out infinite;
}

.shield::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotateGlow 4s linear infinite;
    opacity: 0.7;
}

.shield::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--gradient-gold);
    border-radius: 58px 58px 18px 18px;
    z-index: 1;
}

.vp-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vp-logo h1 {
    font-size: 48px;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.1;
}

.language-options {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.language-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-width: 150px;
    overflow: hidden;
}

.language-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.language-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px var(--shadow-gold);
}

.language-card:hover::before {
    left: 100%;
}

.language-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.language-card.coming-soon:hover {
    transform: none;
}

.flag {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.language-card span {
    display: block;
    font-weight: 500;
    font-size: 16px;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}


.luxury-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    box-shadow: none;
}

.luxury-navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.luxury-logo-image {
    height: 50px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
}


@media (max-width: 768px) {
    .luxury-logo-image {
        height: 40px;
        max-width: 200px;
        image-rendering: optimizeQuality;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (max-width: 480px) {
    .luxury-logo-image {
        height: 35px;
        max-width: 180px;
        image-rendering: optimizeQuality;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.luxury-logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    transform: scale(1.02);
}

.luxury-shield {
    position: relative;
    width: 45px;
    height: 50px;
    background: linear-gradient(145deg, var(--gold), #f4d03f);
    border-radius: 22px 22px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.vp-letters {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
}

.shield-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 25px 25px 10px 10px;
    animation: pulse 3s ease-in-out infinite;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}


.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #f4d03f);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--black);
}

.shield-small {
    width: 40px;
    height: 45px;
    background: linear-gradient(145deg, var(--gold), var(--dark-gold));
    border-radius: 20px 20px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-small span {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-link:hover::after {
    width: 100%;
}


.language-selector {
    position: relative;
    z-index: 1001;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.current-language:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

.current-language img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.current-language i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.language-option:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.language-option.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.language-option img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.language-option .lang-name {
    flex: 1;
    font-weight: 500;
}

.language-option .lang-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.language-option.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.language-option.coming-soon:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: none;
}

.language-selector.active .current-language i {
    transform: rotate(180deg);
}


.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.login-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.login-btn i {
    font-size: 16px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.lang-btn:hover {
    background: var(--gray-light);
}

.lang-btn img {
    width: 30px;
    height: 20px;
    border-radius: 4px;
}


.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
}

.hero-scene {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: all 0.5s ease;
    overflow: hidden;
}

.hero-scene::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.hero-scene:hover::before {
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(0,0,0,0.4));
}

.hero-scene:hover {
    transform: scale(1.02);
}

.scene-1 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1593111774240-d529f12cf4bb?w=800') center/cover;
}

.scene-2 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=800') center/cover;
}

.scene-3 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800') center/cover;
}

.scene-4 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=800') center/cover;
}

.scene-overlay {
    color: var(--white);
}

.scene-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.scene-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero-text h1.shimmer {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        var(--gold) 25%,
        #ffffff 50%,
        var(--gold) 75%,
        #ffffff 100%
    );
    background-size: 200% 100%;
    animation: goldShimmer 3s ease-in-out infinite, fadeInUp 1.2s ease-out 0.5s both;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--gold);
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out 1.1s both;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--black);
}

.section-header h3 {
    font-size: 24px;
    color: var(--gold);
    font-weight: 400;
}


.concept-section {
    padding: 120px 0;
    background: var(--cream);
}

.concept-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-text .lead {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--gold);
}

.concept-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.concept-text .highlight {
    font-style: italic;
    font-weight: 500;
    color: var(--gray-dark);
}

.luxury-badge {
    background: linear-gradient(145deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.luxury-badge i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.luxury-badge span {
    font-size: 18px;
    font-weight: 600;
}


.universe-section {
    padding: 120px 0;
}

.universe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.universe-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.universe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.universe-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.universe-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow), 0 0 30px var(--shadow-gold);
}

.universe-card:hover::before {
    transform: scaleX(1);
}

.universe-card:hover::after {
    opacity: 1;
}

.universe-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    animation: floatAnimation 2s ease-in-out infinite;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-gold);
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--gradient-gold);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-icon:hover::before {
    opacity: 0.3;
    animation: pulseGold 2s ease-in-out infinite;
}

.card-icon i {
    font-size: 32px;
    color: var(--black);
}

.universe-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.universe-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.universe-footer {
    text-align: center;
}

.custom-text {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.custom-highlight {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
}


.origin-section {
    padding: 120px 0;
    background: var(--gray-light);
}

.origin-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.origin-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.origin-text h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 30px;
}

.origin-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.excellence-points {
    margin: 40px 0;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.point i {
    color: var(--gold);
    font-size: 18px;
}

.point span {
    font-size: 16px;
    font-weight: 500;
}

.commitment {
    font-style: italic;
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 20px !important;
}


.gallery-section {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-header h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.gallery-header h3 {
    color: var(--gold);
    font-size: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    height: 250px;
    background: var(--gray-dark);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item.large {
    grid-column: span 2;
    height: 350px;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--shadow-gold);
    border-color: var(--gold);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.8));
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: var(--white);
}

.gallery-footer {
    text-align: center;
}

.luxury-quote {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.time-quote {
    font-size: 20px;
    font-style: italic;
    opacity: 0.9;
}


.contact-section {
    padding: 120px 0;
    background: var(--cream);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-header h3 {
    font-size: 24px;
    color: #b8941f;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow), 0 0 25px var(--shadow-gold);
    animation: pulseGold 2s ease-in-out infinite;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover::before {
    left: 100%;
}

.paypal-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.paypal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.paypal-section h4 {
    color: var(--black);
    margin-bottom: 25px;
    font-size: 24px;
}


.payment-loading {
    padding: 30px;
    text-align: center;
    color: var(--gold);
    font-size: 18px;
    font-weight: 500;
}

.payment-success {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.payment-success i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 15px;
    display: block;
    animation: pulseGold 2s ease-in-out infinite;
}

.payment-success h4 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 24px;
}

.payment-success p {
    color: #388E3C;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.payment-success small {
    color: #666;
    font-size: 12px;
    opacity: 0.8;
}

.payment-error {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ffeaea, #fff0f0);
    border-radius: 15px;
    border: 2px solid #f44336;
}

.payment-error i {
    font-size: 48px;
    color: #f44336;
    margin-bottom: 15px;
    display: block;
}

.payment-error p {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 16px;
}

.payment-cancelled {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fff3e0, #fafafa);
    border-radius: 15px;
    border: 2px solid #ff9800;
}

.payment-cancelled p {
    color: #f57c00;
    margin-bottom: 20px;
    font-size: 16px;
}

.retry-btn {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-gold);
}


.luxury-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream);
}

.modal-header h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 28px;
}

.modal-header p {
    color: var(--gold);
    font-size: 16px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold);
}


.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
    margin-right: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    margin: 20px auto;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4CAF50;
    }
}


.luxury-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.luxury-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
}

.luxury-footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.luxury-footer-logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    transform: scale(1.02);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.luxury-shield-footer {
    width: 70px;
    height: 80px;
    background: linear-gradient(145deg, var(--gold), var(--dark-gold));
    border-radius: 35px 35px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.1);
    position: relative;
}

.luxury-shield-footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(145deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 38px 38px 15px 15px;
    z-index: -1;
}

.luxury-shield-footer span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.luxury-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.luxury-footer-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 0;
    font-style: italic;
}

.group-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.footer-categories {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-categories > span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-categories > span:hover {
    color: var(--gold);
}

.footer-divider {
    color: var(--gold);
    font-weight: 300;
    opacity: 0.6;
}

.footer-contact {
    text-align: right;
}

.luxury-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.luxury-footer-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    color: var(--white);
}

.luxury-footer-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.luxury-footer-link:hover i {
    transform: scale(1.1);
}

.footer-gold-divider {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin: 0;
}


@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-categories {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 60px 0 30px;
    }
    
    .luxury-footer .container {
        padding: 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 15px;
    }
    
    .luxury-shield-footer {
        width: 60px;
        height: 70px;
    }
    
    .luxury-shield-footer span {
        font-size: 28px;
    }
    
    .luxury-footer-title {
        font-size: 28px;
    }
    
    .footer-categories {
        flex-direction: column;
        gap: 15px;
    }
}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shield-footer {
    width: 60px;
    height: 70px;
    background: linear-gradient(145deg, var(--gold), var(--dark-gold));
    border-radius: 30px 30px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-footer span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.brand-text h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.brand-text p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 3px;
}

.group-text {
    font-size: 12px !important;
    opacity: 0.6 !important;
}

.footer-categories {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.footer-categories span {
    margin: 0 10px;
}

.email-link {
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    font-weight: 500;
}

.email-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}


@media (max-width: 1024px) {
    .hero-text h1 { font-size: 56px; }
    .section-header h2 { font-size: 40px; }
    .concept-content, .origin-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .modal-content { padding: 30px; }
    .luxury-form { padding: 30px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 1fr); }
    .hero-text h1 { font-size: 42px; letter-spacing: 3px; }
    .hero-text h2 { font-size: 22px; }
    .language-options { gap: 20px; }
    .language-card { min-width: 120px; padding: 20px 15px; }
    .contact-actions { flex-direction: column; align-items: center; }
    .gallery-item.large { grid-column: span 1; }
    .universe-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-text h1 { font-size: 32px; }
    .section-header h2 { font-size: 32px; }
    .vp-logo h1 { font-size: 36px; }
    .shield { width: 100px; height: 120px; }
    .vp-text { font-size: 40px; }
    
    .hero-banner {
        padding-top: 140px;
        min-height: 100vh;
    }
    
    .banner-content {
        padding-top: 120px;
        gap: 30px;
        height: auto;
        min-height: auto;
    }
    
    .banner-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .title-line-3 {
        font-size: 32px;
    }
}





.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 1;
    background: var(--black);
}

.banner-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}


.banner-slide picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: block;
}


.banner-slide picture {
    background: none !important;
    display: block !important;
}

.banner-slide picture img {
    background: none !important;
    display: block !important;
}


.banner-slide picture {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.banner-slide picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}


.banner-image-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.banner-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}


@media (min-width: 769px) {
    .banner-image-pc {
        display: block;
    }
    .banner-image-mobile {
        display: none;
    }
}


@media (max-width: 768px) {
    .banner-image-pc {
        display: none !important;
    }
    .banner-image-mobile {
        display: block !important;
    }
}


@supports (-webkit-touch-callout: none) {
    .banner-image-mobile {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
}


@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    .banner-image-mobile {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .banner-image-pc {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}


@supports (-webkit-transform: translateZ(0)) {
    .banner-slide {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .banner-image-mobile {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.banner-image-safari {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    transition: all 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100vh;
    min-height: 700px;
}

.banner-text {
    color: white;
    z-index: 4;
    position: relative;
}

.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px !important;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.title-line-1 {
    animation-delay: 0.2s;
    color: rgba(255, 255, 255, 0.9);
}

.title-line-2 {
    animation-delay: 0.4s;
    color: white;
    font-weight: 700;
}

.title-line-3 {
    animation-delay: 0.6s;
    color: var(--gold);
    font-style: italic;
    font-size: 64px;
}

.banner-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.banner-actions {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.banner-authority {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(212, 175, 55, 0.9);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
    font-style: italic;
}

.banner-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    color: var(--black);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, var(--gold) 100%);
}

.banner-cta i {
    transition: transform 0.3s ease;
}

.banner-cta:hover i {
    transform: translateX(5px);
}

.banner-info {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    color: white;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 1.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.category-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.info-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s ease;
}

.indicator.active::before {
    border-color: rgba(212, 175, 55, 0.3);
}

.banner-navigation {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    transform: scale(1.1);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 1200px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .banner-title {
        font-size: 56px;
    }
    
    .title-line-3 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 700px;
        padding-top: 120px;
    }
    
    .banner-content {
        padding: 0 20px;
        gap: 40px;
        text-align: center;
        padding-top: 100px;
        justify-content: center;
        align-items: center;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .title-line-3 {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-actions {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    .banner-info {
        padding: 30px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .banner-navigation {
        bottom: 20px;
        right: 20px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 24px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .banner-cta {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .banner-content {
        padding: 0 15px;
        gap: 20px;
        padding-top: 80px;
    }
    
    .banner-text {
        max-width: 100%;
        overflow: hidden;
    }
    
    .banner-actions {
        gap: 10px;
    }
    
    .banner-authority {
        font-size: 12px;
        line-height: 1.3;
    }
}






@media (max-width: 480px) {
    .hero-banner {
        overflow: hidden;
        width: 100%;
    }
    
    .banner-content {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .banner-text {
        overflow: hidden;
        width: 100%;
    }
    
    .banner-title {
        overflow: hidden;
        width: 100%;
        word-break: break-word;
        hyphens: auto;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        overflow: hidden;
        width: 100%;
        word-break: break-word;
        hyphens: auto;
    }
    
    .banner-subtitle {
        overflow: hidden;
        width: 100%;
        word-break: break-word;
        hyphens: auto;
    }
    
    .banner-actions {
        overflow: hidden;
        width: 100%;
    }
    
    .banner-cta {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    
    .heritage-narrative {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        overflow: hidden;
        width: 100%;
    }
    
    .narrative-content {
        gap: 30px;
        overflow: hidden;
        width: 100%;
    }
    
    .story-lead {
        font-size: 24px;
        line-height: 1.3;
        word-break: break-word;
        hyphens: auto;
        overflow: hidden;
        width: 100%;
    }
    
    .story-description {
        font-size: 16px;
        line-height: 1.6;
        word-break: break-word;
        hyphens: auto;
        overflow: hidden;
        width: 100%;
    }
    
    .heritage-principles {
        gap: 15px;
    }
    
    .principle-item {
        padding: 15px;
        gap: 15px;
        overflow: hidden;
        width: 100%;
    }
    
    .principle-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .principle-icon i {
        font-size: 16px;
    }
    
    .principle-text {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
        hyphens: auto;
        overflow: hidden;
        width: 100%;
    }
    
    .heritage-commitment {
        gap: 20px;
        flex-direction: column;
    }
    
    .commitment-text {
        font-size: 16px;
        line-height: 1.4;
        word-break: break-word;
        hyphens: auto;
        overflow: hidden;
        width: 100%;
        text-align: center;
    }
    
    .heritage-presence {
        overflow: hidden;
        width: 100%;
    }
    
    .global-map {
        overflow: hidden;
        width: 100%;
    }
    
    .map-container {
        overflow: hidden;
        width: 100%;
    }
    
    .presence-location {
        padding: 10px;
        gap: 10px;
        overflow: hidden;
        width: 100%;
    }
    
    .location-name {
        font-size: 14px;
        word-break: break-word;
        hyphens: auto;
    }
    
    .location-role {
        font-size: 12px;
        word-break: break-word;
        hyphens: auto;
    }
}


.luxury-collection,
.luxury-heritage,
.luxury-gallery {
    margin-top: 0;
    position: relative;
    z-index: 2;
}


.concept-description p {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.concept-description p:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
}


.luxury-collection,
.luxury-heritage,
.luxury-gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.luxury-essence::before,
.luxury-collection::before,
.luxury-heritage::before,
.luxury-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.essence-container,
.collection-container,
.heritage-container,
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}


.essence-header,
.collection-header,
.heritage-header,
.gallery-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
}

.section-title-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-philosophy {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(212, 175, 55, 0.9);
    font-style: italic;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}


.essence-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.essence-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.essence-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.essence-description p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.essence-highlight {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding: 30px 0;
}

.highlight-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.highlight-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    font-style: italic;
    white-space: nowrap;
}

.luxury-emblem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emblem-outer {
    position: relative;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.emblem-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.emblem-inner i {
    font-size: 48px;
    color: var(--gold);
}

.emblem-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emblem-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}


.collection-showcase {
    margin-top: 60px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.collection-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s ease;
}

.collection-item:hover::before {
    left: 100%;
}

.collection-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

.item-visual {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.item-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
}

.item-icon i {
    font-size: 32px;
    color: var(--gold);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .icon-glow {
    opacity: 1;
}

.item-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .item-background {
    opacity: 1;
}

.item-content {
    text-align: center;
}

.item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.item-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.item-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-tag {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-footer {
    margin-top: 60px;
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.footer-text {
    text-align: center;
}

.custom-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.custom-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
}


.heritage-narrative {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.narrative-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.heritage-story {
    margin-bottom: 10px;
}

.story-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.story-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.heritage-principles {
    display: grid;
    gap: 25px;
    margin-bottom: 10px;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.principle-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(10px);
}

.principle-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
}

.principle-icon i {
    font-size: 20px;
    color: var(--gold);
}

.principle-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.3px;
}

.heritage-commitment {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
}

.commitment-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.commitment-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    font-style: italic;
    white-space: nowrap;
}

.heritage-presence {
    position: relative;
}

.global-map {
    position: relative;
    min-height: 480px;
    height: auto;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.map-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: flex-start;
    padding-top: 20px;
}

.presence-location {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.presence-location:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.presence-location.coming-soon {
    opacity: 0.7;
}

.location-marker {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-right: auto;
}

.location-role {
    font-size: 14px;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
}


.gallery-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.gallery-showcase {
    margin: 80px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    grid-auto-rows: minmax(250px, auto);
}

.gallery-piece {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    height: 250px;
}

.gallery-piece.featured,
.gallery-piece[data-category="wellness"],
.gallery-piece[data-category="nautical"] {
    grid-row: span 2;
    height: 520px;
}

.gallery-piece:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

.piece-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    transition: all 0.4s ease;
}



.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-piece:hover .image-overlay {
    opacity: 1;
}

.piece-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-piece:hover .piece-glow {
    opacity: 1;
}

.piece-info {
    padding: 25px;
    position: relative;
}

.piece-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.piece-description {
    font-size: 14px;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    margin-bottom: 15px;
}

.piece-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 15px;
}

.gallery-philosophy {
    margin-top: 80px;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.philosophy-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.philosophy-text {
    text-align: center;
}

.luxury-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.time-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
}


@media (max-width: 1200px) {
    .essence-main,
    .heritage-narrative {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-number {
        font-size: 80px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .luxury-essence,
    .luxury-collection,
    .luxury-heritage,
    .luxury-gallery {
        padding: 80px 0;
    }
    
    .essence-container,
    .collection-container,
    .heritage-container,
    .gallery-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .essence-lead {
        font-size: 28px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-piece,
    .gallery-piece.featured,
    .gallery-piece[data-category="wellness"],
    .gallery-piece[data-category="nautical"] {
        height: 280px;
        grid-row: span 1;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .section-number {
        font-size: 80px;
        top: -20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-philosophy {
        font-size: 18px;
    }
    
    .gallery-subtitle {
        font-size: 16px;
    }
    
    .essence-highlight,
    .heritage-commitment,
    .philosophy-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight-text,
    .commitment-text {
        white-space: normal;
    }
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 20px;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 40px;
}

.mobile-logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.mobile-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo a:hover {
    transform: scale(1.05);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.mobile-menu-close:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-link:hover {
    color: var(--gold);
    padding-left: 20px;
    transform: translateX(10px);
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link:active {
    transform: translateX(10px) scale(0.98);
}

.mobile-menu-footer {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    font-style: italic;
}

.mobile-company {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.mobile-language-section {
    padding: 30px 0;
    margin: 20px 0;
}

.mobile-language-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-language-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mobile-language-option::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-language-option:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateX(5px);
}

.mobile-language-option:hover::before {
    left: 100%;
}

.mobile-language-option.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.mobile-language-option.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.mobile-language-option.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.mobile-language-option img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-lang-name {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.mobile-language-option:hover .mobile-lang-name {
    color: var(--gold);
}

.mobile-language-option.active .mobile-lang-name {
    color: var(--gold);
    font-weight: 600;
}

.mobile-coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: flex-end;
    }
    
    
    .language-selector {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        order: 1;
    }
    
    
    .nav-container {
        padding: 0 20px;
    }
    
    .luxury-navbar {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .mobile-nav-link {
        font-size: 24px;
        padding: 18px 0;
    }
    
    .mobile-menu-header {
        padding: 15px 0;
        margin-bottom: 30px;
    }
    
    .mobile-logo-image {
        height: 35px;
    }
    
    .mobile-tagline {
        font-size: 16px;
    }
    
    .mobile-company {
        font-size: 11px;
    }
}

/* ========================================
   RESPONSIVE ENHANCEMENTS - CRITICAL FIXES
   ======================================== */


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.language-selector {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.current-language img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
}

.current-language .lang-code {
    color: white;
    font-weight: 600;
    font-size: 14px;
    min-width: 24px;
}

.current-language i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-selector.active .current-language i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 8px;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 12px 12px;
}

.language-option:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(4px);
}

.language-option.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

.language-option.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.language-option.coming-soon:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: none;
}

.language-option img {
    width: 28px;
    height: 21px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-option .lang-name {
    flex: 1;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.language-option .lang-code {
    font-weight: 600;
    color: #666;
    font-size: 12px;
    min-width: 24px;
    text-align: center;
}

.language-option.active .lang-name,
.language-option.active .lang-code {
    color: #d4af37;
}

.coming-soon-text {
    position: absolute;
    right: 16px;
    font-size: 11px;
    color: #999;
    font-style: italic;
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }
    
    .banner-title {
        font-size: 24px;
        line-height: 1.1;
    }
    
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .banner-subtitle {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .banner-content {
        padding: 0 10px;
        gap: 15px;
        padding-top: 60px;
    }
    
    .banner-cta {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .banner-authority {
        font-size: 11px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .luxury-logo-image {
        height: 30px;
        max-width: 150px;
    }
    
    
    .heritage-narrative {
        gap: 20px;
        margin-top: 30px;
    }
    
    .narrative-content {
        gap: 20px;
    }
    
    .story-lead {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .story-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .principle-item {
        padding: 12px;
        gap: 12px;
    }
    
    .principle-icon {
        width: 35px;
        height: 35px;
    }
    
    .principle-icon i {
        font-size: 14px;
    }
    
    .principle-text {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .commitment-text {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .location-name {
        font-size: 13px;
    }
    
    .location-role {
        font-size: 11px;
    }
}


.universe-grid,
.collection-grid,
.gallery-masonry {
    display: grid;
    gap: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .universe-grid,
    .collection-grid,
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .universe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-grid,
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .universe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-grid,
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .collection-grid,
    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
}


.section-title {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: clamp(15px, 3vw, 30px);
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    line-height: 1.5;
    margin-bottom: clamp(20px, 4vw, 40px);
}

.card-title {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: clamp(8px, 2vw, 15px);
}

.card-description {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
}


.btn-primary,
.btn-secondary,
.banner-cta {
    padding: clamp(12px, 2vw, 18px) clamp(20px, 4vw, 36px);
    font-size: clamp(14px, 2.5vw, 16px);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .banner-cta {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}


.essence-section,
.universe-section,
.heritage-section,
.gallery-section,
.contact-section {
    padding: clamp(60px, 10vw, 120px) 0;
}


.luxury-navbar {
    padding: clamp(10px, 2vw, 20px) 0;
    transition: all 0.3s ease;
}

.nav-logo img {
    height: clamp(28px, 5vw, 45px);
    transition: height 0.3s ease;
}

.nav-links {
    gap: clamp(15px, 3vw, 35px);
}

.nav-link {
    font-size: clamp(14px, 2.5vw, 16px);
    padding: clamp(8px, 1.5vw, 12px) 0;
}


@media (max-width: 768px) {
    .banner-title {
        font-size: 48px !important;
        margin-bottom: 20px;
        line-height: 1.0;
    }
    
    .title-line-3 {
        font-size: 42px;
    }
    
    .banner-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
        align-items: flex-start;
    }
    
    .banner-info {
        position: relative;
        z-index: 2;
        margin-top: 40px;
        padding: 25px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-text {
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 36px !important;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .title-line-3 {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 5px;
        line-height: 1.5;
    }
    
    .banner-content {
        padding: 0 15px;
        min-height: 600px;
        gap: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .banner-text {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .banner-info {
        order: 2;
        margin-top: 20px;
        padding: 20px;
        max-width: 350px;
        width: 100%;
    }
    
    .banner-cta {
        padding: 15px 28px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .banner-authority {
        font-size: 12px;
        margin-top: 15px;
    }
}


@media (max-width: 480px) {
    .gallery-container {
        padding: 0 15px;
    }
    
    .gallery-masonry {
        gap: 15px;
    }
    
    .gallery-piece,
    .gallery-piece.featured,
    .gallery-piece[data-category="wellness"],
    .gallery-piece[data-category="nautical"] {
        height: 250px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-philosophy {
        font-size: 16px;
    }
    
    .gallery-subtitle {
        font-size: 14px;
    }
    
    .luxury-quote {
        font-size: 22px;
    }
    
    .time-quote {
        font-size: 16px;
    }
    
    .philosophy-content {
        gap: 20px;
    }
    
    .philosophy-line {
        max-width: 60px;
    }
    
    
    .message-notification {
        left: 10px;
        right: 10px;
        width: auto;
    }
    
    .paypal-alternative .contact-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}


.message-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideInRight 0.3s ease;
}

.message-notification.message-success {
    border-left: 4px solid #28a745;
}

.message-notification.message-error {
    border-left: 4px solid #dc3545;
}

.message-notification.message-info {
    border-left: 4px solid var(--gold);
}

.message-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.message-content i {
    font-size: 20px;
}

.message-success .message-content i {
    color: #28a745;
}

.message-error .message-content i {
    color: #dc3545;
}

.message-info .message-content i {
    color: var(--gold);
}

.message-content span {
    flex: 1;
    font-size: 16px;
    color: var(--black);
}

.message-close {
    background: none;
    border: none;
    color: var(--gray-dark);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.message-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--black);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.paypal-alternative {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.alternative-message h3 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.alternative-message p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--white);
    text-decoration: none;
}

.contact-btn i {
    font-size: 16px;
}

.alternative-note {
    font-size: 14px;
    color: var(--gray-dark);
    opacity: 0.8;
    font-style: italic;
    margin-top: 20px;
}


.language-option[onclick*="index.html"] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.language-option[onclick*="index.html"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--white);
    text-decoration: none;
}

.language-option[onclick*="index.html"] i {
    font-size: 18px;
    color: var(--white);
}

.language-option[onclick*="index.html"] .lang-name {
    color: var(--white);
    font-weight: 600;
}


.mobile-language-option[onclick*="index.html"] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin: 10px 0;
}

.mobile-language-option[onclick*="index.html"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--white);
    text-decoration: none;
}

.mobile-language-option[onclick*="index.html"] i {
    font-size: 18px;
    color: var(--white);
}

.mobile-language-option[onclick*="index.html"] .mobile-lang-name {
    color: var(--white);
    font-weight: 600;
}
