:root {
    --primary: #030a11; /* Very Deep Navy */
    --accent: #c29d5b;  /* Elegant Gold */
    --slate: #1e293b;
    --bg-light: #f3efe6; /* Warm Cream */
}
body { font-family: 'Heebo', 'Assistant', sans-serif; scroll-behavior: smooth; background-color: var(--bg-light); }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

.hero-gradient {
    background: linear-gradient(rgba(10, 15, 28, 0.75), rgba(10, 15, 28, 0.85)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
}

.page-content { display: none; }
.page-content.active { display: block; animation: pageFade 0.6s ease-out; }
@keyframes pageFade { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

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

.dropdown-menu.active { display: block !important; animation: dropdownFade 0.2s ease; }
@keyframes dropdownFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.service-card { 
    border-bottom: 3px solid transparent; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    background: white;
}
.service-card:hover { 
    border-bottom-color: var(--accent); 
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.gold-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    transition: all 0.3s ease;
    border-radius: 2px !important;
}
.gold-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(194, 157, 91, 0.2);
}

.law-table th { background-color: var(--primary); color: white; text-align: right; padding: 16px; }
.law-table td { border: 1px solid #e2e8f0; padding: 16px; text-align: right; }

@media (min-width: 1024px) {
    .step-connector::after {
        content: '';
        position: absolute;
        top: 3rem;
        right: 100%;
        width: calc(100% - 6rem);
        height: 1px;
        background: var(--accent);
        opacity: 0.3;
        z-index: 0;
    }
    .step-connector-dark::after {
        content: '';
        position: absolute;
        top: 3rem;
        right: 100%;
        width: calc(100% - 6rem);
        height: 1px;
        background: var(--accent);
        opacity: 0.15;
        z-index: 0;
    }
}

/* Utility for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Accessibility features */
body.large-font { font-size: 1.2rem; }
body.large-font h1 { font-size: 4rem; }
body.large-font h2 { font-size: 3rem; }
body.large-font h3 { font-size: 2rem; }

body.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
    --primary: #000;
    --accent: #ff0;
    --bg-light: #000;
}
body.high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}
body.high-contrast .hero-gradient {
    background: none !important;
    background-color: #000 !important;
}
