/* Base Styles */
body {
    background-color: #000000;
    color: #e5e5e5;
}

/* Premium Borders */
.luxury-border {
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.luxury-border-light {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gold-border {
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Glassmorphism */
.glass-panel {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Typography Effects */
.text-glow {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* WhatsApp Bubbles */
.whatsapp-bubble-user {
    background-color: #005c4b;
    border-radius: 12px 12px 0 12px;
}

.whatsapp-bubble-ai {
    background-color: #202c33;
    border-radius: 12px 12px 12px 0;
}

.wa-bubble-user {
    background-color: #005c4b;
    border-radius: 8px 8px 0 8px;
}

.wa-bubble-ai {
    background-color: #202c33;
    border-radius: 8px 8px 8px 0;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

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

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Video Container Glow */
.video-glow {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.05);
}

/* Particles Container */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Luxury Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-link {
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::after,
.mobile-menu-link.active::after {
    width: 100%;
}

.mobile-menu-close {
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

/* Hamburger Animation */
.hamburger-line {
    transition: all 0.3s ease;
}

.hamburger-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Video Animation */
@keyframes borderFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-border-flow {
    background-size: 200% 200%;
    animation: borderFlow 6s ease infinite;
}