:root {
    --navy: #0B1C2D;
    --gold: #C6A85C;
    --ivory: #F5F2EA;
    --charcoal: #111111;
    --gold-glow: rgba(198, 168, 92, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy);
    color: var(--ivory);
}

h1, h2, h3, h4, h5, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Luxury Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 168, 92, 0.1);
    border-radius: 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    transform: translateY(-12px);
    border-color: rgba(198, 168, 92, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.glass-card-active {
    background: var(--gold);
    color: var(--navy);
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(198, 168, 92, 0.3);
    transform: scale(1.02);
}

.glass-card-deep {
    background: rgba(11, 28, 45, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* Button Stylings */
.btn-primary-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(198, 168, 92, 0);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--gold-glow);
    background: var(--ivory);
}

.btn-primary-small {
    background: var(--gold);
    color: var(--navy);
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    box-shadow: 0 5px 15px var(--gold-glow);
    transform: scale(1.05);
}

.btn-secondary-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 242, 234, 0.05);
    color: var(--ivory);
    border: 1px solid rgba(245, 242, 234, 0.2);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
    background: rgba(245, 242, 234, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* Animations */
@keyframes gold-pulse {
    0% { box-shadow: 0 0 0 0 rgba(198, 168, 92, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(198, 168, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(198, 168, 92, 0); }
}

.btn-glow-anim {
    animation: gold-pulse 2s infinite;
}

.glow-text {
    text-shadow: 0 0 20px rgba(198, 168, 92, 0.5);
}

/* Form Styles */
.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(198, 168, 92, 0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.input-field:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(198, 168, 92, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(to bottom, var(--navy), var(--gold), var(--navy)); 
    border-radius: 5px;
}

/* Glass Hover Utility */
.glass-hover:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 168, 92, 0.3);
}

/* FAQ State */
.faq-item.active {
    border-color: var(--gold) !important;
}

.faq-item.active i {
    transform: rotate(180deg);
}
