/**
 * AVE Canada - Professional Landing Page Stylesheet
 * Modern, Clean, Production-Ready Design
 * Color Palette: Red & Blue Gradients with Light Background
 * © 2025 AVE Canada
 */

/* ===================================
   CSS VARIABLES & TOKENS
   =================================== */

:root {
    /* Color Palette - MANDATORY */
    --primary-gradient: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    --secondary-gradient: linear-gradient(135deg, #003366 0%, #004080 100%);
    --bg-primary: #f8f9fa;

    /* Extended Colors */
    --red-start: #FF0000;
    --red-end: #CC0000;
    --blue-start: #003366;
    --blue-end: #004080;

    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-tertiary: #adb5bd;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --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.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
    }
}

/* ===================================
   HEADER - CLEAN & PROFESSIONAL
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.flag-icon {
    width: 40px;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.logo-text strong {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--secondary-gradient);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-menu a:hover {
    color: var(--blue-start);
    background: rgba(0, 51, 102, 0.05);
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 0, 0, 0.08);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.lang-switcher:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-primary {
    background: var(--secondary-gradient);
    color: var(--text-white);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.3);
}

.cta-secondary {
    background: var(--primary-gradient);
    color: var(--text-white);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.cta-large {
    padding: 16px 40px;
    font-size: 17px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
}

.hero-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-white);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-hero {
    background: var(--secondary-gradient);
    color: var(--text-white);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.4);
}

.cta-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 51, 102, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-base);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-badge i {
    font-size: 20px;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process-steps {
    padding: 80px 0;
    background: var(--bg-white);
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 2px solid #e9ecef;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-start);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3),
        0 0 0 4px var(--bg-white);
    transition: var(--transition-base);
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

.step-icon {
    font-size: 48px;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    margin-top: 10px;
    transition: var(--transition-base);
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    font-size: 28px;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.stats-section {
    padding: 80px 0;
    background: var(--secondary-gradient);
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   APPLICATION INFO SECTION
   =================================== */

.application-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.info-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.info-text strong {
    color: var(--blue-start);
    font-weight: 700;
}

/* ===================================
   COUNTRIES SECTION
   =================================== */

.countries-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.search-box {
    max-width: 500px;
    margin: 0 auto 50px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: var(--blue-start);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.countries-grid {
    display: grid;
    gap: 40px;
}

.country-group {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 2px solid #e9ecef;
    box-shadow: var(--shadow-sm);
}

.country-group h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-group h3 i {
    color: var(--red-start);
}

.country-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.country-item {
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-base);
    text-align: center;
}

.country-item:hover {
    background: var(--secondary-gradient);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.important-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.important-notice i {
    color: #856404;
    font-size: 24px;
    flex-shrink: 0;
}

.important-notice p {
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   BENEFITS TABLE SECTION
   =================================== */

.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.benefits-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
}

.benefits-table thead {
    background: var(--secondary-gradient);
    color: var(--text-white);
}

.benefits-table th {
    padding: 20px;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
}

.benefits-table th.highlighted {
    background: var(--primary-gradient);
}

.table-header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.table-header-content .subtitle {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.benefits-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.benefits-table tbody tr:last-child {
    border-bottom: none;
}

.benefits-table tbody tr:hover {
    background: var(--bg-light);
}

.benefits-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-primary);
}

.benefits-table td.highlighted {
    background: rgba(255, 0, 0, 0.03);
    font-weight: 600;
}

.benefits-table td i {
    font-size: 18px;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   FORM SECTION
   =================================== */

.form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.form-preview-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #e9ecef;
}

.form-preview-content {
    text-align: center;
}

.form-preview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--secondary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 40px;
    box-shadow: var(--shadow-md);
}

.form-preview-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.form-preview-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-features-list {
    display: grid;
    gap: 16px;
    text-align: left;
    margin-bottom: 32px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.form-feature i {
    color: #28a745;
    font-size: 18px;
}

.form-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--blue-start);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--secondary-gradient);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-white);
    opacity: 0.85;
    transition: var(--transition-base);
    font-size: 14px;
}

.footer-column ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 32px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
}

.copyright {
    text-align: center;
}

.copyright p {
    font-size: 14px;
    opacity: 0.8;
}


/* ===================================
   MODAL
   =================================== */

/* Modal styles moved to includes/modals.php for better organization
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.close:hover {
    color: var(--red-start);
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}
*/

/*

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .step {
        min-width: 220px;
    }
}

@media (max-width: 768px) {

    /* Header */
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .logo {
        font-size: 20px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    /* Steps */
    .steps-wrapper {
        flex-direction: column;
    }

    .step-arrow {
        display: none;
    }

    .step {
        max-width: 100%;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Countries */
    .country-list {
        grid-template-columns: 1fr;
    }

    /* Benefits Table */
    .benefits-table {
        font-size: 13px;
    }

    .benefits-table th,
    .benefits-table td {
        padding: 12px 10px;
    }

    /* Form */
    .form-preview-card {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    .info-card,
    .form-preview-card {
        padding: 24px 18px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mt-4 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.mb-4 {
    margin-bottom: var(--spacing-xl);
}

.hidden {
    display: none;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth scroll */
@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;
    }
}