/* 
==============================================
VELTRANTHAE SPORTTRAINING WEBSITE STYLESHEET
==============================================
*/

/* === GLOBAL STYLES === */
:root {
    --dark-bg: #1e1e1e;
    --light-text: #ffffff;
    --orange-accent: #FF6B00;
    --lime-accent: #A5FF00;
    --gray-light: #f0f0f0;
    --gray-dark: #333333;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--light-text);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--lime-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--orange-accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--lime-accent);
    bottom: -5px;
    left: 0;
    transform: skewX(-15deg);
    opacity: 0.5;
}

.btn-primary {
    display: inline-block;
    background-color: var(--orange-accent);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === HEADER & NAVIGATION === */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

#header.scrolled {
    background-color: rgba(30, 30, 30, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    max-width: 180px;
}

.logo img {
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 500;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--lime-accent);
    transition: width var(--transition-speed) ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* === HERO SECTION === */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(30, 30, 30, 0.9));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--orange-accent);
    color: var(--light-text);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lime-accent);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
}

.cta-button:hover {
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(165, 255, 0, 0.3);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.wave-animation svg {
    display: block;
    width: 100%;
    height: 150px;
}

/* === WAT IS VELTRANTHAE SECTION === */
#wat-is-veltranthae {
    background-color: var(--dark-bg);
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(60, 60, 60, 0.1), rgba(30, 30, 30, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange-accent), var(--lime-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.brain-muscle-animation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    height: 150px;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lime-accent), var(--orange-accent), var(--light-text));
    z-index: 1;
    animation: pulse 3s infinite;
}

.brain-icon, .muscle-icon, .movement-icon {
    position: relative;
    z-index: 2;
    background-color: var(--dark-bg);
    border-radius: 50%;
    padding: 10px;
    transform: translateY(0);
    animation: float 4s infinite ease-in-out;
}

.brain-icon {
    animation-delay: 0s;
}

.muscle-icon {
    animation-delay: 1s;
}

.movement-icon {
    animation-delay: 2s;
}

/* === TRAININGSVORMEN SECTION === */
#trainingsvormen {
    background-color: #232323;
    position: relative;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.training-card {
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all var(--transition-speed) ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.training-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.training-image {
    height: 250px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.training-card:hover .training-image img {
    transform: scale(1.1);
}

.training-content {
    padding: 1.5rem;
    text-align: center;
}

.training-content h3 {
    color: var(--orange-accent);
    margin-bottom: 0.5rem;
}

.training-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.training-btn {
    background-color: transparent;
    color: var(--lime-accent);
    border: 1px solid var(--lime-accent);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
}

.training-btn:hover {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
}

.training-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    transform: rotateY(90deg);
    z-index: 10;
}

.training-card.active .training-details {
    opacity: 1;
    visibility: visible;
    transform: rotateY(0);
}

.details-content {
    padding: 2rem;
    text-align: center;
}

.details-content h4 {
    color: var(--orange-accent);
    margin-bottom: 1rem;
}

.details-content ul {
    margin-bottom: 1rem;
    text-align: left;
}

.details-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.details-content ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lime-accent);
}

/* === WAAROM KIEZEN SECTION === */
#waarom-kiezen {
    background-color: #1a1a1a;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--dark-bg), 0 0 0 5px rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all var(--transition-speed) ease;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px var(--dark-bg), 0 0 0 5px var(--orange-accent);
}

.timeline-content {
    background-color: rgba(60, 60, 60, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(60, 60, 60, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(60, 60, 60, 0.1) transparent transparent;
}

.timeline-content h3 {
    color: var(--orange-accent);
    margin-bottom: 0.5rem;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === VOOR WIE SECTION === */
#voor-wie {
    background-color: #232323;
    position: relative;
}

.target-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.target-group {
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.target-group:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.target-icon {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.target-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.target-group:hover .target-icon img {
    transform: scale(1.1);
}

.target-group h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--orange-accent);
}

.target-case {
    background-color: rgba(60, 60, 60, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
}

.target-case::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--lime-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.author {
    text-align: right;
    font-weight: 600;
    color: var(--orange-accent);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.before, .after {
    background-color: rgba(60, 60, 60, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
}

.before {
    border-left: 5px solid #ff4d4d;
}

.after {
    border-left: 5px solid #4dff4d;
}

.before h4, .after h4 {
    margin-bottom: 1rem;
}

.before h4 {
    color: #ff4d4d;
}

.after h4 {
    color: #4dff4d;
}

.before-after ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.before-after ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lime-accent);
}

/* === TESTIMONIALS SECTION === */
#testimonials {
    background-color: #1a1a1a;
    position: relative;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: rgba(60, 60, 60, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 250px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--orange-accent);
}

.testimonial-text p::before {
    margin-right: 0.25rem;
}

.testimonial-text p::after {
    margin-left: 0.25rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--lime-accent);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    background-color: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--lime-accent);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.dot.active {
    background-color: var(--orange-accent);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--lime-accent);
}

/* === TARIEVEN SECTION === */
#tarieven {
    background-color: #232323;
    position: relative;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid var(--orange-accent);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--orange-accent);
    color: var(--light-text);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--lime-accent);
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 0.75rem;
    color: var(--lime-accent);
}

.pricing-features ul li.not-included {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-features ul li.not-included i {
    color: #ff4d4d;
}

.pricing-footer {
    text-align: center;
}

.pricing-button {
    display: inline-block;
    background-color: var(--orange-accent);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    width: 100%;
}

.pricing-button:hover {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* === FAQ SECTION === */
#faq {
    background-color: #1a1a1a;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    background-color: rgba(60, 60, 60, 0.1);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.faq-item:hover .faq-question h3 {
    transform: scale(1.05);
    color: var(--orange-accent);
}

.faq-icon {
    color: var(--lime-accent);
    transition: all var(--transition-speed) ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
    opacity: 1;
}

/* === SCHRIJF JE IN SECTION === */
#schrijf-je-in {
    background-color: #232323;
    background-image: url('images/item.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#schrijf-je-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.85);
    z-index: 1;
}

#schrijf-je-in .container {
    position: relative;
    z-index: 2;
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.signup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    color: var(--lime-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit p {
    margin-bottom: 0;
    font-size: 1rem;
}

.signup-form {
    background-color: rgba(30, 30, 30, 0.95);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(60, 60, 60, 0.2);
    color: var(--light-text);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox a {
    color: var(--orange-accent);
    text-decoration: underline;
}

.checkbox a:hover {
    color: var(--lime-accent);
}

.submit-button {
    display: inline-block;
    background-color: var(--orange-accent);
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-button span {
    position: relative;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.submit-button:hover {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:hover::before {
    left: 100%;
}

/* === CONTACT SECTION === */
#contact {
    background-color: #1a1a1a;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--box-shadow);
}

#map {
    width: 100%;
    height: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location {
    background-color: rgba(60, 60, 60, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.location:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.location h3 {
    color: var(--orange-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location p i {
    color: var(--lime-accent);
    font-size: 1.1rem;
    width: 20px;
}

.location p:last-child {
    margin-bottom: 0;
}

/* === FOOTER === */
#footer {
    background-color: #131313;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--orange-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-speed) ease;
}

.footer-column ul li a:hover {
    color: var(--lime-accent);
    padding-left: 5px;
}

.newsletter h4 {
    color: var(--orange-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.newsletter p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
}

.newsletter-form button {
    background-color: var(--orange-accent);
    color: var(--light-text);
    padding: 0 1.5rem;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* === BACK TO TOP BUTTON === */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--orange-accent);
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    padding: 1.5rem 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 2rem;
}

.cookie-content a {
    color: var(--orange-accent);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--lime-accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
}

.cookie-btn.accept {
    background-color: var(--lime-accent);
    color: var(--dark-bg);
}

.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid var(--light-text);
    color: var(--light-text);
}

.cookie-btn.accept:hover {
    background-color: var(--orange-accent);
    color: var(--light-text);
    transform: translateY(-3px);
}

.cookie-btn.decline:hover {
    border-color: var(--orange-accent);
    color: var(--orange-accent);
    transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
    
    .features-grid,
    .target-groups,
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: rgba(30, 30, 30, 0.98);
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        transition: height 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        height: calc(100vh - 80px);
        padding: 2rem 0;
        overflow-y: auto;
    }
    
    .features-grid,
    .training-grid,
    .target-groups,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 0 0 3rem !important;
        text-align: left !important;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-icon {
        left: -10px !important;
        right: auto !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(60, 60, 60, 0.1) transparent transparent;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-image {
        margin: 0 auto 1.5rem;
    }
    
    .signup-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid,
    .training-grid,
    .target-groups,
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .benefit {
        grid-column: 1 / -1;
    }
    
    #back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}