/* ===============================================
   PREMIUM PROFESSIONAL THEME - CREXTIO STYLE
   Modern, Animated, Dynamic Website Theme
   =============================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Primary Colors - Warm Professional Palette */
    --primary-cream: #F5F1E8;
    --primary-beige: #E8DFC8;
    --primary-gold: #F4CE7D;
    --primary-yellow: #F9D956;
    --primary-orange: #FF9F66;
    
    /* Accent Colors */
    --accent-dark: #2B2A29;
    --accent-gray: #686868;
    --accent-light-gray: #9E9E9E;
    --accent-white: #FFFFFF;
    
    /* Gradient Overlays */
    --gradient-cream: linear-gradient(135deg, #F5F1E8 0%, #E8DFC8 100%);
    --gradient-gold: linear-gradient(135deg, #F9D956 0%, #F4CE7D 100%);
    --gradient-warm: linear-gradient(135deg, #FF9F66 0%, #F9D956 100%);
    --gradient-dark: linear-gradient(135deg, #3D3C3A 0%, #2B2A29 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
}

/* ========== GLOBAL RESETS & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, sans-serif;
    background: var(--primary-cream);
    color: var(--accent-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========== ANIMATED BACKGROUND ========== */
.premium-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cream);
    z-index: -1;
    overflow: hidden;
}

.premium-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 217, 86, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.premium-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* ========== MODERN NAVIGATION ========== */
.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.premium-navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand:hover {
    color: var(--primary-orange);
    transform: scale(1.05);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.navbar-menu a {
    color: var(--accent-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width var(--transition-normal);
}

.navbar-menu a:hover {
    color: var(--accent-dark);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a.active {
    color: var(--accent-dark);
    font-weight: 600;
}

.navbar-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ========== PREMIUM BUTTONS ========== */
.btn-premium {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: 0 4px 16px rgba(249, 217, 86, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 217, 86, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--accent-dark);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--accent-dark);
    border: 2px solid var(--accent-dark);
}

.btn-outline:hover {
    background: var(--accent-dark);
    color: white;
}

.btn-social {
    background: white;
    color: var(--accent-dark);
    border: 1px solid #E0E0E0;
    padding: 12px 24px;
    justify-content: center;
}

.btn-social:hover {
    background: #F9F9F9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== PREMIUM CARDS ========== */
.premium-card {
    background: white;
    border-radius: 24px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

/* ========== SPLIT LAYOUT (Login/Signup Style) ========== */
.split-layout {
    min-height: 100vh;
    display: flex;
    position: relative;
}

.split-left {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    z-index: 2;
}

.split-right {
    flex: 1.2;
    background: var(--gradient-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

/* Animated decorative elements */
.split-right::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 217, 86, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* ========== FORM ELEMENTS ========== */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-gray);
    margin-bottom: 8px;
    transition: all var(--transition-fast);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: #F9F9F9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    color: var(--accent-dark);
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    background: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 159, 102, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--accent-light-gray);
}

/* Select/Dropdown styling */
.form-input[type="select"],
select.form-input {
    width: 100%;
    padding: 16px 20px;
    background: #F9F9F9 url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23666%22 stroke-width=%222%22%3e%3cpolyline points=%226 9 12 15 18 9%22%3e%3c/polyline%3e%3c/svg%3e') no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    color: var(--accent-dark);
    transition: all var(--transition-normal);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-input:focus {
    outline: none;
    background-color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 159, 102, 0.1);
    transform: translateY(-2px);
}

select.form-input option {
    padding: 12px;
    color: var(--accent-dark);
    background: white;
    border: none;
    font-size: 15px;
}

select.form-input option:checked {
    background: linear-gradient(#FF9F66, #FF9F66);
    background-color: #FF9F66;
    color: white;
}

/* Password reveal button */
.password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-light-gray);
    cursor: pointer;
    padding: 8px;
    transition: all var(--transition-fast);
}

.password-toggle-btn:hover {
    color: var(--accent-dark);
}

/* ========== IMAGE SHOWCASE ========== */
.image-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    animation: showcaseEntry 1s ease-out;
}

@keyframes showcaseEntry {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.showcase-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.showcase-main:hover img {
    transform: scale(1.05);
}

/* Floating cards overlay */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card-1 {
    top: 10%;
    right: -40px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 1s;
}

.floating-card-3 {
    top: 40%;
    right: -50px;
    animation-delay: 2s;
}

/* ========== HERO SECTION ========== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--accent-dark);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    font-size: 20px;
    color: var(--accent-gray);
    margin-bottom: 32px;
    line-height: 1.8;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== FEATURES GRID ========== */
.features-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--accent-gray);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-warm);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--accent-gray);
    line-height: 1.6;
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
    background: var(--accent-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 159, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .premium-background::before, .premium-background::after,
    .floating-widget, .floating-card, .floating-card-1, .floating-card-2, .floating-card-3,
    .showcase-main, .hero-text, .feature-card, .feature-icon {
        animation: none !important;
        transition: none !important;
    }
}
.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--primary-cream);
    border-radius: 24px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 16px;
    color: var(--accent-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--accent-light-gray);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-warm);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ========== FOOTER ========== */
.premium-footer {
    background: var(--accent-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== ALERTS & NOTIFICATIONS ========== */
.alert-premium {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: alertSlide 0.4s ease-out;
}

@keyframes alertSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

.alert-warning {
    background: #FEF3C7;
    color: #78350F;
    border-left: 4px solid #F59E0B;
}

.alert-info {
    background: #DBEAFE;
    color: #1E40AF;
    border-left: 4px solid #3B82F6;
}

/* ========== LOADING STATES ========== */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-text h1 {
        font-size: 52px;
    }
}

@media (max-width: 968px) {
    .split-layout {
        flex-direction: column;
    }
    
    .split-left,
    .split-right {
        flex: 1;
        min-height: 50vh;
        padding: 40px 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid,
    .stats-grid,
    .testimonials-grid {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .split-left {
        padding: 40px 20px;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
}

/* ========== UTILITY CLASSES ========== */
.container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}
