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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #059669;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-brand img {
    height: 52px;
    width: auto;
    display: block;
    transition: transform 0.25s ease;
}

.nav-brand:hover img {
    transform: scale(1.03);
}

.brand-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.2px;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../public/img/westfield-hero.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(16,185,129,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(5,150,105,0.2) 0%, transparent 50%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 30%),
        radial-gradient(circle, rgba(52,211,153,0.1) 0%, transparent 40%);
    animation: heroFloat 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, 5%) rotate(120deg); }
    66% { transform: translate(-5%, 3%) rotate(240deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    display: inline-block;
    border: 1.5px solid transparent;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.btn-secondary {
    background: rgba(16,185,129,0.08);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Global Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: block;
    visibility: visible;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: block;
    visibility: visible;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    display: block;
    visibility: visible;
}

.btn-full {
    width: 100%;
}


/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 5.5rem 0;
    background: #fafafa;
    position: relative;
    z-index: 3;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16,185,129,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16,185,129,0.015) 0%, transparent 50%);
    pointer-events: none;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.features .section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16,185,129,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(16,185,129,0.12);
    border-color: rgba(16,185,129,0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    margin-bottom: 1.25rem;
}

.feature-icon {
    background: var(--gradient-green);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto;
    color: var(--white);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(16,185,129,0.2);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 28px rgba(16,185,129,0.28);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Transmission Type Section */
.transmission-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

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

.transmission-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    text-align: center;
}

.transmission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.transmission-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transmission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.transmission-icon svg {
    width: 40px;
    height: 40px;
}

.transmission-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.transmission-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transmission-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
}

.transmission-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.transmission-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.transmission-card .btn {
    width: 100%;
    justify-content: center;
}

.transmission-note {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.transmission-note svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.transmission-note p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.transmission-note strong {
    color: var(--secondary-color);
}

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

    .transmission-card {
        padding: 2.5rem 2rem;
    }

    .transmission-note {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
}

/* Contact Action Section */
.contact-action {
    padding: 5.5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(16,185,129,0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16,185,129,0.025) 0%, transparent 50%);
    pointer-events: none;
}

.contact-action .container {
    position: relative;
    z-index: 1;
}

.contact-action .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-action .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.contact-action .section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.single-action-container {
    max-width: 900px;
    margin: 0 auto;
}

.action-card-full {
    max-width: 100%;
}

.action-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16,185,129,0.1);
    display: flex;
    flex-direction: column;
}

.action-card:hover {
    box-shadow: 0 12px 40px rgba(16,185,129,0.15);
    border-color: rgba(16,185,129,0.25);
}

.action-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover .action-image img {
    transform: scale(1.08);
}

.action-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(16,185,129,0.15) 100%);
}

.action-content {
    padding: 2.25rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.action-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(16,185,129,0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.action-card:hover .action-icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 28px rgba(16,185,129,0.35);
}

.action-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.action-content > p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
}

.action-info {
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.phone-number {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.25s ease;
}

.phone-number:hover {
    color: var(--accent-color);
}

.availability {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.info-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.action-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* Safety Section */
.safety {
    padding: 6rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.safety-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px);
}

.safety-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(16,185,129,0.025) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(16,185,129,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.safety .container {
    position: relative;
    z-index: 1;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(16,185,129,0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.safety-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.safety-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.safety-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.safety-feature-item:hover {
    background: rgba(16,185,129,0.05);
    transform: translateX(8px);
}

.safety-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(16,185,129,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.safety-feature-item:hover .safety-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16,185,129,0.3);
}

.safety-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.safety-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.safety-feature-item p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.safety-cta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.safety-cta-note {
    color: #6b7280;
    font-size: 0.925rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safety-cta-note::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.safety-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specifieke styling voor lesauto foto - zorgt voor professionele weergave */
.vision-car-image {
    object-fit: cover;
    object-position: center center;
    min-height: 400px;
    max-height: 550px;
}

.safety:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, rgba(16,185,129,0.1) 100%);
    pointer-events: none;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-green);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--gradient-green);
    border-radius: 50%;
    opacity: 0.08;
    z-index: -1;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.cta-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px);
}

.cta-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.cta-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    top: -100px;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

.cta-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52,211,153,0.4) 0%, transparent 70%);
    bottom: -100px;
    right: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    color: var(--white);
}

.cta-icon-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-icon-badge svg {
    width: 36px;
    height: 36px;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn .btn-text {
    position: relative;
    z-index: 1;
}

.cta-btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.cta-feature:hover .cta-feature-icon {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.cta-feature-icon svg {
    width: 26px;
    height: 26px;
}

.cta-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-info-item svg {
    width: 20px;
    height: 20px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Message Styling */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo svg {
    height: 50px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-menu li a:hover::before {
    width: 100%;
}

.footer-info {
    list-style: none;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-info li svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.footer-info li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info li a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

.footer-links-bottom a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Responsive Styles - Mobile First Approach */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .action-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .safety-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .safety-image {
        order: -1;
    }

    .image-wrapper {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    /* Contact Page - Completely Responsive */
    .contact-section {
        padding: 3rem 0 !important;
        display: block !important;
        visibility: visible !important;
        min-height: auto !important;
    }

    .section-header {
        display: block !important;
        visibility: visible !important;
        margin-bottom: 2rem !important;
    }

    .section-title {
        display: block !important;
        visibility: visible !important;
        font-size: 2rem !important;
    }

    .section-subtitle {
        display: block !important;
        visibility: visible !important;
    }

    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: grid !important;
        visibility: visible !important;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem 1.5rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 1.75rem !important;
        display: block !important;
        visibility: visible !important;
    }

    /* Ensure form is visible */
    .contact-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Contact Info Items stacked vertically */
    .contact-info-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 1.25rem 0 !important;
        display: flex !important;
        visibility: visible !important;
    }

    .contact-info-icon {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        visibility: visible !important;
    }

    .contact-info-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .contact-info-content {
        display: block !important;
        visibility: visible !important;
    }

    .contact-info-content h4 {
        font-size: 1rem !important;
    }

    .contact-info-content p {
        font-size: 0.95rem !important;
    }

    /* Form styling for mobile - ENSURE VISIBILITY */
    .form-group {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
    }

    .form-group label {
        display: block !important;
        visibility: visible !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem 1rem !important;
        font-size: 1rem !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        opacity: 1 !important;
    }

    .form-submit {
        display: block !important;
        visibility: visible !important;
    }

    .form-submit button {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
    }

    /* Action Card for mobile */
    .single-action-container {
        margin-top: 2rem !important;
    }

    .action-card {
        margin: 0;
    }

    .action-image {
        height: 220px;
    }

    .action-content {
        padding: 1.75rem 1.5rem 2rem;
    }

    .action-content h3 {
        font-size: 1.35rem;
    }

    .action-content > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .action-info {
        margin: 1.25rem 0;
    }

    .info-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        gap: 0.6rem;
    }

    .info-item svg {
        width: 18px;
        height: 18px;
    }

    /* Action buttons stack vertically on mobile */
    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .action-buttons .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* CTA Section mobile */
    .cta-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-primary-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
    }
}

/* Tablet and Small Desktop */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .action-buttons {
        flex-direction: column;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 2.5rem 0;
        display: block !important;
        visibility: visible !important;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        display: block !important;
        visibility: visible !important;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem 0;
        display: flex !important;
        visibility: visible !important;
    }

    .form-group {
        display: flex !important;
        flex-direction: column;
        visibility: visible !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
        display: block !important;
        visibility: visible !important;
        width: 100%;
        opacity: 1 !important;
    }

    .form-group label {
        font-size: 0.9rem;
        display: block !important;
        visibility: visible !important;
    }

    .form-group textarea {
        min-height: 130px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Action card extra small screens */
    .action-image {
        height: 200px;
    }

    .action-content {
        padding: 1.5rem 1.25rem 1.75rem;
    }

    .action-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .action-content > p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .action-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .action-icon svg {
        width: 24px;
        height: 24px;
    }

    .info-item {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .action-buttons .btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    /* CTA features grid smaller */
    .cta-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }
}

/* Hero Small Variant */
.hero-small {
    min-height: 50vh;
    height: 50vh;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.pricing-card-featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.pricing-icon svg {
    width: 30px;
    height: 30px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
}

.pricing-savings {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Multi-price layout for losse lessen */
.pricing-multi {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-row .price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-row .price-period {
    color: var(--text-light);
    font-size: 1rem;
}

.price-divider {
    height: 1px;
    background: #e5e7eb;
    width: 60%;
    margin: 0.25rem auto;
}

/* Extra Services */
.extra-services {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    text-align: center;
}

.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
    display: block;
    visibility: visible;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    /* Zorg dat kolommen niet in de hoogte uitrekken zodat contact-info echt stopt onder Openingstijden */
    align-items: start;
    visibility: visible;
}

.contact-info {
    background: var(--white);
    /* Extra bodemruimte toegevoegd voor professionelere look */
    padding: 3rem; 
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: block;
    /* Forceer dat deze kolom niet meerekt met het formulier aan de rechterkant */
    align-self: start;
    visibility: visible;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: block;
    visibility: visible;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    visibility: visible;
}

.contact-info-item:last-child {
    border-bottom: none; /* Laatste item zonder lijn, behoudt standaard padding voor optisch lucht */
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    visibility: visible;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    display: block;
    visibility: visible;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: block;
    visibility: visible;
}

.contact-info-content p {
    color: var(--text-light);
    margin: 0;
    display: block;
    visibility: visible;
}

.contact-info-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: block;
    visibility: visible;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: block;
    visibility: visible;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    visibility: visible;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    visibility: visible;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    display: block;
    visibility: visible;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1f2937;
    display: block;
    visibility: visible;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group select {
    color: #6b7280;
}

.form-group select option {
    color: #1f2937;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: #ffffff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: auto;
    padding-top: 2rem;
    display: block;
    visibility: visible;
}

.form-submit button {
    display: block;
    visibility: visible;
    width: 100%;
}

.contact-map {
    margin-top: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.contact-map h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* FAQ Section Styles */
.faq-intro {
    padding: 5rem 0 4rem;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
}

.faq-intro .section-header {
    text-align: center;
    margin-bottom: 0;
}

.faq-intro .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.faq-intro .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    padding: 0 1rem;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--secondary-color);
}

.faq-intro .section-subtitle a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.faq-intro .section-subtitle a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.faq-section {
    padding: 3rem 0 6rem;
    background: var(--bg-light);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 968px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.faq-question span {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--secondary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding: 0 0 1rem 0;
}

.faq-answer p:last-child {
    padding-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-answer ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ============================================
   Terms and Conditions Styles
   ============================================ */

.terms-intro {
    padding: 5rem 0 3rem;
    background: var(--bg-light);
}

.terms-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-article {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.terms-article:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.article-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.article-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
    text-align: center;
}

.article-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    color: var(--white);
}

.article-icon svg {
    width: 28px;
    height: 28px;
}

.article-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.article-content {
    color: var(--text-light);
    line-height: 1.8;
}

.terms-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.terms-item:last-child {
    margin-bottom: 0;
}

.terms-number {
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 35px;
    font-size: 1rem;
    flex-shrink: 0;
}

.terms-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.sub-items {
    margin-top: 1rem;
    padding-left: 1rem;
}

.sub-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.sub-item:last-child {
    margin-bottom: 0;
}

.sub-number {
    font-weight: 600;
    color: var(--accent-color);
    min-width: 25px;
    flex-shrink: 0;
}

.sub-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.highlight-article {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.08));
    border: 2px solid var(--secondary-color);
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem;
}

.complaint-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.complaint-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.step-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.external-resources {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
}

.external-resources > p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.resource-link:hover {
    border-color: var(--secondary-color);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.resource-link svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
}

.final-note {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    margin: 0;
}

/* Contact Grid for Terms Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.1);
    box-shadow: var(--shadow-md);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

/* Terms Responsive */
@media (max-width: 768px) {
    .terms-intro,
    .terms-section {
        padding: 3rem 0;
    }

    .terms-article {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .terms-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .terms-number {
        min-width: auto;
    }

    .sub-items {
        padding-left: 0.5rem;
    }

    .complaint-step {
        gap: 1rem;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .external-resources {
        padding: 1.5rem;
    }

    .resource-link {
        padding: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    color: white;
    font-size: 15px;
    font-weight: 500;
    z-index: 10000;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    line-height: 1.5;
}

.notification.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-left: 4px solid #047857;
}

.notification.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-left: 4px solid #b91c1c;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 12px;
    pointer-events: none;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Button disabled state */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        top: 80px;
    }
}

/* ============================================
   Enhanced Contact Form Styles
   ============================================ */

.form-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-group label svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

.form-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

.form-hint svg {
    width: 16px;
    height: 16px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 2px solid #f3f4f6;
}

.form-footer svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.form-footer p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-submit .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit .btn-text svg {
    width: 20px;
    height: 20px;
}

.btn-submit .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Form Message Enhancement */
.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    animation: slideDown 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-message::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.form-message.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left: 4px solid #10b981;
}

.form-message.success::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.form-message.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.form-message.error::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input animations and enhancements */
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown),
.form-group select:not([value=""]) {
    border-color: #10b981;
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #ef4444;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

/* Select styling - no custom arrows */
.form-group select {
    cursor: pointer;
}

/* Enhanced button hover effects */
.btn-submit:hover:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-submit:active:not([disabled]) {
    transform: translateY(0);
}

/* Loading state for button */
.btn-submit[disabled] {
    cursor: not-allowed;
    opacity: 0.8;
}

/* Error message styling */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message:not(:empty) {
    display: block;
}

/* Field error state */
[data-field].has-error input,
[data-field].has-error textarea,
[data-field].has-error select {
    border-color: #ef4444 !important;
}

[data-field].has-error input:focus,
[data-field].has-error textarea:focus,
[data-field].has-error select:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success message banner */
.form-message-success {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.35rem 1.75rem 1.5rem;
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 55%, #b7f7d9 100%);
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 28px -6px rgba(5,150,105,0.28);
    animation: successPop 0.45s cubic-bezier(.25,.8,.25,1);
    overflow: hidden;
}

.form-message-success::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 25%, rgba(16,185,129,0.25) 0%, transparent 60%),
                radial-gradient(circle at 85% 70%, rgba(16,185,129,0.18) 0%, transparent 65%);
    opacity: 0.25;
    pointer-events: none;
}

.form-success-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.form-success-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg,#10b981,#059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(16,185,129,0.35);
    color: #fff;
}

.form-success-icon svg { width: 24px; height: 24px; }

.form-success-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: .3px;
}

.form-success-text { margin: 0; font-size: .95rem; line-height: 1.55; }

@keyframes successPop {
    0% { transform: translateY(-12px) scale(.95); opacity: 0; }
    60% { transform: translateY(2px) scale(1.02); }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Checkbox styling for privacy */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    margin: 0;
}

.form-group-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-group-checkbox a:hover {
    color: var(--primary-dark);
}

/* Message counter */
#message-count {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive form adjustments */
@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-intro {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-message {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .form-message-success {
        padding: 1rem;
        font-size: 0.9rem;
    }
}


