/* ========================================
   JOBFUTURE - SOFT LUXURY AESTHETIC
   Modern, Organic, Premium
   ======================================== */

/* === CSS Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === CSS Variables === */
:root {
    /* JobFuture Brand Colors */
    --color-primary: #8B3F9F;
    --color-primary-light: #A65BB8;
    --color-primary-dark: #6B2D7E;
    --color-secondary: #F9A825;
    --color-secondary-light: #FFC107;
    --color-accent: #8BC34A;
    --color-accent-2: #7CB342;
    
    /* Neutrals */
    --color-bg: #FEFBF6;
    --color-bg-alt: #FFF;
    --color-text: #2D3748;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B3F9F 0%, #F9A825 100%);
    --gradient-soft: linear-gradient(135deg, #A65BB8 0%, #FFC107 50%, #8BC34A 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(139, 63, 159, 0.1) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(139, 63, 159, 0.12);
    --shadow-medium: 0 20px 60px rgba(139, 63, 159, 0.15);
    --shadow-strong: 0 30px 80px rgba(139, 63, 159, 0.2);
    --shadow-glow: 0 0 40px rgba(139, 63, 159, 0.3);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 999px;
}

/* === Base Styles === */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }

p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(254, 251, 246, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 63, 159, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-logo img {
    height: 42px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 63, 159, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
        border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease backwards;
}

.hero-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 63, 159, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 0;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.card-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.6;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--color-text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.btn-white {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-soft);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* === Waarom Section === */
.waarom {
    padding: var(--space-2xl) 0;
}

.waarom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.waarom-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 63, 159, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.waarom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.waarom-card:hover::before {
    transform: scaleX(1);
}

.waarom-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.waarom-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.waarom-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.waarom-card p {
    font-size: 1rem;
}

/* === Diensten Section === */
.diensten {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 107, 157, 0.03) 100%);
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.dienst-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(249, 168, 37, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
}

.dienst-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dienst-card:hover::after {
    opacity: 1;
}

.dienst-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.dienst-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dienst-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.dienst-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.dienst-card h3 {
    font-size: 1.75rem;
}

.dienst-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.dienst-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(139, 63, 159, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* === Over Section === */
.over {
    padding: var(--space-2xl) 0;
}

.over-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.over-text h2 {
    margin-bottom: 1.5rem;
}

.over-text p {
    margin-bottom: 1.5rem;
}

.over-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.over-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.over-feature {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.over-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.over-feature p {
    margin: 0;
    font-size: 1rem;
}

.over-visual {
    position: relative;
}

.over-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(139, 63, 159, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.over-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* === FAQ Section === */
.faq {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, var(--color-bg) 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(249, 168, 37, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--color-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 2rem 2rem 2rem;
    color: var(--color-text-light);
}

.faq-answer ul {
    list-style: none;
    padding-left: 3rem;
}

.faq-answer li {
    position: relative;
    margin-bottom: 0.75rem;
}

.faq-answer li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--color-accent-2);
    font-weight: 700;
}

/* === CTA Section === */
.cta {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: 0;
}

.blob-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.2) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blob-5 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -10s;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Contact Section === */
.contact {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 63, 159, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--color-primary);
}

.contact-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(249, 168, 37, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(139, 63, 159, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(139, 63, 159, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* === Footer === */
.footer {
    background: var(--color-text);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .over-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .diensten-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .waarom-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* === Animations & Effects === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Smooth Transitions === */
* {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Selection === */
::selection {
    background: var(--color-primary-light);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}
/* ========================================
   IPHONE & MOBIEL VERBETERINGEN
   ======================================== */

/* Form status messages */
.form-status {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.form-status--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-status--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* iPhone-specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS momentum scrolling */
    html, body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix iOS input zoom (font-size must be >= 16px) */
    .form-group input,
    .form-group textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Fix iOS button styling */
    .btn {
        -webkit-appearance: none;
        cursor: pointer;
    }
    
    /* Fix backdrop-filter on older iOS */
    .nav {
        background: rgba(254, 251, 246, 0.96);
    }
}

/* Small phones: 390px and below (iPhone 12/13/14/15) */
@media (max-width: 430px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo img {
        height: 38px;
    }
    
    .nav-menu {
        top: 68px;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-tag {
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        justify-content: center;
        width: 100%;
    }
    
    /* Hide hero visual floating cards on very small screens */
    .hero-visual {
        height: 280px;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Scroll indicator hidden on mobile */
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .container {
        padding: 0 1rem;
    }
    
    .waarom, .diensten, .over, .cta, .contact {
        padding: 3.5rem 0;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
    
    /* Waarom cards */
    .waarom-card {
        padding: 1.5rem;
    }
    
    /* Diensten cards */
    .dienst-card {
        padding: 1.5rem;
max-width: 100% !important;
    }
    
    .dienst-features {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }
    
    /* Over section */
    .over-card {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* CTA section */
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        justify-content: center;
        width: 100%;
    }
    
    /* Contact */
    .contact-card {
        padding: 1rem 1.25rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
        word-break: break-all;
    }
    
    /* Form */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .btn-full {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        height: 36px;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Section tags */
    .section-tag {
        font-size: 0.75rem;
    }
    
    /* Stats */
    .over-stat .stat-number {
        font-size: 2rem;
    }
}

/* Very small phones: 360px and below */
@media (max-width: 360px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .hero-visual {
        display: none;
    }
    
    .contact-form {
        padding: 1rem;
    }
}

/* Fix touch targets — all interactive elements min 44px tall (Apple HIG) */
@media (max-width: 768px) {
    .nav-link,
    .btn,
    .nav-toggle,
    .contact-value a,
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .form-group input,
    .form-group textarea {
        min-height: 44px;
    }
    
    /* Prevent horizontal scroll from blobs */
    .hero-background,
    .cta-background {
        overflow: hidden;
    }
    
    /* Disable 3D tilt on touch devices (it misfires) */
    .dienst-card {
        transform: none !important;
    }
    
    /* Better tap highlight */
    a, button {
        -webkit-tap-highlight-color: rgba(139, 63, 159, 0.15);
    }
}
