/*
 * Ginkel Coaching - Premium Fitness Design System
 * Dark Metallic Gold Theme
 * Modern, Trustworthy, Premium
 */

/* ============================================
   CSS VARIABLES - DESIGN TOKENS
   ============================================ */
:root {
    /* Dark Metallic Gold Palette */
    --gold-dark: #9A7B0A;
    --gold-primary: #B8860B;
    --gold-metallic: #C9A227;
    --gold-light: #D4AF37;
    --gold-shine: #E6C200;
    --gold-accent: #FFD700;

    /* Metallic Gradient */
    --metallic-gold-gradient: linear-gradient(135deg, #9A7B0A 0%, #C9A227 25%, #D4AF37 50%, #C9A227 75%, #9A7B0A 100%);
    --metallic-gold-text: linear-gradient(180deg, #D4AF37 0%, #9A7B0A 100%);

    /* Performance Orange */
    --orange-primary: #FF9F1C;
    --orange-light: #FFB347;

    /* Bronze */
    --bronze-dark: #6B4D0A;
    --bronze-primary: #8C6A00;

    /* Neutrals */
    --black-pure: #000000;
    --black-rich: #0A0A0A;
    --black-soft: #111111;
    --gray-dark: #1A1A1A;
    --gray-medium: #2D2D2D;
    --gray-light: #444444;
    --gray-muted: #5F5F5F;
    --white-off: #F5F5F5;
    --white-pure: #FFFFFF;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #888888;
    --text-dark: #1A1A1A;

    /* Status Colors */
    --success: #2ECC71;
    --warning: #F4D03F;
    --danger: #E74C3C;

    /* Shadows & Effects */
    --shadow-gold: 0 0 20px rgba(201, 162, 39, 0.3);
    --shadow-gold-strong: 0 0 40px rgba(201, 162, 39, 0.5);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;

    /* Header Height */
    --header-height: 80px;
    --header-height-scrolled: 70px;
}

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--black-rich);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--gold-metallic);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold-shine);
}

/* Metallic Gold Text Effect */
.text-gold {
    background: var(--metallic-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold-solid {
    color: var(--gold-metallic);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-dark {
    background-color: var(--black-rich);
}

.section-darker {
    background-color: var(--black-pure);
}

.section-gradient {
    background: linear-gradient(180deg, var(--black-rich) 0%, var(--black-soft) 100%);
}

/* Section Heading */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Section header title row - badge and h2 inline */
.section-header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-header-title .hero-badge {
    margin-bottom: 0;
    margin-right: 0.5rem;
}

.section-header-title h2 {
    margin: 0;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--metallic-gold-gradient);
    border-radius: var(--radius-full);
}

/* Remove underline effect */
.section-header h2.no-underline::after {
    display: none;
}

.section-header p {
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============================================
   HEADER & NAVIGATION - Premium Design
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: 80px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 39, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 4rem;
}

/* Logo - Far Left */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-right: auto;
}

.navbar-logo {
    height: 75px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.4));
}

.navbar.scrolled .navbar-logo {
    height: 60px;
}

.navbar-logo:hover {
    filter: drop-shadow(0 0 25px rgba(201, 162, 39, 0.7));
    transform: scale(1.05);
}

/* Navigation Tabs - Clean, No Frame */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    margin: 0 auto;
    flex-grow: 0;
    justify-content: center;
}

.nav-item {
    position: relative;
    flex: none;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.875rem 1.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--metallic-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
}

/* Underline effect instead of ripple */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--metallic-gold-gradient);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active::after {
    width: 0;
}

.nav-link:hover {
    color: var(--gold-shine);
}

.nav-link.active {
    color: var(--black-rich);
}

.nav-link:hover::before {
    opacity: 0;
}

.nav-link.active::before {
    opacity: 1;
}

.nav-link.active {
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transform: scale(1.02);
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-link i {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    color: var(--gold-shine);
    transform: scale(1.1);
}

.nav-link.active i {
    color: var(--black-rich);
}

/* CTA Button in Navbar - Far Right */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold-metallic);
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Primary Button - Metallic Gold */
.btn-primary {
    background: var(--metallic-gold-gradient);
    color: var(--black-rich);
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    color: var(--black-rich);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Secondary Button - Outlined */
.btn-secondary {
    background: transparent;
    color: var(--gold-metallic);
    border: 2px solid var(--gold-metallic);
}

.btn-secondary:hover {
    background: var(--gold-metallic);
    color: var(--black-rich);
    box-shadow: var(--shadow-gold);
}

/* Icon Button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metallic-gold-gradient);
    opacity: 0;
    transition: var(--transition-fast);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.card:hover::before {
    opacity: 1;
}

/* Featured Card */
.card-featured {
    border-color: var(--gold-metallic);
    transform: scale(1.02);
}

.card-featured::before {
    opacity: 1;
}

.card-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

/* Card Icon */
.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--metallic-gold-gradient);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    color: var(--black-rich);
    transition: var(--transition-normal);
}

.card:hover .card-icon {
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--black-pure) 0%, var(--black-soft) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.50;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-lg);
    color: var(--gold-shine);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 1rem;
    animation: fadeInUp 0.8s ease, badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--gold-accent);
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    }
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    background: var(--metallic-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--metallic-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--gold-metallic);
}

/* ============================================
   SERVICES SECTION - Modern Cards
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.98));
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient border effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--metallic-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shine effect */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(201, 162, 39, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

/* Card Icon - Modern Design */
.service-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-xl);
    font-size: 2rem;
    color: var(--gold-shine);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card .card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--metallic-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card .card-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--gold-metallic);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

.service-card:hover .card-icon::before {
    opacity: 1;
}

.service-card:hover .card-icon i {
    color: var(--black-rich);
    transform: scale(1.1);
}

/* Card Title - Clear & Readable */
.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: var(--metallic-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Card Description - Readable */
.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-primary);
}

/* ============================================
   PACKAGES / PRICING SECTION
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    align-items: stretch;
    padding-top: 1.5rem;
}

.package-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.package-card.featured {
    border-color: var(--gold-metallic);
    position: relative;
    overflow: visible;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #E6AC00 50%, #FFD700 100%);
    color: var(--black-rich);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 4px 15px rgba(255, 215, 0, 0.5),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.package-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerSlide 2s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.package-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.package-price {
    margin-bottom: var(--space-lg);
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--gold-metallic);
}

.package-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--metallic-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.package-card .btn {
    width: 100%;
}

/* ============================================
   ABOUT / STORY SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 3px solid var(--gold-metallic);
    box-shadow: var(--shadow-gold);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--gold-metallic);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.about-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

/* Story Quote */
.story-quote {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border-left: 4px solid var(--gold-metallic);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    padding: var(--space-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--gold-metallic);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-metallic);
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-metallic);
}

.faq-question i {
    color: var(--gold-metallic);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--metallic-gold-gradient);
    border-radius: var(--radius-md);
    color: var(--black-rich);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-metallic);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black-pure) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-pure);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 70px;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    color: var(--gold-metallic);
    margin-bottom: var(--space-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold-metallic);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-md);
    color: var(--gold-metallic);
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--metallic-gold-gradient);
    color: var(--black-rich);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    flex: 1;
}

.newsletter-form .btn {
    padding: 0.875rem 1.25rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--gold-metallic);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius-full);
    color: var(--white-pure);
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: var(--white-pure);
}

/* ============================================
   PAGE HEADER (Sub Pages)
   ============================================ */
.page-header {
    padding: calc(var(--header-height) + var(--space-xxl) + 2rem) 0 var(--space-xxl);
    background: var(--black-pure);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.75) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-metallic), transparent);
    z-index: 2;
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--gold-metallic);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--gold-metallic);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    line-height: 1.8;
}

.legal-content ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: var(--shadow-gold);
    }

    50% {
        box-shadow: var(--shadow-gold-strong);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden;
    }

    .navbar {
        overflow: visible !important;
        height: 70px;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        height: 50px;
    }

    .navbar-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column !important;
        align-items: stretch !important;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        z-index: 999;
    }

    .navbar-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav .nav-item {
        display: block !important;
        width: 100% !important;
        flex: none !important;
    }

    .nav-link {
        display: flex;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: flex-start;
        text-align: left;
        border-radius: var(--radius-md);
        background: rgba(30, 30, 30, 0.5);
        border: 1px solid rgba(201, 162, 39, 0.1);
        margin-bottom: 0.25rem;
    }

    .nav-link:hover {
        background: rgba(201, 162, 39, 0.15);
        border-color: rgba(201, 162, 39, 0.3);
    }

    .nav-link.active {
        background: var(--metallic-gold-gradient);
        border-color: transparent;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-cta {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .hero-stat {
        flex: 1 1 40%;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-xl) 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

.mt-4 {
    margin-top: var(--space-xl);
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.mb-4 {
    margin-bottom: var(--space-xl);
}

.py-1 {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.py-2 {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.py-3 {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.py-4 {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: var(--space-sm);
}

.gap-2 {
    gap: var(--space-md);
}

.gap-3 {
    gap: var(--space-lg);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   GUIDANCE SECTION - Mijn Aanpak
   ============================================ */
.guidance-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.guidance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.guidance-content {
    position: relative;
    z-index: 1;
}

.guidance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-metallic) 0%, #e8c33a 100%);
    border-radius: 50px;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guidance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guidance-feature {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guidance-feature:hover {
    background: rgba(201, 162, 39, 0.2);
    transform: translateY(-5px);
}

.guidance-feature i {
    font-size: 2rem;
    color: var(--gold-metallic);
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   BACKGROUND MUSIC TOGGLE BUTTON
   ============================================ */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-metallic) 50%, var(--gold-light) 100%);
    color: var(--black-rich);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.6);
}

.music-toggle.playing {
    animation: musicPulse 1.5s ease-in-out infinite;
}

.music-toggle i {
    transition: transform 0.3s ease;
}

.music-toggle:hover i {
    transform: scale(1.1);
}

@keyframes musicPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(201, 162, 39, 0.8), 0 0 40px rgba(201, 162, 39, 0.4);
    }
}

/* Mobile adjustments for music button */
@media (max-width: 768px) {
    .music-toggle {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 1.1rem;
    }
}