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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

/* Header & Navigation */
header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    position: fixed;
    width: 88%;
    left: 12%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
    border-bottom: none;
    border-radius: 0 0 0 150px;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(64, 64, 64, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1.6rem 0;
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-left: 10px;
}

.logo {
    position: absolute;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    z-index: 1001;
}

.logo-image {
    height: 200px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 122, 204, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.nav-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Desktop styles - ensure navigation works on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}


.nav-menu > li > a::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: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.nav-menu > li > a:hover::before {
    left: 100%;
}

.nav-menu > li > a {
    border-bottom: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: white;
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.4);
    border-bottom-color: transparent;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '▼';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    color: white;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    margin: 0.3rem 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
    padding-left: 1.5rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 2px 2px 0;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.language-toggle {
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem !important;
}

.language-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 180px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    overflow: hidden;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    padding: 0;
    list-style: none;
    margin: 0.3rem 0;
}

.language-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
}

.language-menu a:hover {
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

/* Hero Section */
.hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #ff5900 0%, #000000 100%);
    min-height: 100vh;
}

.hero-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.welcome-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 0;
    font-weight: normal;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0.2rem;
    color: white;
    line-height: 1.1;
}

.description {
    margin-bottom: 1.5rem;
}

.description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #cccccc;
}

.call-to-action {
    font-weight: 600;
}

.contact-info {
    margin-top: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.contact-info a {
    color: #007acc;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.phone a {
    color: #007acc;
    font-weight: 600;
}

.address a {
    color: #007acc;
}

.email a {
    color: #007acc;
}

/* Services Section */
.services {
    padding: 20px 0 60px;
    background: #333333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    height: 300px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.personal-training {
    background-image: url('images/83e9f773-0dfd-4cf5-abb4-6970d594b574.png');
    background-size: cover;
    background-position: 15% center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    position: relative;
}

.personal-training::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -700px,
            rgba(255, 255, 255, 0.03) -220px,
            transparent -220px,
            transparent 260px
        ),
        linear-gradient(315deg, 
            rgba(42, 42, 42, 1) 0%, 
            rgba(42, 42, 42, 1) 20%, 
            rgba(42, 42, 42, 0.98) 35%, 
            rgba(35, 35, 35, 0.95) 45%, 
            rgba(20, 60, 20, 0.9) 60%, 
            rgba(15, 80, 15, 0.85) 75%, 
            rgba(22, 224, 0, 0.8) 90%, 
            rgba(22, 224, 0, 0.85) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
}

.online-coaching {
    background-image: url('images/online-coaching-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    position: relative;
}

.online-coaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -1050px,
            rgba(255, 255, 255, 0.03) -570px,
            transparent -570px,
            transparent -90px
        ),
        linear-gradient(315deg, 
            rgba(42, 42, 42, 1) 0%, 
            rgba(42, 42, 42, 1) 20%, 
            rgba(42, 42, 42, 0.98) 35%, 
            rgba(35, 35, 35, 0.95) 45%, 
            rgba(60, 30, 20, 0.9) 60%, 
            rgba(80, 40, 15, 0.85) 75%, 
            rgba(243, 156, 18, 0.8) 90%, 
            rgba(230, 126, 34, 0.85) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
}

.groepstraining {
    background-image: url('images/groepstraining-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    position: relative;
}

.groepstraining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -503px,
            rgba(255, 255, 255, 0.03) -23px,
            transparent -23px,
            transparent 457px
        ),
        linear-gradient(315deg, 
            rgba(42, 42, 42, 1) 0%, 
            rgba(42, 42, 42, 1) 20%, 
            rgba(42, 42, 42, 0.98) 35%, 
            rgba(35, 35, 35, 0.95) 45%, 
            rgba(40, 20, 60, 0.9) 60%, 
            rgba(50, 25, 80, 0.85) 75%, 
            rgba(142, 68, 173, 0.8) 90%, 
            rgba(155, 89, 182, 0.85) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.service-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.service-footer {
    margin-top: auto;
    padding-top: 1rem;
    position: relative;
    z-index: 2;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
}

.service-card:hover .service-cta {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Trainers Carousel */
.trainers-carousel {
    flex: 1;
    max-width: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-left: 5rem;
}

.trainers-container {
    display: flex;
    animation: slide-trainers 60s linear infinite;
    width: 800%; /* 8 trainers for seamless loop */
    gap: 0;
}

@keyframes slide-trainers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); /* Move half the width for seamless loop */}
}

.trainer-slide {
    width: 12.5%; /* Each slide takes 1/8 of container */
    flex-shrink: 0;
    position: relative;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}

.trainer-content {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    width: 100%;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    margin: 0;
}

.trainer-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007acc;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    background: #333333; /* Placeholder background */
    flex-shrink: 0;
}

.trainer-info {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trainer-info h4 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    color: white;
    font-weight: 600;
}

.trainer-expertise {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0.1rem 0;
    line-height: 1.3;
}

/* Trainer Link */
.trainer-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.trainer-link:hover {
    transform: scale(1.02);
}

/* Hover pause animation */
.trainers-container:hover {
    animation-play-state: paused;
}

/* Introductietraining Specific Styles */
.intro-pricing {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.intro-price-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #16e000;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-price-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.intro-price {
    font-size: 3rem;
    font-weight: bold;
    color: #16e000;
    margin-bottom: 0.5rem;
}

.intro-duration {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.intro-price-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.intro-price-content li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-price-content li:last-child {
    border-bottom: none;
}

.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.booking-info h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.booking-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.booking-icon {
    font-size: 1.5rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    min-width: 3rem;
    text-align: center;
}

.booking-item h5 {
    color: #16e000;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.booking-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.intro-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-form input,
.intro-form select,
.intro-form textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.intro-form input::placeholder,
.intro-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.intro-form select {
    color: white;
}

.intro-form option {
    background: #1a1a1a;
    color: white;
}

@media (max-width: 768px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-details {
        gap: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #16e000;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
}

.faq-answer a {
    color: #5dade2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #85c1e9;
    text-decoration: underline;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: 
        linear-gradient(135deg, rgba(58, 58, 58, 0.6) 20%, rgba(58, 58, 58, 0.5) 60%),
        linear-gradient(to right, #16e000 0%, #16e000 15%, #333333 60%, #333333 100%);
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    overflow: hidden;
    color: #cccccc;
    width: 100%;
    max-width: 100vw;
}

.reviews-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.reviews-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-rating {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    background: #333333;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.reviews-rating:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Pulsing animation */
.pulsing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.rating-badge {
    background: #16e000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.reviews-rating p {
    color: #cccccc;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.google-logo {
    width: 60px;
    height: auto;
    margin-top: 0.5rem;
}

.reviews-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 220px;
}

.reviews-container {
    display: flex;
    animation: scroll-reviews 80s linear infinite;
    width: calc(280px * 8); /* 4 reviews visible + duplicates */
    gap: 1rem;
}

.reviews-container:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 4)); /* Move 4 reviews width */
    }
}

.reviews-grid {
    display: flex;
    gap: 1rem;
    min-width: calc(280px * 8);
    flex-shrink: 0;
    transition: transform 0.1s linear;
}

.review-card {
    background: #333333;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 250px;
    max-width: 280px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #007acc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    margin: 0 0 0.1rem 0;
    color: white;
    font-size: 0.8rem;
}

.review-date {
    color: #cccccc;
    font-size: 0.6rem;
    display: block;
    margin-bottom: 0.1rem;
}

.stars {
    color: #ffc107;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.google-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 0;
}

.review-text {
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    flex: 1;
    overflow: visible;
    text-overflow: unset;
    display: block;
    white-space: normal;
}

.read-more {
    color: #007acc;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    align-self: flex-start;
}

.read-more:hover {
    text-decoration: underline;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: 
        linear-gradient(135deg, rgba(58, 58, 58, 0.6) 20%, rgba(58, 58, 58, 0.5) 60%),
        linear-gradient(to right, #16e000 0%, #16e000 15%, #333333 60%, #333333 100%);
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #cccccc;
    width: 100%;
    max-width: 100vw;
}


@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #16e000 0%, #12c000 50%, #16e000 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 25px rgba(22, 224, 0, 0.4),
        0 0 30px rgba(22, 224, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #16e000;
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(22, 224, 0, 0.4),
            0 0 30px rgba(22, 224, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(22, 224, 0, 0.6),
            0 0 50px rgba(22, 224, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(-2px) scale(1.02);
    }
}

.btn-intro-cta::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: left 0.5s;
}

.btn-intro-cta:hover::before {
    left: 100%;
}

.btn-intro-cta:hover {
    background: linear-gradient(135deg, #12c000 0%, #d94200 50%, #12c000 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(22, 224, 0, 0.6),
        0 0 60px rgba(22, 224, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-intro-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.btn-icon {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

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

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #16e000;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .btn-intro-cta {
        padding: 18px 30px;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-text {
        text-align: center;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.7rem;
    }
    
    .btn-intro-cta {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}

/* Hero Button Styling */
.hero-button-container {
    position: relative;
    margin-top: 1rem;
    z-index: 3;
    text-align: right;
    margin-right: -12rem;
}

.btn-intro-green {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff5900 0%, #e64a00 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 0 15px rgba(255, 89, 0, 0.6),
        0 0 25px rgba(255, 89, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-intro-green::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: left 0.5s;
}

.btn-intro-green:hover::before {
    left: 100%;
}

.btn-intro-green:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 0 20px rgba(255, 89, 0, 0.8),
        0 0 35px rgba(255, 89, 0, 0.6),
        0 0 50px rgba(255, 89, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff5900 0%, #e64a00 100%);
}

.btn-intro-green:active {
    transform: translateY(-1px) scale(1.05);
}

@media (max-width: 768px) {
    .hero-button-container {
        position: static;
        transform: none;
        margin-top: 2rem;
        text-align: center;
    }
    
    .btn-intro-green {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

/* Introductietraining Page Styles */
.intro-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 150px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(22, 224, 0, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.intro-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.intro-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #16e000;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-hero h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.what-to-expect {
    padding: 80px 0;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

.what-to-expect h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expect-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.expect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expect-item h3 {
    color: #16e000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expect-item p {
    color: #cccccc;
    line-height: 1.6;
}

.intro-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.intro-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    background: linear-gradient(135deg, #16e000 0%, #12c000 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 2rem;
    box-shadow: 0 4px 15px rgba(22, 224, 0, 0.3);
}

.timeline-content h3 {
    color: #16e000;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
}

.intro-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

.intro-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(22, 224, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(22, 224, 0, 0.2);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 224, 0, 0.4);
}

.benefit-card h3 {
    color: #16e000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

.intro-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    text-align: center;
}

.intro-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #16e000 0%, #12c000 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(22, 224, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(22, 224, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #16e000;
    border: 2px solid #16e000;
}

.btn-secondary:hover {
    background: #16e000;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 2rem;
    color: #cccccc;
    font-style: italic;
}

@media (max-width: 768px) {
    .intro-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    color: white;
    padding: 0.5rem 0 0.5rem 0;
    border-top: 1px solid #000000;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    align-items: start;
}

.footer-main-logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: -6rem;
}

.footer-main-logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 1rem;
    margin-top: 0;
    filter: brightness(1.1);
}

.footer-menu h4,
.footer-benefits h4,
.footer-address h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.footer-menu ul,
.footer-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-benefits li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #007acc;
}

.footer-benefits li {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-benefits li::before {
    content: '✓';
    color: #16e000;
    font-weight: bold;
    margin-right: 0.5rem;
}

.footer-address p {
    color: #cccccc;
    margin: 0.1rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-address strong {
    color: white;
}

.address-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s;
}

.address-link:hover {
    color: #007acc;
}

.address-link p {
    margin: 0.2rem 0;
}

.footer-map {
    margin-top: 1rem;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 200px;
    height: 120px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #000000;
}

.footer-logo-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 200px;
    margin-top: -5rem;
}

.footer-terms {
    flex: 1;
}

.terms-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.terms-link:hover {
    color: #16e000;
}

.footer-socials {
    flex: 1;
    text-align: right;
    margin-left: 3rem;
}

.footer-socials h4 {
    text-align: left;
    margin-left: 2rem;
}

.footer-socials h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    cursor: pointer;
    z-index: 10;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.email {
    background: #007acc;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.whatsapp {
    background: #16e000;
    color: white;
}

.kvk {
    color: #cccccc;
    font-size: 0.8rem;
    margin: 0;
}

.language-selector {
    background: #333333;
    color: white;
    border: 1px solid #333333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .trainers-carousel {
        max-width: 100%;
        width: 100%;
    }
    
    .trainer-slide {
        height: 400px;
        padding: 1rem;
    }
    
    .trainer-content {
        width: 250px;
        height: 350px;
        padding: 1rem 0.8rem;
    }
    
    .trainer-image {
        width: 150px;
        height: 150px;
        margin-top: 0.5rem;
    }
}

/* COMPLETE MOBILE REDESIGN */
@media (max-width: 768px) {
    /* Reset and clean mobile layout */
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mobile Header */
    header {
        width: 100% !important;
        left: 0 !important;
        border-radius: 0 !important;
        background: rgba(26, 26, 26, 0.95) !important;
        backdrop-filter: blur(10px);
        padding: 15px 0;
        position: fixed;
        top: 0;
        z-index: 1000;
    }
    
    .nav-container {
        padding: 0 20px;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }
    
    /* Show small logo on mobile */
    .logo {
        display: block !important;
    }
    
    .logo-image {
        height: 35px !important;
        width: auto;
    }
    
    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }
    
    /* Hamburger Menu Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }
    
    .hamburger span {
        width: 24px;
        height: 2px;
        background-color: white;
        margin: 2px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.97);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 70px 20px 20px;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    /* Clean Mobile Menu Items */
    .mobile-menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mobile-menu-items > li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        margin-bottom: 4px;
        overflow: hidden;
    }
    
    .mobile-menu-items > li:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    /* Clean menu links */
    .mobile-menu-items a {
        color: white !important;
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 500;
        display: block;
        padding: 16px 20px;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .mobile-menu-items a:hover {
        background: rgba(0, 122, 204, 0.1) !important;
        color: #007acc !important;
        transform: translateX(4px);
    }
    
    /* Mobile Submenu */
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-submenu.active {
        max-height: 300px;
    }
    
    .mobile-submenu li {
        margin-bottom: 0.5rem;
    }
    
    /* Clean submenu styling */
    .mobile-submenu a {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 12px 20px 12px 40px !important;
        position: relative;
        text-decoration: none !important;
        display: block;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 6px;
        margin: 2px 8px;
    }
    
    .mobile-submenu a:hover {
        color: #007acc !important;
        background: rgba(0, 122, 204, 0.08) !important;
        transform: translateX(4px);
    }
    
    .mobile-submenu a::before {
        content: "→";
        position: absolute;
        left: 20px;
        color: #007acc;
        font-size: 12px;
        opacity: 0.7;
    }
    
    .mobile-submenu a:before {
        content: "→";
        position: absolute;
        left: 0;
        color: #007acc;
    }
    
    /* Clean dropdown toggle */
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        color: white !important;
        font-size: 16px;
        font-weight: 500;
        padding: 16px 20px;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .mobile-dropdown-toggle:hover {
        background: rgba(0, 122, 204, 0.1) !important;
        color: #007acc !important;
        transform: translateX(4px);
    }
    
    .mobile-dropdown-toggle span {
        color: inherit !important;
    }
    
    .mobile-dropdown-toggle::after {
        content: "▼" !important;
        font-size: 12px !important;
        transition: transform 0.3s ease !important;
        color: inherit !important;
        opacity: 0.7;
    }
    
    .mobile-dropdown-toggle.active::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        min-width: 180px;
        border-radius: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.4rem 0.3rem;
        white-space: nowrap;
        text-align: center;
        min-width: auto;
        flex-shrink: 1;
    }
    
    /* Mobile-friendly dropdowns */
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Better touch targets */
    .language-toggle {
        padding: 0.5rem 0.8rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Mobile dropdown - use click instead of hover */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
        color: white;
    }
    
    /* Language dropdown mobile */
    .language-dropdown:hover .language-menu {
        display: none;
    }
    
    .language-dropdown.active .language-menu {
        display: block;
    }

    .trainer-slide {
        height: 350px;
        padding: 0.8rem;
    }
    
    .trainer-content {
        width: 220px;
        height: 300px;
        padding: 1rem 0.5rem;
    }
    
    .trainer-image {
        width: 120px;
        height: 120px;
        margin-top: 0.5rem;
    }
    
    .trainer-info h4 {
        font-size: 1.2rem;
    }
}

    /* Mobile Content Optimization */
    .hero-content {
        padding: 1rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        margin-bottom: 1rem;
    }
    
    /* Better mobile text readability */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Mobile-friendly buttons */
    .btn, .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer mobile improvements */
    .site-footer {
        background: #333333 !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
    }
    
    .footer-map iframe {
        width: 100%;
        height: 200px;
    }
    
    .footer-address-column .address-info {
        text-align: center !important;
    }
    
    .footer-address-column .address-info p {
        text-align: center !important;
    }
    
    /* Hide excellent blok on mobile for reviews section */
    .reviews-rating {
        display: none !important;
    }
    
    /* Reviews carousel hover pause functionality */
    .reviews-carousel:hover .reviews-container {
        animation-play-state: paused !important;
    }
}

@media (max-width: 480px) {
    /* Hide excellent blok on mobile for reviews section */
    .reviews-rating {
        display: none !important;
    }
    
    .main-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .description p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .service-title h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .page-hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile Pricing Carousel */
    .pricing-carousel-container {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .pricing-carousel-wrapper {
        overflow: hidden;
        border-radius: 12px;
    }
    
    .pricing-cards {
        display: flex !important;
        gap: 20px;
        padding: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transition: transform 0.3s ease;
    }
    
    .pricing-cards::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        min-width: 280px !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0 !important;
        transform: none !important;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    
    .pricing-card.featured {
        border: 2px solid #007acc;
        transform: none !important;
        margin: 0 !important;
    }
    
    /* Pricing Navigation Buttons */
    .pricing-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 122, 204, 0.9);
        border: none;
        color: white;
        font-size: 18px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
    }
    
    .pricing-nav-btn:hover {
        background: rgba(0, 122, 204, 1);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }
    
    .pricing-nav-prev {
        left: 10px;
    }
    
    .pricing-nav-next {
        right: 10px;
    }
    
    /* Pricing indicators */
    .pricing-carousel-container::after {
        content: "← Gebruik pijlen of swipe →";
        display: block;
        text-align: center;
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        margin-top: 20px;
        font-style: italic;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Mobile Step Plan with Horizontal Scroll */
    .new-carousel-container,
    .steps-wrapper {
        position: relative;
    }
    
    .new-carousel-track,
    .process-steps {
        display: flex !important;
        gap: 20px;
        padding: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .new-carousel-track::-webkit-scrollbar,
    .process-steps::-webkit-scrollbar {
        display: none;
    }
    
    .new-step-card,
    .step-card {
        min-width: 260px !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        height: auto !important;
        padding: 20px;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Step scroll indicator */
    .new-process-section::after,
    .process-section::after {
        content: "← Swipe door de stappen →";
        display: block;
        text-align: center;
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        margin-top: 20px;
        font-style: italic;
    }
    
    /* Small mobile content */
    .hero-content {
        padding: 0.5rem;
    }
    
    .service-card {
        padding: 1rem;
        min-height: 200px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    /* Improve mobile forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        border-radius: 30px;
    }
    
    .logo-image {
        height: 25px;
        margin-right: 0.3rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
        padding: 0.4rem 0.8rem;
        padding-left: 0.5rem;
    }
    
    .dropdown-menu {
        min-width: 180px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        border-radius: 12px;
    }
    
    .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    /* Reviews responsive */
    .reviews-title {
        font-size: 1.5rem;
    }
    
    .review-card {
        min-width: 250px;
    }
    
    .reviews-container {
        animation-duration: 25s;
    }
    
    /* Mobile Hero & Content Sections */
    main {
        padding-top: 65px;
    }
    
    .hero,
    .personal-training-hero,
    section.hero,
    section.personal-training-hero {
        background-size: cover !important;
        background-position: center center !important;
        min-height: 100vh;
        padding: 80px 20px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .main-title,
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    
    .hero-content p,
    .description p {
        font-size: 16px !important;
        line-height: 1.5;
        margin-bottom: 1rem;
        opacity: 0.9;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .btn-intro-green,
    .hero-button-container a {
        font-size: 16px !important;
        padding: 14px 24px !important;
        border-radius: 8px !important;
        margin-top: 2rem !important;
        display: inline-block;
        min-width: 200px;
        text-align: center;
    }
    
    /* Move BOEK INTRODUCTIETRAINING button to the right */
    .hero-button-container {
        text-align: right !important;
        margin-right: 20px !important;
    }
    
    .process-button-container {
        text-align: right !important;
        margin-right: 20px !important;
    }
    
    .online-coaching,
    section.online-coaching {
        background-size: 70% !important;
        background-position: center center !important;
    }
    
    .groepstraining,
    section.groepstraining {
        background-size: 70% !important;
        background-position: center center !important;
    }
    
    /* Mobile Content Sections */
    .welcome-section,
    .section {
        padding: 60px 20px !important;
    }
    
    .welcome-content,
    .section-content {
        max-width: 100% !important;
        text-align: center;
    }
    
    .welcome-content h2,
    .section-title {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .welcome-content h3,
    .section-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }
    
    .welcome-content .lead-text,
    .section-description {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Hide secondary paragraphs and shorten main text on mobile */
    .welcome-content p[data-translate="welcome-text-2"] {
        display: none !important;
    }
    
    /* Shorten all welcome text on mobile */
    .welcome-content .lead-text {
        font-size: 14px !important;
        line-height: 1.4 !important;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 3.2em;
    }
    
    /* Mobile Cards & Features */
    .features-grid,
    .service-grid {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-card,
    .service-card {
        padding: 24px !important;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Hide benefit/advantage detailed text on mobile - show only titles */
    .benefit-card p,
    .benefit-item p,
    .benefits-text-container p,
    .benefit-block p {
        display: none !important;
    }
    
    /* Keep benefit titles visible and make them more prominent */
    .benefit-card h3,
    .benefit-item h3,
    .benefits-text-container h3,
    .benefit-block h4 {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    /* Compact benefit cards on mobile */
    .benefit-card,
    .benefit-item {
        padding: 16px !important;
        min-height: auto !important;
    }
    
    /* Simplify benefit icons */
    .benefit-icon {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    
    /* Make video logo smaller on mobile so everything is visible */
    .video-logo {
        width: 250px !important;
        height: auto !important;
        margin-bottom: 2rem !important;
        margin-top: -2rem !important;
    }
    
    /* Optimize video container for mobile */
    .video-container {
        aspect-ratio: 16/9 !important;
        border-radius: 8px !important;
    }
    
    .video-text-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px !important;
        margin-left: -10px !important;
        min-height: auto !important;
    }
    
    /* Benefits section mobile centering */
    .benefits-text-container {
        margin-left: -10px !important;
        margin-right: 10px !important;
    }
    
    
    /* FORCE main mobile menu text to be white */
    .mobile-menu-items > li > a,
    .mobile-dropdown-toggle,
    .mobile-dropdown-toggle span,
    .mobile-menu span,
    .mobile-menu-items span {
        color: white !important;
        font-size: 1.2rem !important;
        font-weight: bold !important;
    }
    
    /* Dropdown submenu items - VERY different styling */
    .mobile-submenu a,
    .mobile-submenu > li > a {
        color: #ffaa00 !important;
        font-style: italic !important;
        font-size: 0.85rem !important;
        font-weight: normal !important;
        background: rgba(255, 170, 0, 0.1) !important;
        border-left: 3px solid #ffaa00 !important;
        margin-left: 10px !important;
    }
    
    .mobile-menu a:hover,
    .mobile-menu-items a:hover,
    .mobile-submenu a:hover,
    .mobile-dropdown-toggle:hover,
    .mobile-dropdown-toggle:hover span {
        color: #007acc !important;
    }
}

/* NEW WORKING CAROUSEL STYLES */
.new-process-section {
    padding: 40px 0 80px 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -560px,
            rgba(255, 255, 255, 0.03) -80px,
            transparent -80px,
            transparent 400px
        ),
        linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: white;
    position: relative;
}

.new-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.new-carousel-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.new-carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    height: 400px;
    align-items: flex-start;
}

.new-step-card {
    width: 340px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

.new-step-card:hover .new-step-inner {
    transform: rotateY(180deg);
}

.new-step-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.new-step-front, .new-step-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    border: 3px solid #16e000;
    box-shadow: 0 8px 30px rgba(22, 224, 0, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}

.new-step-front {
    background: #1a1a1a;
}

.new-step-back {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 89, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 89, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 89, 0, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.new-step-back::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.8;
    z-index: 3;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.new-step-back > * {
    position: relative;
    z-index: 2;
}

/* Stap 1 - Contactformulier icoon */
.new-step-card:nth-child(1) .new-step-back::before {
    content: '📝';
    font-size: 170px;
    width: auto;
    height: auto;
    background: none;
}

/* Stap 2 - Intake & Doelen icoon */
.new-step-card:nth-child(2) .new-step-back::before {
    content: '📋';
    font-size: 180px;
    width: auto;
    height: auto;
    background: none;
}

/* Stap 3 - Persoonlijk trainingsschema icoon */
.new-step-card:nth-child(3) .new-step-back::before {
    content: '🏋️';
    font-size: 180px;
    width: auto;
    height: auto;
    background: none;
}

/* Stap 4 - Gebruik onze app icoon */
.new-step-card:nth-child(4) .new-step-back::before {
    content: '📱';
    font-size: 180px;
    width: auto;
    height: auto;
    background: none;
}

/* Stap 5 - Resultaat & Vooruitgang icoon */
.new-step-card:nth-child(5) .new-step-back::before {
    content: '📈';
    font-size: 160px;
    width: auto;
    height: auto;
    background: none;
}

.new-step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.new-step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16e000 0%, #12c000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.6);
    border: 4px solid white;
}

.new-step-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22, 224, 0, 0.9), transparent);
    color: white;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.new-step-back h3 {
    font-size: 1.5rem;
    color: #16e000;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.new-step-back p {
    color: #ffffff;
    line-height: 1.4;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    margin-bottom: 0;
}

.new-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #16e000;
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(255, 89, 0, 0.4);
}

.new-nav-prev {
    left: -80px;
}

.new-nav-next {
    right: -80px;
}

.new-nav-btn:hover {
    background: #12c000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.6);
}

.new-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Next Step Arrow */
.next-step-arrow {
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: #16e000;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    animation: subtle-pulse 6s infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 5px #16e000);
    opacity: 0.7;
    line-height: 1;
    transform: rotate(0deg);
    text-stroke: 1px #16e000;
    -webkit-text-stroke: 1px #16e000;
    z-index: 10;
}

@keyframes subtle-pulse {
    0%, 70% {
        opacity: 0.7;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.new-step-card:hover .next-step-arrow {
    animation: none;
}

@keyframes bounce-invite {
    0%, 100% {
        transform: scale(1) translateX(0);
    }
    25% {
        transform: scale(1.3) translateX(10px);
    }
    50% {
        transform: scale(1.1) translateX(8px);
    }
    75% {
        transform: scale(1.2) translateX(12px);
    }
}

/* Hide arrow on last step */
.new-step-card:last-child .next-step-arrow {
    display: none;
}

/* About Us Page Styles */
.team-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #333333;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

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

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007acc;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.member-expertise {
    margin-bottom: 1.5rem;
}

.member-expertise h4 {
    color: #007acc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.member-expertise ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.member-expertise li {
    color: #cccccc;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.member-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.about-intro {
    padding: 80px 0;
    background: #333333;
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

.values-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: #333333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.value-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Personal Training Page Styles - Black-Green Theme */
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #333333;
}

.personal-training-hero {
    background-image: url('images/83e9f773-0dfd-4cf5-abb4-6970d594b574.png');
    background-size: cover;
    background-position: 15% top;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #cccccc;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -700px,
            rgba(255, 255, 255, 0.03) -220px,
            transparent -220px,
            transparent 260px
        ),
        linear-gradient(315deg, 
            rgba(42, 42, 42, 1) 0%, 
            rgba(42, 42, 42, 1) 20%, 
            rgba(42, 42, 42, 0.98) 35%, 
            rgba(35, 35, 35, 0.95) 45%, 
            rgba(20, 60, 20, 0.9) 60%, 
            rgba(15, 80, 15, 0.85) 75%, 
            rgba(22, 224, 0, 0.8) 90%, 
            rgba(22, 224, 0, 0.85) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
}


.corner-text-green {
    position: absolute;
    top: 200px;
    right: 350px;
    color: #ff5900;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
    z-index: 5;
    text-decoration: none;
    padding-left: 30px;
}

.corner-text-green::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ff5900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: left;
    padding: 0 40px;
    margin-left: -50%;
    margin-top: -5%;
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 0.5rem;
    margin-top: 15rem;
}

.title-line {
    font-family: 'Inter', sans-serif;
    font-size: 7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 0.85;
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    transform: skew(-5deg);
}

.title-line.small-text {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: right;
    margin-left: auto;
    width: fit-content;
    margin-right: 150px;
}

.invisible-text {
    color: transparent;
    opacity: 0;
    visibility: hidden;
    line-height: 0.9;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: -1px;
    word-spacing: 20px;
    font-style: italic;
}

.hero-cta {
    margin-top: 9rem;
    text-align: center;
    position: absolute;
    left: 85%;
    transform: translateX(-50%);
}

.btn-green {
    display: inline-block;
    background: #12c000;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(18, 192, 0, 0.6), 0 0 35px rgba(255, 255, 255, 1), 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-green:hover {
    background: #12c000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 224, 0, 0.6);
    text-shadow: 0 0 10px rgba(22, 224, 0, 0.5);
}

.btn-green.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

/* Welcome Section */
.welcome-section {
    padding: 20px 0 40px 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.05) -659px,
            rgba(255, 255, 255, 0.05) -179px,
            transparent -179px,
            transparent 301px
        ),
        linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    text-align: center;
    color: white;
    position: relative;
}

/* Algemene compact spacing voor alle kopteksten */
h1, h2, h3, h4, h5, h6,
.main-title, .welcome-content h2, .welcome-content h3,
.section-title, .service-content h3, .title-line {
    letter-spacing: -0.5px !important;
    word-spacing: -2px !important;
}

.welcome-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: -0.8rem;
    margin-top: 3rem;
    font-weight: 700;
}

.welcome-content h3 {
    font-size: 1.5rem;
    color: #16e000;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -1px !important;
    word-spacing: -4px !important;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    letter-spacing: -0.1px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.lead-text:last-child {
    margin-bottom: 0;
}

/* Statistics Section */
.statistics-visual {
    margin-top: 2rem;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-card.green-bordered {
    border-color: #16e000;
    box-shadow: 0 4px 15px rgba(22, 224, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.stat-card.green-bordered:hover {
    box-shadow: 0 8px 25px rgba(22, 224, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #16e000;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
    line-height: 1.2;
}

/* Video & Text Section */
.video-text-section {
    padding: 60px 0 40px 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.05) -2050px,
            rgba(255, 255, 255, 0.05) -1570px,
            transparent -1570px,
            transparent -1090px
        ),
        linear-gradient(135deg, #000000 0%, #000000 100%);
    color: white;
    position: relative;
}

.video-text-content {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 0;
    padding-left: 2rem;
    min-height: 450px;
}

.video-container {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.video-logo {
    width: 700px;
    height: auto;
    margin-bottom: 4rem;
    margin-top: -4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button:hover {
    transform: translateX(-50%) scale(1.1);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-container h3 {
    font-size: 2rem;
    color: #16e000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.benefits-text-container {
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border: 2px solid #16e000;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefits-text-container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(22, 224, 0, 0.3);
    border-color: #16e000;
}

.benefits-text-container h3 {
    font-size: 1.3rem;
    color: #16e000;
    margin-bottom: 0.2rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.benefits-text-container h3 .white-text {
    color: white;
}

.benefits-text-container h4.green-text {
    text-align: center;
    margin-bottom: 1.2rem;
    margin-top: 0;
}

.benefits-text-container p {
    font-size: 1rem;
    line-height: 1.4;
    color: #cccccc;
    margin-bottom: 0.4rem;
    text-align: left;
}

.benefit-block {
    margin-bottom: 0.2rem;
}

.benefit-block:nth-child(4),
.benefit-block:nth-child(5),
.benefit-block:nth-child(6) {
    margin-top: 1rem;
}

.benefit-block h4 {
    font-size: 1rem;
    color: #16e000;
    font-weight: 600;
    margin-bottom: 0.02rem;
    line-height: 1.0;
}

.benefit-block p {
    font-size: 0.95rem;
    line-height: 1.2;
    color: #cccccc;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .video-text-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Section Styling */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 480px,
            transparent 480px,
            transparent 960px
        ),
        linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #16e000;
    color: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.3);
    border-color: #16e000;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #16e000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: white;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.05) -2250px,
            rgba(255, 255, 255, 0.05) -1770px,
            transparent -1770px,
            transparent -1290px
        );
    background-size: 95.5%;
    background-position: 675px 0;
    z-index: 1;
    pointer-events: none;
}

.section-title {
    margin-bottom: -0.5rem !important;
    margin-top: 1rem !important;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.green-text {
    color: #16e000 !important;
}

.white-text {
    color: white !important;
}

.section-title {
    margin-bottom: -1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.green-text {
    color: #16e000;
}

.white-text {
    color: white;
}

/* Process Button Container */
.process-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

/* Steps Carousel */
.steps-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 50;
}

.steps-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 400px;
    z-index: 2;
}

.steps-wrapper {
    display: flex;
    gap: 0.8rem;
    transition: transform 0.5s ease;
    height: 400px;
    align-items: flex-start;
}

.process-steps {
    display: flex;
    gap: 1rem;
}

/* Step Navigation Buttons */
.step-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff0000 !important; /* RED for testing */
    border: 3px solid #16e000 !important; /* ORANGE border for testing */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 9999 !important;
    pointer-events: auto !important;
    outline: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.8) !important;
}

.step-nav-prev {
    left: 10px;
}

.step-nav-next {
    right: 10px;
}

.step-nav-btn:hover {
    background: #16e000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.6);
}

.step-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.step-nav-btn:disabled:hover {
    background: rgba(22, 224, 0, 0.9);
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(255, 89, 0, 0.4);
}

.step-card-small {
    width: 250px;
    flex-shrink: 0;
}

.step-card {
    background: transparent;
    width: 100%;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.step-card:hover .step-card-inner {
    transform: rotateY(180deg);
}

.step-card-small {
    width: 340px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
}

.step-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    z-index: 21;
}

.step-card.flipped .step-card-inner {
    transform: rotateY(180deg);
}

.step-card-front, .step-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    border: 3px solid #16e000;
    box-shadow: 0 8px 30px rgba(22, 224, 0, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}

.step-card-front {
    background: #1a1a1a;
}

.step-card-back {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

.big-arrow-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 30;
}

.big-arrow-to-next {
    font-size: 4rem;
    color: #16e000;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: pulse-arrow 1.5s infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 15px #16e000);
    line-height: 1;
    transform: rotate(0deg);
    text-stroke: 2px #16e000;
    -webkit-text-stroke: 2px #16e000;
}

@keyframes pulse-arrow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.step-card.flipped ~ .step-card:not(.flipped) {
    animation: invite-next 2s infinite;
}

@keyframes invite-next {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(22, 224, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(22, 224, 0, 0.4);
    }
}

.step-card.invited {
    animation: invite-pulse 1.5s infinite;
}

@keyframes invite-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(22, 224, 0, 0.3);
        border: 3px solid #16e000;
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 50px rgba(22, 224, 0, 0.6);
        border: 3px solid #16e000;
    }
}

.step-card.invited .step-card-front,
.step-card.invited .step-card-back {
    border: 3px solid #16e000;
    box-shadow: 0 8px 30px rgba(22, 224, 0, 0.4);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.step-card.flipped .step-image {
    filter: brightness(0.9);
}

/* Next step highlight effect */
.step-card.next-highlight {
    animation: next-step-glow 2s ease-in-out infinite;
}

@keyframes next-step-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(22, 224, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(22, 224, 0, 0.8);
        transform: scale(1.02);
    }
}

.step-card.next-highlight .step-card-front {
    border-color: #16e000;
    box-shadow: 0 8px 30px rgba(22, 224, 0, 0.5);
}

.step-card.next-highlight .step-number-overlay {
    animation: number-pulse 1.5s ease-in-out infinite;
}

@keyframes number-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 89, 0, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(22, 224, 0, 1);
    }
}

.step-number-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16e000 0%, #12c000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.6);
    border: 4px solid white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.step-title-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hover-indicator {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    background: rgba(22, 224, 0, 0.9);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        background: rgba(22, 224, 0, 0.9);
        box-shadow: 0 0 10px rgba(22, 224, 0, 0.5);
    }
    50% {
        background: rgba(22, 224, 0, 1);
        box-shadow: 0 0 20px rgba(22, 224, 0, 0.8);
    }
}

.step-card-back h3 {
    font-size: 1.5rem;
    color: #16e000;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.step-card-back p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 10px 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -835px,
            rgba(255, 255, 255, 0.03) -355px,
            transparent -355px,
            transparent 125px
        ),
        linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: white;
}

/* Gradient Section */
.gradient-section {
    padding: 50px 0 20px 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.5) 60%),
        linear-gradient(to right, #000000 0%, #000000 15%, #000000 60%, #000000 100%);
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    overflow: hidden;
    color: #cccccc;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 15%);
    z-index: 1;
}

.gradient-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 1rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
}

.gradient-text {
    width: 90% !important;
    padding-right: 1rem;
}

.gradient-title {
    font-size: 1.7rem;
    color: #16e000;
    margin-bottom: 1rem;
    margin-top: -1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.gradient-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gradient-list {
    margin-bottom: 2rem;
}

.gradient-item {
    margin-bottom: 0.5rem;
}

.gradient-item p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding-left: 2rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.gradient-item p::before {
    content: "✓";
    color: #16e000;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.gradient-footer {
    border-top: 2px solid #16e000;
    padding-top: 1rem;
}

.gradient-brand {
    font-size: 1.5rem;
    color: #16e000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gradient-location {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.gradient-image {
    width: 40% !important;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 0;
    padding-right: 0;
    position: relative;
    top: 14rem;
    left: 1rem;
    overflow: visible;
    max-width: calc(100vw + 15rem);
}

.rounded-image {
    width: 150%;
    max-width: 1500px;
    height: 200px;
    border-radius: 100% 0px 0px 0px;
    border: 3px solid #16e000;
    box-shadow: 
        0 0 20px rgba(22, 224, 0, 0.6), 
        0 0 40px rgba(22, 224, 0, 0.4),
        0 0 60px rgba(22, 224, 0, 0.3),
        0 0 80px rgba(22, 224, 0, 0.2);
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.05);
}

/* Desktop: Use original styling from backup */
@media (min-width: 769px) {
    /* Reset any page-specific overrides for desktop CTA */
    .online-coaching-page .cta-section {
        background: 
            linear-gradient(135deg, rgba(58, 58, 58, 0.6) 20%, rgba(58, 58, 58, 0.5) 60%),
            linear-gradient(to right, #16e000 0%, #16e000 15%, #333333 60%, #333333 100%) !important;
        padding: 60px 0 !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: repeat-x !important;
        text-align: center !important;
        position: relative !important;
        overflow: hidden !important;
        color: #cccccc !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Reset gradient section to original desktop layout */
    .gradient-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
        gap: 2rem !important;
        position: relative !important;
        z-index: 2 !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .gradient-text {
        width: 33.33% !important;
        padding-right: 2rem !important;
    }
    
    .gradient-image {
        width: 66.66% !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        padding-bottom: 0 !important;
        padding-right: 0 !important;
        position: relative !important;
        top: 1rem !important;
        left: 9rem !important;
        overflow: hidden !important;
        max-width: calc(100vw - 9rem) !important;
    }
    
    .rounded-image {
        width: 100% !important;
        max-width: 800px !important;
        height: 525px !important;
        border-radius: 100% 0px 0px 0px !important;
        border: 3px solid #16e000 !important;
        box-shadow: 
            0 0 20px rgba(22, 224, 0, 0.6), 
            0 0 40px rgba(22, 224, 0, 0.4),
            0 0 60px rgba(22, 224, 0, 0.3),
            0 0 80px rgba(22, 224, 0, 0.2) !important;
        object-fit: cover !important;
        object-position: center !important;
        transition: transform 0.3s ease !important;
    }
}

@media (max-width: 768px) {
    .cta-section {
        display: none !important;
    }
    
    /* Clean mobile footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .footer-section {
        padding: 1rem 0 !important;
    }
    
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
        color: #16e000 !important;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-main-logo-img {
        max-height: 80px !important;
        margin: 0 auto 1rem auto !important;
        display: block !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: 0.8rem !important;
        text-align: center !important;
        padding: 1rem 0 !important;
        font-size: 0.8rem !important;
    }
    
    .footer-map {
        margin: 1rem 0 !important;
    }
    
    .footer-map iframe {
        width: 100% !important;
        max-width: 300px !important;
        height: 200px !important;
    }
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.about-btn {
    background: #16e000;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 89, 0, 0.4);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.about-btn:hover {
    background: #12c000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.6);
}

/* Pricing Cards Layout */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    flex-wrap: wrap;
}

.design-1, .design-2, .design-3 {
    margin-bottom: 3rem;
}

/* Common Card Styles */
.pricing-card {
    width: 320px;
    min-height: 500px;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: white;
}

.card-logo {
    margin-bottom: 0;
    margin-top: -10px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-logo img {
    height: 240px;
    width: auto;
}

.card-header {
    text-align: center;
}

.card-header h3 {
    font-size: 1.8rem;
    color: #16e000;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    color: white;
    font-size: 0.5rem;
    margin-bottom: 0.2rem;
    margin-top: -0.2rem;
    margin-left: 0;
    line-height: 1;
    background: transparent;
    padding: 0.15rem 0.3rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: left;
    display: inline-block;
    width: fit-content;
}

.price {
    font-size: 0.7rem;
    font-weight: 600;
    color: #16e000;
    margin-bottom: 4.5rem;
    margin-top: -0.3rem;
    line-height: 1;
    transition: none;
    opacity: 0.8;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-align: left;
}

.card-features li {
    padding: 0.8rem 1rem;
    color: #ffffff;
    position: relative;
    padding-left: 4rem;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-features li:nth-child(odd) {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5900;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 5px rgba(255, 89, 0, 0.8);
}

.sub-text {
    font-size: 0.9rem;
    color: #ffffff;
    font-style: italic;
    font-weight: 400;
}

.btn-pricing {
    display: block;
    background: #16e000;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: #12c000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 224, 0, 0.4);
}

/* Design 1: Clean Minimalist */
.modern-card {
    background: white;
    color: #333;
    border: 3px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

.modern-card:hover {
    transform: translateY(-35px) scale(1.35);
    box-shadow: 
        0 60px 120px rgba(22, 224, 0, 0.9),
        0 0 100px rgba(22, 224, 0, 1),
        inset 0 0 60px rgba(22, 224, 0, 0.4);
    border-color: #16e000;
    border-width: 5px;
    z-index: 999;
}

.modern-card:hover .price {
    font-size: 2rem;
    text-shadow: none;
}

.modern-card .card-header h3 {
    color: #333;
    font-size: 2.2rem;
}

.modern-card .price {
    color: #16e000;
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.2rem;
}

.modern-card .price-period {
    color: #ffffff;
    font-size: 0.8rem;
    text-align: left;
    margin-left: 0;
}

.modern-card .card-features li {
    color: #ffffff !important;
}

.cancellation-text {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    font-weight: normal;
}

.modern-card .card-features li::before {
    color: #16e000;
}

.modern-card.featured {
    transform: scale(1.05);
    border: 3px solid #16e000;
    box-shadow: 0 15px 40px rgba(22, 224, 0, 0.3);
    position: relative;
}

.modern-card.featured .featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #16e000;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 89, 0, 0.4);
}

/* Metal Color Titles */
.bronze-title {
    color: #CD7F32 !important;
    text-shadow: 0 2px 4px rgba(205, 127, 50, 0.3);
}

.silver-title {
    color: #C0C0C0 !important;
    text-shadow: 0 2px 4px rgba(192, 192, 192, 0.3);
}

.gold-title {
    color: #FFD700 !important;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Design 2: Neon Cyberpunk */
.glass-card {
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 100%);
    border: 2px solid #16e000;
    border-radius: 0;
    box-shadow: 
        0 0 20px #16e000,
        inset 0 0 20px rgba(22, 224, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #16e000, #16e000, #16e000);
    border-radius: 0;
    z-index: -1;
    animation: neon-pulse 2s infinite;
}

@keyframes neon-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.glass-card:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px #16e000,
        0 0 50px rgba(22, 224, 0, 0.3);
}

.glass-card .card-header h3 {
    color: #16e000;
    text-shadow: 0 0 10px #16e000;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.glass-card .price {
    color: #16e000;
    text-shadow: 0 0 15px #16e000;
    font-family: 'Inter', sans-serif;
}

/* Design 3: Luxury Premium */
.gradient-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    border: 1px solid #gold;
    border-image: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700) 1;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.gradient-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: luxury-shine 3s infinite;
}

@keyframes luxury-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gradient-card:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.gradient-card .card-header h3 {
    color: #ffd700;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-card .price {
    color: #ffd700;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-card .card-features li::before {
    color: #ffd700;
    content: '◆';
}

.gradient-card .btn-pricing {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: 2px solid #ffd700;
    font-weight: 800;
}

.gradient-card.featured {
    transform: scale(1.05);
    border: 2px solid #ffd700;
    position: relative;
}

.gradient-card.featured .featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.pricing-card {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #16e000;
    position: relative;
    transition: all 0.3s ease;
    color: white;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.3);
    border-color: #16e000;
}

.pricing-card.featured {
    border-color: #16e000;
    transform: none;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #16e000;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.8rem;
    color: #16e000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16e000;
    margin-bottom: 0.2rem;
}

.price-period {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.card-features li {
    padding: 0.4rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff5900;
    font-weight: bold;
}

.btn-primary, .btn-outline {
    display: block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #16e000;
    color: white;
    border: 2px solid #16e000;
}

.btn-primary:hover {
    background: #12c000;
    border-color: #12c000;
}

.btn-outline {
    background: transparent;
    color: #16e000;
    border: 2px solid #16e000;
}

.btn-outline:hover {
    background: #16e000;
    color: white;
}

/* Goals Section */
.goals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-item {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #16e000;
    transition: all 0.3s ease;
    color: white;
}

.goal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.3);
    border-color: #16e000;
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.goal-item h3 {
    font-size: 1.1rem;
    color: #16e000;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.goal-item p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Two Column Section */
.two-column-section {
    padding: 0;
    background: transparent;
    position: relative;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.image-column {
    background: #1a1a1a;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.text-column {
    background: #16e000;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Scheidingslijn */
.text-column::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #333333;
    z-index: 2;
}

.text-column .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #cccccc;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bullet-point {
    width: 12px;
    height: 12px;
    background: #333333;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.bullet-item p {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.triangular-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
    overflow: hidden;
}

.triangular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

@media (max-width: 768px) {
    .two-column-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .image-column {
        min-height: 300px;
    }
    
    .triangular-image {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 70%);
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #16e000 100%);
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #16e000;
}

.contact-details p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.contact-details a {
    color: #16e000;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.benefits-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}


.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}


.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-tier {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-tier.featured {
    border-color: #007acc;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 122, 204, 0.2);
}

.pricing-tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tier-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.tier-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #007acc;
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.tier-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
}

.tier-cta {
    display: block;
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tier-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

.goals-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.goal-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.goal-item p {
    color: #666;
    line-height: 1.6;
}

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007acc;
}

.cta-note {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive adjustments for Personal Training page */
@media (max-width: 768px) {
    .personal-training-hero {
        height: 70vh;
        min-height: 500px;
        background-position: 15% 0% !important;
    }
    
    .title-line {
        font-size: 4rem;
        line-height: 0.9;
    }
    
    .corner-text-green {
        bottom: 60px;
        left: 20px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 20px;
        margin-left: 5%;
        text-align: left;
    }
    
    .benefits-grid,
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .welcome-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 3rem;
    }
    
    .corner-text-green {
        font-size: 0.9rem;
        bottom: 40px;
        left: 15px;
    }
    
    .btn-green {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
    .main-title {
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .welcome-content h2 {
        font-size: 1.8rem;
    }
    
    .welcome-content h3 {
        font-size: 1.2rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid,
    .goals-grid {
        gap: 1rem;
    }
    
    .benefit-card,
    .goal-item {
        padding: 1.5rem;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-map iframe {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
}

/* Animated Arrows for Step Cards */
.next-step-arrow {
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: #16e000;
    animation: none;
    cursor: pointer;
    filter: drop-shadow(0 0 5px #16e000);
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.6;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.next-step-arrow:hover {
    animation: bounce-next-arrow 1s infinite;
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px #16e000);
}


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