/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-900);
    color: white;
    padding: var(--space-4);
    z-index: 60;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-notice:not(.hidden) {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    gap: var(--space-4);
}

.cookie-content p {
    margin: 0;
    font-size: var(--text-sm);
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid var(--neutral-200);
    z-index: 50;
    height: var(--header-height);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo a {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-800);
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
    font-size: var(--text-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    color: var(--neutral-600);
    transition: color var(--transition-fast);
    padding: var(--space-2);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    margin: 2px 0;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding-top: var(--header-height);
}

/* Home page hero full height */
.hero.home-hero {
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(234, 88, 12, 0.8) 0%, 
        rgba(22, 163, 74, 0.6) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-6);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-text {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-6);
    color: white;
    line-height: var(--leading-tight);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    opacity: 0.7;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--leading-relaxed);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: var(--font-weight-medium);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-normal);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-feature-icon {
    font-size: var(--text-base);
}

.hero-actions {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 32px rgba(234, 88, 12, 0.3);
    transition: all var(--transition-normal);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(234, 88, 12, 0.4);
}

.hero-cta-primary .btn-arrow {
    margin-left: var(--space-2);
    transition: transform var(--transition-normal);
}

.hero-cta-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-cta-secondary {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-normal);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

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

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-weight-medium);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.8s ease-out 1.2s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.scroll-arrow {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
    animation: bounce 2s infinite;
    text-align: center;
}

.hero-scroll-indicator span {
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    font-weight: var(--font-weight-bold);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
    margin: 0;
    font-weight: var(--font-weight-normal);
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--space-24) 0;
    background-color: white;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background-color: var(--neutral-50);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    font-weight: var(--font-weight-semibold);
}

.feature-card p {
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
    margin: 0;
    font-weight: var(--font-weight-normal);
}

/* Metrics Section */
.metrics {
    padding: var(--space-20) 0;
    background-color: var(--primary-color);
    color: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
}

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

.metric-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    display: block;
    margin-bottom: var(--space-2);
    color: white;
}

.metric-label {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

/* Service Highlights */
.service-highlights {
    padding: var(--space-24) 0;
    background-color: var(--neutral-50);
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: var(--space-6);
}

.service-content h3 {
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    font-weight: var(--font-weight-semibold);
}

.service-content p {
    color: var(--neutral-700);
    margin-bottom: var(--space-6);
    font-weight: var(--font-weight-normal);
}

/* Testimonials */
.testimonials {
    padding: var(--space-24) 0;
    background-color: white;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    padding: var(--space-8);
    background-color: var(--neutral-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--neutral-100);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: var(--space-4);
}

.stars {
    color: #fbbf24;
    font-size: var(--text-lg);
}

.testimonial-card p {
    font-style: italic;
    color: var(--neutral-800);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-weight-normal);
    font-size: var(--text-base);
}

.testimonial-author strong {
    display: block;
    color: var(--neutral-900);
    font-weight: var(--font-weight-semibold);
    font-size: var(--text-base);
}

.testimonial-author span {
    color: var(--neutral-700);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
}

/* Featured Services */
.featured-services {
    padding: var(--space-24) 0;
    background-color: var(--neutral-50);
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.featured-card {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

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

.featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: var(--space-6);
}

.featured-content h3 {
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
    font-weight: var(--font-weight-semibold);
}

.featured-content p {
    color: var(--neutral-700);
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-normal);
}

.featured-price {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: var(--space-6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Promo Banner */
.promo-banner {
    position: relative;
    padding: var(--space-24) 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.promo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.promo-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.9), rgba(5, 150, 105, 0.8));
    z-index: -1;
}

.promo-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: var(--font-weight-bold);
}

.promo-content p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: var(--font-weight-medium);
}

/* SEO Text Section */
.seo-text {
    padding: var(--space-24) 0;
    background-color: white;
    text-align: center;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.seo-content h2 {
    text-align: center;
    margin-bottom: var(--space-8);
}

.seo-content p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--neutral-800);
    margin-bottom: var(--space-6);
    font-weight: var(--font-weight-normal);
}

/* Trust Section */
.trust-section {
    padding: var(--space-20) 0;
    background-color: var(--neutral-50);
    text-align: center;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.trust-badges {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-4);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
}

.trust-badge img {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-2);
}

.trust-badge span {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--neutral-700);
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.trust-stat strong {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    margin-bottom: var(--space-1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.trust-stat span {
    color: var(--neutral-700);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
}

/* Social Proof */
.social-proof {
    padding: var(--space-20) 0;
    background-color: white;
    text-align: center;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.instagram-banner {
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-xl);
}

.instagram-banner h3 {
    margin-bottom: var(--space-3);
}

.instagram-banner p {
    margin-bottom: var(--space-6);
    color: var(--neutral-700);
}

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

.trustpilot-badge {
    display: inline-block;
    padding: var(--space-6);
    background-color: var(--neutral-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--neutral-200);
}

.trustpilot-stars {
    font-size: var(--text-2xl);
    color: #00b67a;
    margin-bottom: var(--space-2);
}

.trustpilot-badge strong {
    display: block;
    font-size: var(--text-lg);
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
}

.trustpilot-badge span {
    display: block;
    color: var(--neutral-600);
    margin-bottom: var(--space-3);
}

.trustpilot-link {
    color: #00b67a;
    font-weight: var(--font-weight-medium);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--neutral-900);
    color: white;
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

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

.footer-section ul li {
    margin-bottom: var(--space-3);
}

.footer-section a {
    color: var(--neutral-300);
    transition: color var(--transition-fast);
}

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

.contact-info p {
    margin-bottom: var(--space-3);
    color: var(--neutral-300);
}

.contact-info strong {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-md);
    background-color: var(--neutral-800);
    color: white;
}

.newsletter-form input::placeholder {
    color: var(--neutral-400);
}

.newsletter-form button {
    padding: var(--space-3) var(--space-6);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.payment-methods {
    display: flex;
    gap: var(--space-3);
    align-items: center;
}

.payment-methods img {
    height: 24px;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--neutral-800);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    color: var(--neutral-400);
    transition: color var(--transition-fast);
}

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

.footer-bottom p {
    color: var(--neutral-400);
    margin: 0;
    font-size: var(--text-sm);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    animation: fadeIn var(--transition-normal);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeIn var(--transition-normal);
}

.modal-content h3 {
    margin-bottom: var(--space-6);
    text-align: center;
}

.close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: var(--text-2xl);
    cursor: pointer;
    color: var(--neutral-600);
    transition: color var(--transition-fast);
}

.close:hover {
    color: var(--neutral-900);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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