/* Ontario CA Private Investigator - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --color-dark: #1E1611;      /* Deep rich warm dark brown/charcoal from logo */
    --color-cream: #FAF4EB;     /* Light cream/sand background */
    --color-gold: #D8AC6A;      /* Accessible gold accent from logo */
    --color-gold-hover: #C09650;
    --color-red: #AF1C22;       /* Premium accent red from logo */
    --color-red-hover: #8F1418;
    --color-light-bg: #FAF8F5;  /* Off-white light background */
    --color-white: #FFFFFF;
    --color-text-dark: #2A211B;  /* Very dark warm brown/charcoal for text */
    --color-text-light: #FAF4EB;
    --color-muted-light: #E8E2D9;
    --color-muted-dark: #5C4F46;  /* Deep warm grey/brown for muted text */
    --font-primary: 'Outfit', sans-serif;
    --nav-height: 80px;

    /* Premium Theme Gradients */
    --gradient-dark: linear-gradient(135deg, #1E1611 0%, #0F0B08 100%);
    --gradient-light: linear-gradient(135deg, #FAF8F5 0%, #F5ECE0 100%);
    --gradient-gold: linear-gradient(135deg, #D8AC6A 0%, #B58E4F 100%);
    --gradient-red: linear-gradient(135deg, #AF1C22 0%, #8F1418 100%);
    --gradient-red-hover: linear-gradient(135deg, #8F1418 0%, #6E0E11 100%);

    /* User Custom Header Gradient Only */
    --gradient-header: linear-gradient(188deg, #000000 0%, #5E3F11 100%);
}

/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--gradient-light);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    left: 16px;
    top: 0;
}

/* Keyboard Focus States */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible, 
select:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* Header & Navigation */
header.main-header {
    background: var(--gradient-header);
    border-bottom: 2px solid var(--color-cream);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.brand-name {
    color: var(--color-cream);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Desktop Navigation Links */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover, .nav-link:focus {
    color: var(--color-white);
    background-color: rgba(253, 236, 208, 0.1);
}

/* Dropdown Menu Styles */
.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-dark);
    border: 1px solid var(--color-cream);
    border-top: none;
    border-radius: 0 0 4px 4px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    list-style: none;
    padding: 10px 0;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    max-height: 400px;
    overflow-y: auto;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item a {
    color: var(--color-cream);
    text-decoration: none;
    display: block;
    padding: 8px 20px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item a:hover, 
.dropdown-item a:focus {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.nav-cta {
    background-color: var(--color-gold);
    color: var(--color-dark) !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover, .nav-cta:focus {
    background-color: var(--color-cream);
    transform: translateY(-1px);
}

/* Mobile Hamburger Menu */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    aria-label: "Toggle Menu";
}

/* Hide mobile overlay menu on desktop */
.mobile-menu-overlay {
    display: none;
}

/* Hero Section */
.hero-section {
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 60px 0;
    position: relative;
    border-bottom: 2px solid var(--color-cream);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 35, 39, 0.85); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-section.thin-banner {
    padding: 30px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-section.thin-banner .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section.thin-banner .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E5E7EB;
}

/* Forms */
.lead-form-container {
    background-color: #2D2E33;
    border: 2px solid var(--color-cream);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.lead-form-container h3 {
    color: var(--color-cream);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(253, 236, 208, 0.2);
    padding-bottom: 10px;
}

.lead-form-container form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    color: var(--color-cream);
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea,
.form-group select {
    padding: 10px 14px;
    border: 1px solid var(--color-cream);
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-btn {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.form-submit-btn:hover, 
.form-submit-btn:focus {
    background-color: var(--color-cream);
}

.form-compliance-text {
    font-size: 0.75rem;
    color: var(--color-muted-light);
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

/* Sections Styling */
section {
    padding: 60px 0;
}

section.bg-dark {
    background: var(--gradient-dark);
    color: var(--color-white);
    border-bottom: 2px solid var(--color-cream);
}

section.bg-light {
    background: var(--gradient-light);
    color: var(--color-text-dark);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.bg-dark .section-title {
    color: var(--color-cream);
}

.bg-light .section-title {
    color: var(--color-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
}

.content-block {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards & Services */
.card {
    background-color: var(--color-white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.bg-dark .card {
    background-color: #2D2E33;
    border-color: rgba(253, 236, 208, 0.2);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.bg-dark .card-title {
    color: var(--color-cream);
}

.card-content {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-muted-dark);
}

.bg-dark .card-content {
    color: #E5E7EB;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}

.card-link:hover, .card-link:focus {
    text-decoration: underline;
}

/* Process Section */
.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    min-width: 50px;
}

.step-details h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-details p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-gold);
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 16px 0;
}

.bg-dark .faq-item {
    border-color: rgba(253, 236, 208, 0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-gold);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    padding: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Call To Action Banner */
.cta-banner {
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: 80px 20px;
    border-top: 2px solid var(--color-cream);
    border-bottom: 2px solid var(--color-cream);
}

.cta-banner h2 {
    font-size: 2.2rem;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.btn-large {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-large:hover, .btn-large:focus {
    background-color: var(--color-cream);
    transform: translateY(-2px);
}

/* Image styling */
.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.img-block {
    display: block;
    margin: 20px auto;
}

/* Map placeholder */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 2px solid var(--color-gold);
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Sticky Footer Call-bar for Mobile */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-gold);
    color: var(--color-dark);
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
}

.mobile-call-link {
    display: block;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 700;
    padding: 15px;
    font-size: 1.1rem;
}

/* Footer styling */
footer.main-footer {
    background: var(--gradient-dark);
    color: var(--color-white);
    border-top: 2px solid var(--color-cream);
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-cream);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 236, 208, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-muted-light);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: var(--color-muted-light);
    text-decoration: none;
}

.footer-legal-links a:hover, .footer-legal-links a:focus {
    color: var(--color-cream);
}

/* Layout modifications for Service Area/Jurisdiction text block */
.jurisdiction-block {
    background-color: var(--color-dark);
    border: 2px solid var(--color-cream);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.jurisdiction-title {
    color: var(--color-cream);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 50px; /* Space for mobile sticky footer call bar */
    }
    
    .menu-btn {
        display: block;
    }
    
    .desktop-nav {
        display: none; /* Hide standard desktop links */
    }
    
    /* Mobile nav dropdown overlay styles */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height) - 50px);
        background-color: var(--color-dark);
        border-top: 1px solid rgba(253, 236, 208, 0.2);
        z-index: 1000;
        overflow-y: auto;
        padding: 30px 20px;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-nav-links a {
        color: var(--color-cream);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        display: block;
        padding: 10px 0;
    }
    
    .mobile-dropdown-toggle::after {
        content: ' ▾';
    }
    
    .mobile-dropdown-menu {
        display: none;
        list-style: none;
        padding-left: 20px;
        margin-top: 10px;
        border-left: 2px solid var(--color-gold);
    }
    
    .mobile-dropdown-menu.active {
        display: block;
    }
    
    .mobile-dropdown-menu li {
        margin-bottom: 8px;
    }
    
    .mobile-dropdown-menu a {
        font-size: 1rem;
        font-weight: 400;
        color: #E5E7EB;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .hero-section.thin-banner .hero-container {
        grid-template-columns: 1fr;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mobile-call-bar {
        display: block;
    }
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Custom Premium Styling Overrides */
.section-title::after {
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-red) 100%);
    height: 4px;
    width: 80px;
    border-radius: 2px;
}

.card {
    border-radius: 12px;
    border: 1px solid var(--color-muted-light);
    box-shadow: 0 10px 30px rgba(30, 22, 17, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30, 22, 17, 0.08);
    border-color: rgba(216, 172, 106, 0.3);
}

.card:hover::before {
    transform: scaleY(1);
}

.btn-large, .form-submit-btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, #C09650 100%);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(216, 172, 106, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}

.btn-large:hover, .btn-large:focus, .form-submit-btn:hover, .form-submit-btn:focus {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-hover) 100%);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(175, 28, 34, 0.4);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-gold) 0%, #C09650 100%);
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(216, 172, 106, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-cta:hover, .nav-cta:focus {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-hover) 100%) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(175, 28, 34, 0.3);
}

/* Background Section with Image and Dark Readable Overlay */
.bg-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white) !important;
    z-index: 1;
}

.bg-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 22, 17, 0.94) 0%, rgba(15, 11, 8, 0.88) 100%);
    z-index: -1;
}

.bg-image-section .section-title {
    color: var(--color-cream) !important;
}

.bg-image-section p, .bg-image-section li, .bg-image-section h3, .bg-image-section h4 {
    color: #FAF4EB !important;
}

.bg-image-section .card {
    background-color: rgba(30, 22, 17, 0.6) !important;
    border-color: rgba(253, 236, 208, 0.15) !important;
    backdrop-filter: blur(8px);
}

.bg-image-section .card-title {
    color: var(--color-cream) !important;
}

.bg-image-section .card-content {
    color: #E8E2D9 !important;
}

/* Homepage Content Box Styling */
.content-box {
    border: 1px solid var(--color-muted-light);
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(30, 22, 17, 0.02);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.content-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 22, 17, 0.06);
}

/* Subtle gold bar indicator on box hover */
.content-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.content-box:hover::after {
    width: 100%;
}

.bg-dark .content-box {
    border: 1px solid rgba(253, 236, 208, 0.12);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: none;
}

.bg-dark .content-box:hover {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.bg-dark .content-box::after {
    background: var(--gradient-red);
}

/* Header link visibility rules */
.desktop-nav .nav-link {
    color: #FAF4EB !important;
}

.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active {
    color: var(--color-gold) !important;
}

/* Testimonial Card Readability Fix */
.testimonial-card h4, .testimonial-card .testimonial-author {
    color: var(--color-text-dark) !important;
}

.testimonial-card p, .testimonial-card .testimonial-text {
    color: var(--color-text-dark) !important;
}

/* Premium Scroll Reveal Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
