/* 
 * Lunirexion - Train als een atleet
 * Main stylesheet
 */

/*
 * Base Styles & Reset
 */
:root {
    /* Colors */
    --color-dark: #1a1a1a;
    --color-darker: #0f172a;
    --color-accent: #00ff88;
    --color-accent-dark: #00cc6a;
    --color-white: #ffffff;
    --color-gray: #cccccc;
    --color-gray-dark: #666666;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-darker), #1e293b);
    --gradient-accent: linear-gradient(135deg, var(--color-accent), #0af);
    --gradient-dark: linear-gradient(135deg, #000, var(--color-darker));
    
    /* Shadows */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 5px 15px rgba(0, 255, 136, 0.3);
    
    /* Typography */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/*
 * Typography
 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-accent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/*
 * Buttons
 */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--color-darker);
    box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
    color: var(--color-darker);
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--color-white);
}

.btn--full {
    width: 100%;
}

@media (max-width: 576px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/*
 * Header & Navigation
 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-medium);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: block;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    color: var(--color-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-white);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-darker);
        padding: 100px 30px 30px;
        z-index: 1000;
        transition: right 0.3s ease;
    }
    
    .nav.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav__link {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }
}

/*
 * Hero Section
 */
.hero {
    height: 100vh;
    min-height: 700px;
    padding: 0;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--color-gray);
}

.hero__cta {
    display: flex;
    gap: 20px;
}

.hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero__image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}

.hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-dark), transparent);
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 600px;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero__cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.3;
    }
    
    .hero__image::after {
        background: linear-gradient(to bottom, var(--color-dark), rgba(26, 26, 26, 0.7));
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__cta {
        flex-direction: column;
    }
}

/*
 * Programs Section
 */
.programs {
    background-color: var(--color-darker);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: rgba(0, 255, 136, 0.3);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card__icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
}

.program-card__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.program-card__text {
    color: var(--color-gray);
    margin-bottom: 25px;
}

.program-card__link {
    display: inline-block;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.program-card__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.program-card__link:hover::after {
    width: 100%;
}

@media (max-width: 992px) {
    .programs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*
 * How It Works Section
 */
.how-it-works {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--color-accent);
    opacity: 0.3;
    z-index: -1;
}

.step:last-child::before {
    display: none;
}

.step__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--color-darker);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 30px;
}

.step__content {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.step:hover .step__content {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.step__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step__text {
    color: var(--color-gray);
}

.how-it-works__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.how-it-works__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
    }
    
    .step__number {
        margin-bottom: 15px;
    }
    
    .step::before {
        left: 20px;
        top: 40px;
        height: calc(100% - 40px + 40px);
    }
    
    .how-it-works__image {
        width: 100%;
        opacity: 0.1;
    }
}

/*
 * Pricing Section
 */
.pricing {
    background: var(--gradient-primary);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.pricing-card--featured {
    transform: scale(1.05);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card__header {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    position: relative;
}

.pricing-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-accent);
    color: var(--color-darker);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
}

.pricing-card__title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.pricing-card__subtitle {
    color: var(--color-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.pricing-card__price span {
    font-size: 1rem;
    color: var(--color-gray);
}

.pricing-card__body {
    padding: 30px;
}

.pricing-card__features {
    margin-bottom: 30px;
}

.pricing-card__features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--color-gray);
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .pricing-card--featured {
        transform: scale(1);
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-10px);
    }
}

/*
 * Benefits Section
 */
.benefits {
    background-color: var(--color-dark);
    position: relative;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.benefit-card__icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-card__text {
    color: var(--color-gray);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

/*
 * Testimonials Section
 */
.testimonials {
    background: var(--gradient-primary);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonials__slider {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 255, 136, 0.3);
}

.testimonial__image {
    height: 200px;
    overflow: hidden;
}

.testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial__author {
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 5px;
}

.testimonial__rating {
    color: #ffc107;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .testimonials__slider {
        flex-direction: column;
    }
}

/*
 * FAQ Section
 */
.faq {
    background-color: var(--color-dark);
    position: relative;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item__question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-item__question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    flex-grow: 1;
}

.faq-item__icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: all 0.3s ease;
}

.faq-item__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item__answer p {
    color: var(--color-gray);
}

/*
 * CTA Section
 */
.cta {
    background: var(--gradient-dark);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.cta .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta__content {
    flex: 1;
    max-width: 600px;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta__text {
    color: var(--color-gray);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-group--checkbox label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.cta__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
}

.cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cta__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-dark), transparent);
}

@media (max-width: 992px) {
    .cta__content {
        max-width: 100%;
    }
    
    .cta__image {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .cta__title {
        font-size: 2rem;
    }
}

/*
 * Newsletter Section
 */
.newsletter {
    background-color: var(--color-darker);
    padding: 60px 0;
}

.newsletter__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter__content {
    flex: 1;
}

.newsletter__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter__text {
    color: var(--color-gray);
}

.newsletter__form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter__form input {
    flex-grow: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter__form input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .newsletter__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter__form {
        width: 100%;
        max-width: 100%;
    }
}

/*
 * Footer
 */
.footer {
    background-color: var(--color-dark);
    padding-top: 80px;
    position: relative;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer__logo {
    max-width: 200px;
}

.footer__tagline {
    margin-top: 15px;
    color: var(--color-gray);
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer__column ul li {
    margin-bottom: 10px;
}

.footer__column ul li a {
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.footer__column ul li a:hover {
    color: var(--color-accent);
}

.footer__map {
    margin-bottom: 60px;
}

.google-map {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.footer__address {
    font-style: normal;
    color: var(--color-gray);
    line-height: 1.8;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
}

.footer__copyright {
    color: var(--color-gray);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer__top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer__links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer__links {
        flex-direction: column;
        gap: 30px;
    }
}

/*
 * Mobile CTA Button
 */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 80%;
    max-width: 300px;
    box-shadow: var(--shadow-large);
    border-radius: 50px;
    overflow: hidden;
}

.mobile-cta .btn {
    width: 100%;
    border-radius: 50px;
    padding: 15px;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
}

/*
 * Animations
 */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}