
:root {
    --primary: #002D5B; /* Navy Blue */
    --accent: #C9A24D;  /* Soft Gold */
    --text-dark: #1A1A1A;
    --text-muted: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
}
body { font-family: 'Inter', sans-serif; overflow-x: hidden; background-color: var(--white); color: var(--text-dark); }
.font-serif { font-family: 'Playfair Display', serif; }
.text-gold { color: var(--accent); }
.bg-navy { background-color: var(--primary); }
.text-navy { color: var(--primary); }

.btn-premium {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-weight: 600;
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
    background: var(--primary);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.logo-hover {
    transition: all 0.3s ease;
}
.logo-hover:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Dropdown Styles */
.services-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.group:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    border-left: 0 solid var(--accent);
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
    transform: translateX(0);
}

.footer-navy {
    background-color: #001a35; /* Deep navy */
}
.luxury-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.02);
}
.luxury-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.hero-3d {
    perspective: 1000px;
}
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }

/* Cosmos Hero Styles */
#canvas-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.text-glow { text-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
.carousel-container { perspective: 1000px; }
.carousel-card { 
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.carousel-card.active { transform: translateZ(50px) scale(1.1); opacity: 1; z-index: 10; }
.carousel-card.next, .carousel-card.prev { opacity: 0.5; filter: blur(2px); }
.carousel-card.next { transform: translateX(40%) translateZ(-100px) rotateY(-15deg); }
.carousel-card.prev { transform: translateX(-40%) translateZ(-100px) rotateY(15deg); }
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: #f8fafc;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.pricing-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-content {
    max-height: 200px;
}
.faq-item.active i {
    transform: rotate(45deg);
}