/* 
 * Nelson Law Montana - Improved Stylesheet with Design System
 * Consolidated with Enhanced Consistency & Responsiveness
 */

/* ========================================
   DESIGN TOKENS - Foundation
   ======================================== */

:root {
    /* Colors */
    --primary-color: #6d3410;
    --primary-hover: #8b4513;
    --dark-bg: #6c423a;
    --light-bg: #666564;
    --light-text: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #444444;
    --border-color: rgba(0, 0, 0, 0.1);
    --bg-light: #f8f9fa;
    --bg-lighter: #ffffff;
    
    /* Spacing Scale - 8px base */  
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 5rem;     /* 80px */
    
    /* Section Padding */
    --section-padding: 5rem 0;           /* 80px desktop */
    --section-padding-mobile: 2.5rem 0;  /* 40px mobile */
    
    /* Typography Scale */
    --font-xs: 0.875rem;   /* 14px */
    --font-sm: 0.9375rem;  /* 15px */
    --font-base: 1rem;     /* 16px */
    --font-md: 1.0625rem;  /* 17px */
    --font-lg: 1.125rem;   /* 18px */
    --font-xl: 1.25rem;    /* 20px */
    --font-2xl: 1.5rem;    /* 24px */
    --font-3xl: 2rem;      /* 32px */
    --font-4xl: 2.5rem;    /* 40px */
    --font-5xl: 3rem;      /* 48px */
    --font-6xl: 3.5rem;    /* 56px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.4;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 3px;
    --radius-base: 5px;
    --radius-lg: 8px;
    --radius-full: 200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   BASE STYLES
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'avenirlight', Arial, sans-serif;
    color: var(--text-primary);
    font-weight: var(--font-normal);
    font-size: var(--font-base);
    line-height: var(--leading-normal);
    font-style: normal;
}

.container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'avenirlight', Arial, sans-serif;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
    font-weight: var(--font-light);
}

h1 { font-size: var(--font-6xl); }
h2 { font-size: var(--font-4xl); }
h3 { font-size: var(--font-3xl); }
h4 { font-size: var(--font-xl); }

p {
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */

.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    width: 80%;
    justify-content: space-between;
}

.navbar-brand img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

.navbar-brand, .nav-link {
    color: white !important;
    font-size: var(--font-base);
    letter-spacing: 1px;
}

.nav-link {
    padding: var(--space-xs) var(--space-sm) !important;
    transition: color var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: #f5deb3 !important; /* Warm beige - very readable */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: var(--space-xs) 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

/* ========================================
   HERO SECTION - HOMEPAGE
   ======================================== */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../img/banner_01.jpg') center/cover;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 var(--space-sm);
}

.hero-content {
    max-width: 100%;
    padding: 0 var(--space-sm);
}

.hero-content h1 {
    font-size: var(--font-6xl);
    font-weight: var(--font-light);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    line-height: var(--leading-tight);
}

.hero-content h2 {
    font-size: var(--font-2xl);
    font-weight: var(--font-normal);
    margin-bottom: var(--space-lg);
    letter-spacing: 3px;
    line-height: var(--leading-snug);
}

.hero-content p {
    font-size: var(--font-lg);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: var(--leading-relaxed);
}

.hero-subtitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.subtitle-part {
    white-space: nowrap;
}

.subtitle-separator {
    margin: 0 var(--space-xs);
}

/* ========================================
   BUTTONS - Unified System
   ======================================== */

.btn-custom,
.btn-service,
.btn-practice {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border: solid 1px var(--primary-color);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    letter-spacing: 1px;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: var(--font-normal);
}

.btn-custom {
    border-radius: var(--radius-full);
}

.btn-service,
.btn-practice {
    border-radius: var(--radius-base);
}

.btn-custom:hover,
.btn-service:hover,
.btn-practice:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: var(--font-3xl);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

/* ========================================
   PAGE HEADER - SUBPAGES
   ======================================== */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../img/banner_01.jpg') center/cover;
    padding: 120px var(--space-sm) 80px;
    text-align: center;
    color: white;
    margin-top: 72px; /* Standard navbar height */
}

.page-header h1 {
    font-size: var(--font-5xl);
    font-weight: var(--font-light);
    letter-spacing: 3px;
    margin-bottom: 0;
    line-height: var(--leading-tight);
}

/* ========================================
   SECTION STYLES - Unified
   ======================================== */

.service-section,
.attorney-section,
.firm-content-section,
.contact-section {
    padding: var(--section-padding);
}

.attorney-section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-title {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
    line-height: var(--leading-tight);
    color: var(--text-primary);
}

.service-detail {
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
}

/* Images */
.service-img,
.firm-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-md);
}

.service-img {
    height: 350px;
}

.firm-image {
    height: 500px;
}

/* FIXED: Attorney images - fill container and show heads properly */
.attorney-image {
    width: 100%;
    height: 600px; /* Taller height to accommodate portrait orientation */
    object-fit: cover; /* Fills the container */
    object-position: center top; /* Anchors to top - shows heads, crops bottom if needed */
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-md);
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */

.testimonial-section {
    background-color: var(--light-bg);
    color: var(--light-text);
    padding: var(--section-padding);
    text-align: center;
}

.testimonial-text {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
    padding: 0 var(--space-sm);
}

.testimonial-author {
    font-size: var(--font-xl);
    color: var(--light-text);
    padding: 0 var(--space-sm);
}

.testimonial-section img {
    max-width: 100%;
    height: auto;
    margin: var(--space-sm);
    transition: all var(--transition-base);
    width: 400px;
}

/* ========================================
   ATTORNEY PROFILES
   ======================================== */

.attorney-content,
.firm-content {
    font-size: var(--font-md);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.attorney-name {
    font-size: var(--font-4xl);
    font-weight: var(--font-normal);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
    color: var(--primary-color);
    line-height: var(--leading-tight);
}

/* ========================================
   CASE RESULTS PAGE
   ======================================== */

.case-results-section {
    padding: var(--section-padding);
}

.intro-text {
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
    color: var(--text-secondary);
    padding: 0 var(--space-sm);
}

.year-section {
    margin-bottom: var(--space-3xl);
}

.year-header {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-3xl);
    font-weight: var(--font-normal);
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-base);
}

.case-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-item {
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-sm);
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
    border-radius: var(--radius-sm);
    position: relative;
}

.case-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.case-link {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-md);
    flex-wrap: wrap;
}

.case-link:hover {
    color: var(--primary-color);
}

.case-name {
    flex-grow: 1;
    font-weight: var(--font-semibold);
    word-break: break-word;
}

.case-type {
    color: #666;
    font-size: var(--font-sm);
    margin-left: var(--space-sm);
    font-style: italic;
    white-space: nowrap;
}

.case-icon {
    color: var(--primary-color);
    font-size: var(--font-xl);
    margin-left: var(--space-sm);
    flex-shrink: 0;
}

.stats-section {
    background-color: var(--light-bg);
    color: var(--light-text);
    padding: var(--space-2xl) var(--space-sm);
    text-align: center;
}

.stat-box {
    padding: var(--space-lg) var(--space-sm);
}

.stat-number {
    font-size: var(--font-6xl);
    font-weight: var(--font-light);
    color: white;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-lg);
    color: #ccc;
    letter-spacing: 1px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-box {
    background-color: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: var(--radius-base);
    height: 100%;
}

.contact-item {
    margin-bottom: var(--space-lg);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: var(--font-2xl);
    margin-right: var(--space-sm);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: var(--font-xl);
    font-weight: var(--font-normal);
    margin-bottom: var(--space-xs);
    color: var(--primary-color);
}

.contact-item p {
    font-size: var(--font-md);
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-base);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hours-box {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-base);
    text-align: center;
    margin-top: var(--space-lg);
}

.hours-box h4 {
    font-size: var(--font-2xl);
    font-weight: var(--font-normal);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.hours-box p {
    font-size: var(--font-lg);
    margin-bottom: 0;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    background-color: var(--light-bg);
    color: var(--light-text);
    padding: 60px var(--space-sm) 30px;
}

.footer-logo {
    width: 100px;
    height: auto;
}

.footer-logo-col {
    text-align: left;
}

.footer-menu-col {
    text-align: center;
}



.footer-nav {
    text-align: center;
    margin-bottom: 0;
}

.footer-nav a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 var(--space-sm);
    font-size: var(--font-md);
    display: inline-block;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-contact-col .contact-info {
    text-align: right;
}

.footer-contact-col .contact-info p {
    margin-bottom: 0.25rem;
    font-size: var(--font-sm);
}

.copyright {
    font-size: var(--font-xs);
}

/* ========================================
   RESPONSIVE - MOBILE FIRST APPROACH
   ======================================== */

/* Large Tablets and Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    :root {
        --font-6xl: 3rem;
        --font-4xl: 2.25rem;
        --font-3xl: 1.875rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
     :root {
        --section-padding: var(--section-padding-mobile);
        --font-6xl: 2rem;
        --font-5xl: 2rem;
        --font-4xl: 1.75rem;
        --font-3xl: 1.5rem;
        --font-2xl: 1.25rem;
    }
    
    /* Unified centering for mobile */
    .page-header,
    .section-title,
    .attorney-name,
    .attorney-content,
    .service-section p,
    .service-detail,
    .firm-content p,
    .firm-content-section p,
    .contact-section h3 {
        text-align: center !important;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        width: 120px;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: var(--space-md);
        margin-top: var(--space-md);
        border-radius: var(--radius-base);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 100px var(--space-sm) 60px;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .subtitle-separator {
        display: none;
    }
    
    .page-header {
        padding: 100px var(--space-sm) 60px;
        margin-top: 56px;
    }
    
    .service-img {
        height: 250px;
    }
    
  .attorney-image {
        margin-bottom: var(--space-lg);
        height: 500px; /* Adjusted for tablets */
    }
    
    .firm-image {
        height: 300px;
    }
    
     /* Stack image above text */
    .firm-content-section .row {
        flex-direction: column;
        text-align: center;
    }

    /* Ensure image is on top */
    .firm-content-section .col-lg-6:has(.firm-image) {
        order: -1;
    }

    /* Add gap between image and text */
    .firm-content-section .firm-image {
        margin-bottom: var(--space-lg);
        height: auto; /* Keeps proportional image size */
        max-height: 400px;
    }

    /* Center text and button */
    .firm-content-section .firm-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Centered buttons on mobile */
    .btn-custom,
    .btn-service,
    .btn-practice {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        margin-bottom: var(--space-lg); /* Add this line - creates gap below buttons */
    }
    
    .contact-info-box {
        margin-bottom: var(--space-lg);
    }
    
    .contact-item {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Attorney profiles & Firm profile - show image first on mobile */
    .attorney-section .row,
    .firm-content-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .attorney-section .col-lg-6:has(.attorney-image),
    .firm-content-section .col-lg-6:has(.firm-image) {
        order: -1; /* Move image column to top */
    }
    
    .map-container {
        height: 350px;
    }
    
    .testimonial-section img {
        width: 250px;
    }
    
    .case-link {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 40px;
    }
    
    .case-type {
        margin-left: 0;
        margin-top: var(--space-xs);
    }
    
    .case-icon {
        position: absolute;
        right: var(--space-lg);
        top: var(--space-sm);
        margin-left: 0;
    }
    
    .footer-logo-col {
        text-align: center !important;
        margin-bottom: 1.5rem;
    }
    

    
    .footer-logo {
        display: block;
        margin: 0 auto;
    }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --font-6xl: 2rem;
        --font-5xl: 2rem;
        --font-4xl: 1.75rem;
        --font-3xl: 1.5rem;
        --font-2xl: 1.25rem;
    }
    
    /* Unified centering for mobile */
    .page-header,
    .section-title,
    .attorney-name,
    .attorney-content,
    .service-section p,
    .service-detail,
    .firm-content p,
    .firm-content-section p,
    .contact-section h3 {
        text-align: center !important;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        width: 120px;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: var(--space-md);
        margin-top: var(--space-md);
        border-radius: var(--radius-base);
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 100px var(--space-sm) 60px;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .subtitle-separator {
        display: none;
    }
    
    .page-header {
        padding: 100px var(--space-sm) 60px;
        margin-top: 56px;
    }
    
    .service-img {
        height: 250px;
    }
    
     .attorney-image {
        height: 450px; /* Mobile height */
    }
    
    .firm-image {
        height: 300px;
    }
    
    .btn-custom,
    .btn-service,
    .btn-practice {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        margin-bottom: var(--space-lg); /* Add this line - creates gap below buttons */
    }
    
    .contact-info-box {
        margin-bottom: var(--space-lg);
    }
    
    .contact-item {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Attorney profiles & Firm profile - show image first on mobile */
    .attorney-section .row,
    .firm-content-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .attorney-section .col-lg-6:has(.attorney-image),
    .firm-content-section .col-lg-6:has(.firm-image) {
        order: -1; /* Move image column to top */
    }
    
    .map-container {
        height: 350px;
    }
    
    .testimonial-section img {
        width: 250px;
    }
    
    .case-link {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 40px;
    }
    
    .case-type {
        margin-left: 0;
        margin-top: var(--space-xs);
    }
    
    .case-icon {
        position: absolute;
        right: var(--space-lg);
        top: var(--space-sm);
        margin-left: 0;
    }
    

    /* footer responsivness */ 
    
     .footer-logo-col,
    .footer-menu-col,
    .footer-contact-col {
        text-align: center !important;
        margin-bottom: 2rem;
    }

    
     .footer-contact-col .contact-info {
        text-align: center !important;
    }   
    
     .footer-section .row {
        text-align: center;
    }
    
    .footer-section .col-md-7,
    .footer-section .col-md-5 {
        text-align: center !important;
    }
    
    .footer-nav {
        text-align: center !important;
         /*margin-bottom: 1.5rem;*/
    }
    
     .footer-nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        text-align: center !important;
        /*margin-top: 0 !important;*/
    }
    
    /*.footer-section .contact-info img {*/
    /*    margin: 0 auto 15px;*/
    /*}*/

}

/* Mobile Phones (481px - 575px) */
@media (max-width: 575px) {
    :root {
        --font-6xl: 1.75rem;
        --font-5xl: 1.75rem;
        --font-4xl: 1.5rem;
        --font-3xl: 1.4rem;
    }
    
    .service-img {
        height: 200px;
    }
    
   .attorney-image {
        height: 400px;
    }
    
    .firm-image {
        height: 250px;
    }
    
    .testimonial-section img {
        width: 200px;
    }
}

/* Extra Small Phones (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --font-6xl: 1.5rem;
        --font-5xl: 1.5rem;
        --font-4xl: 1.4rem;
        --font-3xl: 1.3rem;
    }
    
    .btn-custom,
    .btn-service,
    .btn-practice {
        padding: 10px 20px;
        font-size: var(--font-xs);
        white-space: normal;
        line-height: var(--leading-snug);
    }
    
    .service-img {
        height: 180px;
    }
    
   .attorney-image {
        height: 350px;
    }
    
    .firm-image {
        height: 200px;
    }
    
    .testimonial-section img {
        width: 150px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px var(--space-sm) 40px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .btn-custom,
    .btn-service,
    .btn-practice {
        display: none !important;
    }
    
    .page-header {
        margin-top: 0;
        padding: 40px 0 20px;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}