/* Base Styles */
:root {
    --primary-color: #B2FF59;
    --primary-hover: #a0ff2a;
    --bg-color: #111;
    --text-color: #FFFFFF;
    --text-secondary: #CCCCCC;
    --section-padding: 100px 0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Button Styles */
.primary-button, .submit-button, .schedule-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(178, 255, 89, 0.3);
}

.primary-button:hover, .submit-button:hover, .schedule-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(178, 255, 89, 0.4);
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: var(--header-height);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    color: var(--bg-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* 1. Intro Section Styles */
.intro-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--header-height);
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(20,20,20,0.9));
}

.intro-content {
    max-width: 800px;
    z-index: 2;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 1.5s ease;
}

.intro-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(178, 255, 89, 0.3);
}

.intro-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.intro-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: -150px;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 20%;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 50px);
    }
    50% {
        transform: translate(0, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2. What is functional training? Block Styles */
.wat-is-section {
    background-color: #151515;
    padding: 120px 0;
    position: relative;
}

.training-cards-container {
    overflow-x: auto;
    padding: 20px 0;
    margin: 0 -20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.training-cards-container::-webkit-scrollbar {
    display: none;
}

.training-cards {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
}

.training-card {
    flex: 0 0 350px;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    transform: translateY(0);
    box-shadow: var(--box-shadow);
    border-left: 3px solid var(--primary-color);
}

.training-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.training-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.training-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 3. For whom is it suitable? Block Styles */
.voor-wie-section {
    background-color: #0c0c0c;
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/voor.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.target-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.target-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.12);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.target-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background-color: rgba(178, 255, 89, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.target-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.target-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.carousel-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* 4. Our methodology Block Styles */
.methodiek-section {
    background-color: #1a1a1a;
    padding: 120px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.methodology-item {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.methodology-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(178, 255, 89, 0.05), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.methodology-item:hover::before {
    opacity: 1;
}

.methodology-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.methodology-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.methodology-item h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.methodology-item p {
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.methodology-item ul {
    margin-top: 20px;
    padding-left: 20px;
}

.methodology-item ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.methodology-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 5. Your schedule — your pace Block Styles */
.schema-section {
    background-color: #0f0f0f;
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/section.jpg');
    background-size: cover;
    background-position: center;
}

.schedule-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.schedule-card {
    flex: 0 0 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    border: 2px solid transparent;
}

.schedule-card.active {
    border-color: var(--primary-color);
    transform: translateY(-15px) scale(1.05);
    z-index: 2;
}

.schedule-card:hover:not(.active) {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
}

.schedule-header {
    padding: 30px;
    text-align: center;
    background-color: rgba(178, 255, 89, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.schedule-frequency {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.schedule-body {
    padding: 30px;
}

.schedule-features {
    margin-bottom: 30px;
}

.schedule-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.schedule-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.schedule-time {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.schedule-time span {
    display: block;
}

.schedule-time span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.schedule-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.schedule-button {
    width: 100%;
    background-color: rgba(178, 255, 89, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.schedule-button:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.schedule-preview {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    background-color: #1a1a1a;
    border-radius: 20px;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.schedule-preview.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.preview-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background-color: #1a1a1a;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.preview-header h3 {
    margin-bottom: 0;
}

.preview-header span {
    color: var(--primary-color);
}

.preview-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.preview-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.preview-content {
    padding: 30px;
}

.preview-day {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.preview-day h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.preview-day ul {
    padding-left: 20px;
}

.preview-day ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.preview-day ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 6. Why choose Aurelorient.shop? Block Styles */
.waarom-section {
    background-color: #161616;
    padding: 120px 0;
}

.timeline-container {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 3px;
    background-color: rgba(178, 255, 89, 0.3);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    padding-left: 120px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.appear {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    position: absolute;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(178, 255, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 1;
    box-shadow: 0 0 0 5px #161616, 0 0 0 7px rgba(178, 255, 89, 0.3);
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--card-bg);
}

.timeline-content:hover {
    background-color: var(--card-hover);
    transform: translateX(10px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-content p {
    margin-bottom: 0;
}

/* 7. Testimonials Block Styles */
.getuigenissen-section {
    background-color: #131313;
    padding: 120px 0;
    background-image: url("images/item.jpg");
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform-origin: center;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 20px;
    font-size: 8rem;
    color: rgba(178, 255, 89, 0.1);
    font-family: serif;
    z-index: 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* 8. Try for free Block Styles */
.probeer-section {
    background-color: #0a0a0a;
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/pro.jpg');
    background-size: cover;
    background-position: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-form {
    display: grid;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(178, 255, 89, 0.2);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}

.radio-label input,
.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-custom,
.checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-custom {
    border-radius: 5px;
}

.radio-label:hover input ~ .radio-custom,
.checkbox-label:hover input ~ .checkbox-custom {
    background-color: rgba(178, 255, 89, 0.1);
}

.radio-label input:checked ~ .radio-custom,
.checkbox-label input:checked ~ .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.radio-custom:after,
.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-label input:checked ~ .radio-custom:after,
.checkbox-label input:checked ~ .checkbox-custom:after {
    display: block;
}

.radio-label .radio-custom:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-color);
}

.checkbox-label .checkbox-custom:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid var(--bg-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-button {
    width: 100%;
    margin-top: 20px;
    padding: 18px 30px;
    font-size: 1.1rem;
}

/* Google Maps Section */
.map-section {
    padding: 120px 0 0;
    background-color: #0f0f0f;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
#footer {
    background-color: #090909;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    transition: var(--transition);
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 10px rgba(178, 255, 89, 0.5));
}

.footer-newsletter {
    max-width: 400px;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-hover);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-nav-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-nav-column ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.footer-nav-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-nav-column ul li a:hover::before {
    color: var(--primary-color);
}

.footer-nav-column address p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

#cookieAccept {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

#cookieAccept:hover {
    background-color: var(--primary-hover);
}

#cookieDecline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

#cookieDecline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#backToTop.active {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .intro-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-newsletter {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 70px;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-subtitle {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: rgba(20, 20, 20, 0.95);
        flex-direction: column;
        padding: 100px 40px;
        transition: right 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .schedule-card.active {
        transform: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.appear {
    opacity: 1;
    transform: scale(1);
}