:root {
    --primary: #0082f3;
    --secondary: #4facfe;
    --bg-dark: #f8fafc;
    --bg-darker: #ffffff;
    --text-light: #0f172a;
    --text-muted: #64748b;
    --accent: #f59e0b;
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.05);
    --card-bg: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
}

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

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 130, 243, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 130, 243, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.mt-4 {
    margin-top: 2rem;
}

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

.w-full {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at top right, rgba(0, 130, 243, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(79, 172, 254, 0.05), transparent 40%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 130, 243, 0.08);
    border: 1px solid rgba(0, 130, 243, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.top-right {
    top: 30px;
    right: -20px;
}

.bottom-left {
    bottom: 30px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section */
.stats {
    background-color: var(--bg-dark);
}

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

.stat-card {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Why Choose Us */
.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.image-composite {
    position: relative;
    height: 450px;
    width: 100%;
}

.img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 8px solid #ffffff;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-composite:hover .img-main {
    transform: translate(-15px, -15px) scale(1.02);
}

.image-composite:hover .img-sub {
    transform: translate(15px, 15px) scale(1.05);
}

.why-us-image {
    position: relative;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-muted);
}

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

.grid-feature-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 130, 243, 0.2);
}

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

.job-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-image {
    position: relative;
    height: 200px;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.tag.hot {
    background: var(--danger);
    color: white;
}

.tag.flex {
    background: var(--secondary);
    color: white;
}

.tag.pro {
    background: var(--accent);
    color: var(--bg-darker);
}

.tag.creative {
    background: #8b5cf6;
    color: white;
}

.tag.bonus {
    background: var(--success);
    color: white;
}

.tag.new {
    background: var(--primary);
    color: #ffffff;
}

.job-info {
    padding: 25px;
}

.job-info h3 {
    margin-bottom: 10px;
}

.salary {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.job-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Job Card CTA */
.job-card-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    min-height: 400px;
}

.job-card-cta .cta-inner {
    padding: 40px;
}

.job-card-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.job-card-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.icon-pulse {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.job-card-cta .btn-primary {
    background: #ffffff;
    color: var(--primary);
    border: none;
}

.job-card-cta .btn-primary:hover {
    background: var(--bg-dark);
    transform: translateY(-3px);
}

.meta i {
    color: var(--primary);
}

/* Global Network */
.network-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.network-card {
    padding: 40px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.network-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.region-flag {
    font-size: 40px;
    margin-bottom: 20px;
}

.network-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.network-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.partner-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-list li {
    padding: 8px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* Lifestyle Gallery */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lifestyle-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lifestyle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(2, 6, 23, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lifestyle-item:hover img {
    transform: scale(1.1);
}

.lifestyle-item:hover .lifestyle-overlay {
    opacity: 1;
}

.lifestyle-overlay h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.lifestyle-overlay p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.review-card {
    padding: 40px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 20px;
}

.review-text {
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.user-info {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.user-name {
    font-weight: 700;
    color: var(--primary);
}

.user-tag {
    font-size: 13px;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--glass-border);
}

.faq-question h3 {
    font-size: 18px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px 30px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Apply Form */
.apply {
    background: var(--bg-dark);
}

.apply-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apply-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.apply-text .lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.apply-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 130, 243, 0.2);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-list i {
    color: var(--success);
}

.apply-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.apply-form-container h3 {
    margin-bottom: 10px;
}

.apply-form-container p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input:not([type="radio"]) {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="radio"] {
    cursor: pointer;
    width: auto;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    display: none;
}

.form-response.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
    display: block;
}

.form-response.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
    display: block;
}

.footer-contact {
    text-align: center;
    margin-bottom: 40px;
}

.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    display: flex;
    justify-content: center;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}


.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        display: flex;
        justify-content: center;
        position: relative;
        padding: 0 15px;
    }

    .logo {
        position: absolute;
        left: 15px;
    }

    .apply-now-btn {
        font-size: 13px;
        padding: 10px 18px;
        margin: 0;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--text-light);
        position: absolute;
        right: 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--glass-border);
        animation: slideDown 0.3s ease;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        font-size: 16px;
        color: var(--text-light);
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-content,
    .stats-grid,
    .why-us-layout,
    .grid-features,
    .jobs-grid,
    .network-grid,
    .lifestyle-grid,
    .reviews-grid,
    .apply-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-btns {
        justify-content: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .job-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .apply-text h2 {
        font-size: 36px;
    }

    .image-composite {
        height: 350px;
    }

    .img-main {
        width: 80%;
        height: 250px;
    }

    .img-sub {
        width: 70%;
        height: 200px;
        border-width: 4px;
    }
}

/* Advanced Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.slide-up {
    transform: translateY(50px);
}

.reveal.slide-left {
    transform: translateX(-50px);
}

.reveal.slide-right {
    transform: translateX(50px);
}

.reveal.scale-up {
    transform: scale(0.9);
}

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

/* Delay classes */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Micro-interactions */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}

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