/* ========================================
   PREMIUM HOMEPAGE REDESIGN
   Modern, Clean, Conversion-Focused
   Blue & White Color System
======================================== */

/* === COLOR SYSTEM === */
:root {
    /* Primary Blues */
    --blue-primary: #0066FF;
    --blue-dark: #0052CC;
    --blue-light: #3385FF;
    --blue-pale: #E6F0FF;
    --blue-gradient: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Functional */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === HERO SECTION === */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 120px 0 80px;
}

.hero-content-premium {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--white);
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--gray-200);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--blue-light);
    font-size: 1.25rem;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === STICKY SEARCH BAR === */
.search-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    margin-top: -60px;
    transition: var(--transition);
}

.search-sticky.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-xl);
}

.search-form-premium {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 8px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    min-width: 0;
}

.search-field-location {
    flex: 1.5;
}

.search-field i {
    color: var(--blue-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.search-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    cursor: pointer;
    outline: none;
    min-width: 0;
}

.search-select option {
    padding: 12px;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.search-btn-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

/* === SECTION COMMON === */
.section-properties,
.section-trust,
.section-testimonials {
    padding: var(--section-padding) 0;
}

.section-properties {
    background: var(--gray-50);
}

.section-trust {
    background: var(--white);
}

.section-testimonials {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--blue-pale);
    color: var(--blue-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* === PROPERTY CARDS === */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.property-card-premium {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.property-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card-premium:hover .property-image {
    transform: scale(1.1);
}

.property-type-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.property-type-badge i {
    color: var(--blue-primary);
    font-size: 1.25rem;
}

.property-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.property-card-premium:hover .property-hover-overlay {
    opacity: 1;
}

.view-details-btn {
    padding: 12px 28px;
    background: var(--white);
    color: var(--blue-primary);
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(10px);
    transition: var(--transition);
}

.property-card-premium:hover .view-details-btn {
    transform: translateY(0);
}

.property-content {
    padding: 24px;
}

.property-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-primary);
    margin-bottom: 12px;
}

.property-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.property-location i {
    color: var(--blue-primary);
}

.property-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-specs {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
}

.spec-item i {
    color: var(--blue-primary);
    font-size: 1.125rem;
}

.section-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--blue-gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    color: var(--white);
}

/* === TRUST CARDS === */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.trust-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--blue-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.trust-desc {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.trust-stat {
    display: inline-block;
    padding: 8px 20px;
    background: var(--blue-pale);
    color: var(--blue-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
}

/* === TESTIMONIALS === */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 1.125rem;
}

.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* === SPLIT CTA === */
.section-cta-split {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.cta-card {
    padding: 56px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-buy {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
}

.cta-sell {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 2px solid var(--gray-700);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--blue-primary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.cta-sell .cta-button {
    background: var(--blue-gradient);
    color: var(--white);
}

.cta-button:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-container {
        padding: 80px 0 60px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-badge {
        justify-content: center;
    }
    
    .search-sticky {
        margin-top: 0;
    }
    
    .search-form-premium {
        padding: 16px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-field {
        width: 100%;
        padding: 12px 16px;
        background: var(--gray-50);
        border-radius: var(--radius-md);
    }
    
    .search-divider {
        display: none;
    }
    
    .search-btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-grid,
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* === MICRO-INTERACTIONS === */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Button Glow Effect */
.btn-hero-primary,
.search-btn-premium,
.btn-view-all {
    position: relative;
}

.btn-hero-primary::before,
.search-btn-premium::before,
.btn-view-all::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--blue-gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(8px);
    transition: var(--transition);
    z-index: -1;
}

.btn-hero-primary:hover::before,
.search-btn-premium:hover::before,
.btn-view-all:hover::before {
    opacity: 0.7;
}


/* === MOBILE STICKY BOTTOM ACTIONS === */
.mobile-sticky-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-actions.visible {
    transform: translateY(0);
}

.mobile-action-buttons {
    display: flex;
    gap: 12px;
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.mobile-action-primary {
    background: var(--blue-gradient);
    color: var(--white);
}

.mobile-action-secondary {
    background: var(--gray-100);
    color: var(--gray-800);
}

@media (max-width: 768px) {
    .mobile-sticky-actions {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden */
    body {
        padding-bottom: 80px;
    }
}

/* === TOAST NOTIFICATIONS === */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.toast-content i {
    font-size: 1.25rem;
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-success i {
    color: var(--success);
}

.toast-error {
    border-left: 4px solid var(--error);
}

.toast-error i {
    color: var(--error);
}

.toast-warning {
    border-left: 4px solid var(--warning);
}

.toast-warning i {
    color: var(--warning);
}

.toast-info {
    border-left: 4px solid var(--blue-primary);
}

.toast-info i {
    color: var(--blue-primary);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--gray-700);
}

/* === LOADING SPINNER === */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === FIELD ERROR === */
.field-error {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

input.error,
select.error,
textarea.error {
    border-color: var(--error) !important;
}

/* === PAGE LOAD ANIMATION === */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.page-loaded {
    opacity: 1;
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* === PRINT STYLES === */
@media print {
    .hero-premium,
    .search-sticky,
    .mobile-sticky-actions,
    .toast-container,
    nav,
    footer {
        display: none !important;
    }
    
    .property-card-premium {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
    :root {
        --blue-primary: #0052CC;
        --gray-500: #475569;
    }
    
    .property-card-premium,
    .trust-card,
    .testimonial-item {
        border: 2px solid var(--gray-300);
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* === DARK MODE SUPPORT (Optional) === */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --white: #0F172A;
        --gray-50: #1E293B;
        --gray-900: #F8FAFC;
    }
    */
}
