    

/* =============================================
   ROOT VARIABLES
============================================= */
:root {
    /* Primary brand colors based on logo */
    --primary: #1e78c2; /* Bright blue from logo */
    --primary-dark: #15609e;
    --primary-light: #3a90d9;
    --secondary: #5f6368; /* Gray from logo */
    --secondary-dark: #444749;
    --secondary-light: #7a7e83;
    --light: #f8f9fa;
    --dark: #1e2b3a;
    --white: #ffffff;
    --gray-100: #f6f8fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-800: #343a40;
    
    /* Gradients */
    --accent-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --surface-gradient: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.05);
    --shadow-focus: 0 0 0 4px rgba(30,120,194,0.25);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 14px;
    --radius-full: 9999px;
    
    /* Layout */
    --nav-height: 80px;
}

/* =============================================
   BASE STYLES
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
	html, body {
	max-width:100vw;
overflow-x: hidden;	
	}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

p {
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1280px;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* =============================================
   UTILITIES
============================================= */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-light {
    background-color: var(--gray-100) !important;
}

.bg-gradient {
    background: var(--accent-gradient);
}

.section-title {
    margin-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title .subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title .title-decoration {
    position: relative;
    display: inline-block;
}

.section-title .title-decoration::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(0,119,192,0.1);
    z-index: -1;
    border-radius: var(--radius-sm);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.section-title.text-start p {
    margin-left: 0;
}

/* =============================================
   NAVIGATION STYLES
============================================= */
.navbar {
    padding: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.85); /* More transparent background */
    backdrop-filter: blur(8px); /* Increased blur effect */
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    padding: 0;
    margin-right: 40px;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

/* Nav Items & Links */
.navbar .navbar-nav {
    display: flex;
    align-items: center;
}

.navbar .nav-item {
    padding: 0 15px;
    position: relative;
    display: flex;
    align-items: center;
    height: var(--nav-height);
	
}

.navbar .nav-link {
    color: var(--dark);
    font-weight: 700!important;
    font-size: 0.95rem;
    position: relative;
    padding: 30px 0;
    transition: var(--transition-fast);
    /* Removed text-transform: uppercase */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
    border-radius: var(--radius-full);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 0; /* Changed from 100% to 0 to hide the indicator */
}

/* Dropdown Menu Styling */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-toggle::after {
    display: none; /* Hide the dropdown toggle arrow */
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    background: var(--white);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    /* Fixed dropdown position */
    left: 0;
    top: 100%;
    min-width: 220px;
    margin-top: 0;
}

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

.navbar .dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition-fast);
    border-left: 2px solid transparent;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: rgba(30,120,194,0.06);
    color: var(--primary);
    border-left: 2px solid var(--primary);
    padding-left: 23px;
}

/* Button Styling in Navbar */
.navbar .nav-buttons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

/* Emergency Call Button - Less dramatic */
.navbar .btn-emergency {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.15);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.navbar .btn-emergency:hover {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
    transform: translateY(-2px);
}

.navbar .btn-emergency i {
    margin-right: 5px;
}

/* Primary Button */
.navbar .btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(30,120,194,0.2);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.navbar .btn-primary:hover {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30,120,194,0.3);
    transform: translateY(-2px);
}

.navbar .btn-primary i {
    margin-right: 5px;
}

/* Mobile Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    display: block;
    position: absolute;
    transition: var(--transition-fast);
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    bottom: -6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        margin: 0 15px;
    }
    
    .navbar .nav-link {
        padding: 12px 0;
    }
    
    .navbar .nav-link::after {
        bottom: 8px;
    }
    
    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-bottom: 10px;
        border-left: 1px solid var(--primary-light);
    }
    
    .navbar .dropdown.show .dropdown-menu {
        display: block;
    }
    
    .navbar .nav-buttons {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        margin-top: 15px;
    }
    
    .navbar .btn-primary,
    .navbar .btn-emergency {
        margin: 5px 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .navbar .nav-item {
        height: auto;
    }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,119,192,0.25);
}

.btn-primary:hover, 
.btn-primary:focus {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0,119,192,0.35);
    transform: translateY(-2px);
}

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

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,119,192,0.25);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover,
.btn-light:focus {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-link {
    background: transparent;
    color: var(--primary);
    padding: 0;
    position: relative;
    font-weight: 600;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
    transform: scaleX(0);
    transform-origin: right;
}

.btn-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-icon i {
    margin: 0;
    font-size: 1.2rem;
}

/* =============================================
   FORMS
============================================= */
.form-control {
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background-color: var(--white);
    transition: var(--transition-fast);
    color: var(--dark);
    height: auto;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-focus);
}

.form-control::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.form-floating > .form-control {
    padding: 20px 18px 12px;
    height: 60px;
}

.form-floating > label {
    padding: 20px 18px;
    color: var(--gray-400);
    font-weight: 500;
}

.form-select {
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background-color: var(--white);
    transition: var(--transition-fast);
    color: var(--dark);
    height: auto;
    font-weight: 500;
    background-position: right 1rem center;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-focus);
}

.form-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.form-card.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-card .form-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.form-card .form-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.input-group {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.input-group .form-control {
    border-radius: 0;
    border-right: none;
}

.input-group-text {
    border-radius: 0;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-left: none;
    color: var(--primary);
}

.input-group:focus-within .form-control,
.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

.checkbox-custom {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-custom input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom .checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    margin-right: 10px;
    transition: var(--transition-fast);
}

.checkbox-custom input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-custom .checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-custom input:checked ~ .checkmark:after {
    display: block;
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('../fotos/foto23.jpg') center/cover no-repeat;
}

/* Dark overlay to ensure text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: 90%;
    color: var(--white);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    margin-bottom: 20px;
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-scroll-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 36px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.hero-scroll-btn::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* =============================================
   HERO FORM ENHANCEMENTS
============================================= */
.hero-form {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.form-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.form-card.glass {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-card .form-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.form-card .form-body {
    padding: 30px;
}

/* Form title and USPs */
.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.form-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.form-usp-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--secondary);
}

.form-usp-item i {
    color: #4CAF50;
    margin-right: 5px;
    font-size: 0.9rem;
}

/* Input fields with icons */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.input-with-icon .input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    z-index: 2;
    opacity: 0.7;
}

.input-with-icon .form-control:focus + .input-icon {
    opacity: 1;
}

/* Hero form styling */
.hero-form .form-floating {
    margin-bottom: 15px;
}

.hero-form .form-floating > .form-control {
    padding: 18px 18px 8px 45px;
    height: 56px;
    border-color: rgba(0,0,0,0.08);
    font-size: 0.95rem;
}

.hero-form .form-floating > label {
    padding: 18px 18px 0 45px;
    color: var(--gray-400);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-form .form-floating > textarea.form-control {
    height: 120px;
    padding-top: 25px;
}

.hero-form .form-select {
    padding-left: 45px;
    height: 56px;
    border-color: rgba(0,0,0,0.08);
}

.hero-form .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    margin-top: 5px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    transition: var(--transition);
}

.hero-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30,120,194,0.3);
}

.hero-form .btn-submit i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .hero-form {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-position: 70% center;
    }
    
    .hero-section::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title span {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* =============================================
   FLOATING SHAPES
============================================= */
.float-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.float-shape.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--primary);
    animation: float-1 8s ease-in-out infinite alternate;
}

.float-shape.shape-2 {
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    border-radius: 58% 42% 38% 62% / 42% 55% 45% 58%;
    background-color: var(--accent-2);
    animation: float-2 10s ease-in-out infinite alternate;
}

.float-shape.shape-3 {
    top: 40%;
    right: 20%;
    width: 80px;
    height: 80px;
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
    background-color: var(--accent-3);
    animation: float-3 7s ease-in-out infinite alternate;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(10deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 20px) rotate(-15deg);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -20px) rotate(10deg);
    }
}

/* =============================================
   USP SECTION - MARQUEE STYLE
============================================= */
.usp-section {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.usp-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.usp-marquee-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--surface-gradient);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.usp-marquee {
    display: flex;
    align-items: center;
    animation: marqueeAnimation 30s linear infinite;
    width: fit-content; /* Critical fix for marquee */
    padding: 30px 0;
}

/* Updated Marquee Animation */
@keyframes marqueeAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Add this to ensure the marquee items duplicate properly */
.usp-marquee-clone {
    display: flex;
    align-items: center;
    animation: none;
    margin-left: 60px; /* Space between original and clone */
}

.usp-marquee-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    min-width: 350px;
    white-space: nowrap;
}

.usp-marquee-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.usp-marquee-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.usp-marquee-item:hover .usp-marquee-icon::before {
    transform: translateX(0);
}

.usp-marquee-text {
    flex: 1;
}

.usp-marquee-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--dark);
}

.usp-marquee-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--secondary);
    font-weight: 500;
}

.usp-marquee-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    margin: 0 20px;
}

/* Remove this to allow all items to display */
.usp-marquee-item:nth-child(n+5) {
    display: flex; /* Changed from none to flex */
}

@media (max-width: 768px) {
    .usp-marquee {
        animation: marqueeAnimation 20s linear infinite;
    }
    
    .usp-marquee-item {
        padding: 0 20px;
        min-width: 300px;
    }
    
    .usp-marquee-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .usp-marquee-text h3 {
        font-size: 1rem;
    }
    
    .usp-marquee-text p {
        font-size: 0.8rem;
    }
}

/* =============================================
   SERVICES SECTION
============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);

    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 30px;
    position: relative;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.service-card-link {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.service-card-link i {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.service-card-link:hover {
    color: var(--primary-dark);
}

.service-card-link:hover i {
    transform: translateX(5px);
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
    position: relative;
    overflow: hidden;
	padding: 0!important
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 50px 0;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(0,119,192,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--accent-gradient);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   PROJECTS SECTION
============================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-card-img img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(0,119,192,0.9) 0%, rgba(0,119,192,0.2) 100%);
}

.project-card-content {
    width: 100%;
    transition: var(--transition);
    transform: translateY(30px);
    opacity: 0;
}

.project-card:hover .project-card-content {
    transform: translateY(0);
    opacity: 1;
}

.project-card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card-category {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.project-card-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TESTIMONIALS SECTION
============================================= */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-top: 40px;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--secondary);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #FFD700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    color: var(--white);
    text-align: center;
    margin: 80px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   PROCESS SECTION
============================================= */
.process-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--gray-100);
}

.process-container {
    position: relative;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

.process-item {
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.process-item.active {
    opacity: 1;
    transform: translateY(0);
}

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

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    width: 45%;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-item:hover .process-content {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.process-item:nth-child(odd) .process-number {
    right: -25px;
}

.process-item:nth-child(even) .process-number {
    left: -25px;
}

.process-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    font-size: 2rem;
    border: 4px solid var(--primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: all 0.4s ease;
}

.process-item:hover .process-icon {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.process-item:nth-child(odd) .process-content {
    margin-right: 55%;
}

.process-item:nth-child(even) .process-content {
    margin-left: 55%;
}

.process-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-description {
    color: var(--secondary);
    line-height: 1.7;
}

/* Animation for floating dots */
.process-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    z-index: 0;
    animation: floatingDot 8s infinite ease-in-out;
}

@keyframes floatingDot {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(0, -60px);
    }
    75% {
        transform: translate(-30px, -30px);
    }
}

/* Responsive fixes - preventing icon overlap */
@media (max-width: 992px) {
    .process-timeline::before {
        left: 40px; /* Increased from 20px to provide more space */
    }
    
    .process-item, 
    .process-item:nth-child(even) {
        flex-direction: row;
    }
    
    .process-icon {
        left: 40px; /* Match with timeline position */
        transform: translateY(-50%);
        width: 70px; /* Slightly smaller on mobile */
        height: 70px;
    }
    
    .process-item:hover .process-icon {
        transform: translateY(-50%) scale(1.1);
    }
    
    .process-content,
    .process-item:nth-child(odd) .process-content,
    .process-item:nth-child(even) .process-content {
        width: calc(100% - 100px); /* Increased space for the icon */
        margin-left: 100px; /* Increased from 60px to prevent overlap */
        margin-right: 0;
        padding: 25px; /* Slightly smaller padding on mobile */
    }
    
    .process-item:nth-child(odd) .process-number,
    .process-item:nth-child(even) .process-number {
        left: auto;
        right: -25px; /* Position number at the right side of content box */
    }
    
    .process-title {
        font-size: 1.4rem; /* Slightly smaller title on mobile */
    }
}

/* Further adjustments for very small screens */
@media (max-width: 576px) {
    .process-timeline::before {
        left: 30px; /* Even more to the left on small screens */
    }
    
    .process-icon {
        left: 30px;
        width: 60px; /* Even smaller on very small screens */
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-content,
    .process-item:nth-child(odd) .process-content,
    .process-item:nth-child(even) .process-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        padding: 20px;
    }
    
    .process-title {
        font-size: 1.3rem;
    }
    
    .process-description {
        font-size: 0.95rem;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -20px;
    }
}

/* =============================================
   WERKGEBIED SECTION
============================================= */
.werkgebied-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--white);
}

.werkgebied-header {
    margin-bottom: 50px;
    text-align: center;
}

.werkgebied-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.werkgebied-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.werkgebied-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: var(--shadow-focus);
}

.werkgebied-button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.werkgebied-button:hover {
    background: var(--primary-dark);
}

.werkgebied-result {
    text-align: center;
    margin-bottom: 30px;
    min-height: 24px;
    font-weight: 500;
}

.werkgebied-result.success {
    color: #4CAF50;
}

.werkgebied-result.error {
    color: #F44336;
}

.werkgebied-map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.werkgebied-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.werkgebied-regions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.werkgebied-region {
    padding: 10px 20px;
    background-color: var(--gray-100);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.werkgebied-region:hover,
.werkgebied-region.active {
    background-color: var(--primary);
    color: var(--white);
}

.werkgebied-info {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    display: none;
}

.werkgebied-info.active {
    display: block;
}

.werkgebied-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.werkgebied-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.werkgebied-info-title {
    margin: 0;
    font-size: 1.5rem;
}

.werkgebied-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.werkgebied-city {
    padding: 6px 12px;
    background-color: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.werkgebied-city:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

@media (max-width: 768px) {
    .werkgebied-search {
        max-width: 100%;
    }
    
    .werkgebied-map-container {
        height: 350px;
    }
    
    .werkgebied-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .werkgebied-map-container {
        height: 280px;
    }
    
    .werkgebied-regions {
        gap: 8px;
    }
    
    .werkgebied-region {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* =============================================
   FAQ SECTION
============================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-image-col {
    position: relative;
}

.faq-image {
    position: sticky;
    top: 100px;
    width: 100%;
    height: 100%;
    max-height: 700px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.faq-image-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
    z-index: 2;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.faq-accordion {
    max-width: 800px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-toggle i {
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--dark);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer-inner {
    padding: 0 30px 25px;
    color: var(--secondary);
    line-height: 1.7;
}

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

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

.faq-answer-inner a:hover {
    text-decoration: underline;
}

.faq-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.faq-decoration {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.faq-decoration.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--primary);
}

.faq-decoration.shape-2 {
    bottom: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    border-radius: 58% 42% 38% 62% / 42% 55% 45% 58%;
    background-color: var(--accent-2);
}

@media (max-width: 991px) {
    .faq-image {
        position: relative;
        top: 0;
        height: 400px;
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer-inner {
        padding: 0 20px 20px;
    }
}

@media (max-width: 576px) {
    .faq-image {
        height: 300px;
    }
    
    .faq-image-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer-inner {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-item {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: rgba(0,119,192,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 32px;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background: var(--accent-gradient);
    color: var(--white);
}

.contact-info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.contact-info-item p, 
.contact-info-item a {
    color: var(--secondary);
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-form-header {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-body {
    padding: 40px;
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background-color: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.footer-links a i {
    margin-right: 10px;
    font-size: 14px;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact-info li i {
    color: var(--primary);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-info li span {
    display: block;
}

.footer-contact-info li strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

/* =============================================
   UTILITIES & HELPERS
============================================= */
/* Back To Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
}

.floating-contact:hover {
    transform: translateY(-5px) rotate(10deg);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.6s ease-in-out;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-icon {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-full);
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* =============================================
   3D STATISTIEKEN MET FOTO'S EN DRAAIEFFECT
============================================= */
.stats-section {
    padding: 10px 0;
    background-color: var(--white);
    position: relative;

}

.stats-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stat-card {
    perspective: 1000px;
    width: 250px;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.stat-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

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

.stat-front, .stat-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 30px;
}

.stat-back {
    background-position: center;
    background-size: cover;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.stat-back-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.stat-back-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-back-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(30,120,194,0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

/* Floating animations for parallax effect */
.stat-card:nth-child(1) {
    animation: float-1 8s ease-in-out infinite alternate;
}

.stat-card:nth-child(2) {
    animation: float-2 9s ease-in-out infinite alternate;
}

.stat-card:nth-child(3) {
    animation: float-1 10s ease-in-out infinite alternate;
}

.stat-card:nth-child(4) {
    animation: float-2 8.5s ease-in-out infinite alternate;
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(10px) translateX(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-grid {
        gap: 20px;
    }
    
    .stat-card {
        width: 230px;
        height: 280px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        width: 200px;
        height: 250px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 280px;
        height: 250px;
    }
}	

/* =============================================
   PROJECTS SLIDER SECTION
============================================= */
.projects-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.projects-slider-container {
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
}

/* Slider navigation arrows */
.slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav-button:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.05);
}

.slider-nav-button.prev {
    left: 15px;
}

.slider-nav-button.next {
    right: 15px;
}

/* Project cards styling (preserving original design) */
.projects-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.project-slide {
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
    padding: 0 15px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-slide.active {
    opacity: 1;
    transform: scale(1);
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-card-img img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(0,119,192,0.9) 0%, rgba(0,119,192,0.2) 100%);
}

.project-card-content {
    width: 100%;
    transition: var(--transition);
    opacity: 1; /* Always visible in slider mode */
    transform: translateY(0); /* Always visible in slider mode */
}

.project-card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card-category {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.project-card-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Slider dots navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    width: 30px;
    border-radius: 10px;
    background-color: var(--primary);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .project-slide {
        width: 50%; /* Show 2 items on tablets */
    }
}

@media (min-width: 1024px) {
    .project-slide {
        width: 33.333%; /* Show 3 items on desktop */
    }
}

@media (max-width: 767px) {
    .projects-slider-container {
        padding: 0 30px;
    }
    
    .slider-nav-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav-button.prev {
        left: 5px;
    }
    
    .slider-nav-button.next {
        right: 5px;
    }
    
    .project-card {
        height: 300px;
    }
    
    .project-card-overlay {
        padding: 20px;
    }
    
    .project-card-title {
        font-size: 1.3rem;
    }
}

/* Optional touch slider indicators */
.slider-drag-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
    display: none; /* Only show on touch devices */
    align-items: center;
    gap: 8px;
}

@media (pointer: coarse) {
    .slider-drag-indicator {
        display: flex;
    }
}

/* Animation for slider */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.project-slide {
    animation: fadeInScale 0.5s forwards;
}

/* Preload animation (optional) */
.projects-slider.loading {
    position: relative;
    min-height: 350px;
}

.projects-slider.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-section {
    background-attachment: fixed;
    animation: heroZoom 20s infinite alternate ease-in-out;
    overflow: hidden;
}

@keyframes heroZoom {
    0% {
        background-size: 100% auto;
    }
    100% {
        background-size: 120% auto;
    }
}

/* Improve the hero overlay for better text readability with parallax */
.hero-section::before {
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    animation: parallaxShift 15s infinite alternate ease-in-out;
}

@keyframes parallaxShift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}

/* Global Refinements for Cleaner Look */
body {
    letter-spacing: -0.2px;
}

/* More consistent spacing */
.section-padding {
    padding: 90px 0;
}

/* Refined typography */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.6px;
}

/* Enhanced buttons */
.btn {
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    border-radius: var(--radius-full);
    padding: 12px 28px;
}

/* Service cards improvements */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-card-img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-card-body {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Navbar refinements */
.navbar {
    height: 85px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    backdrop-filter: blur(12px);
}

.navbar-brand img {
    height: 55px;
}

.navbar .nav-link {
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Testimonial refinements */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Contact form refinements */
.form-control, .form-select {
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,120,194,0.15);
}

/* Hero content improvements */
.hero-title {
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-subtitle {
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Stats section refinements */
.stat-card-inner {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover .stat-card-inner {
    transform: rotateY(180deg) scale(1.05);
}

/* FAQ refinements */
.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item.active {
    border-left: 3px solid var(--primary);
    transform: translateX(5px);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Process section refinements */
.process-content {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.process-icon {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-item:hover .process-icon {
    transform: translate(-50%, -50%) scale(1.15);
}

/* Enhanced CTA Section */
.enhanced-cta {
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e78c2 0%, #0a4d85 100%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.enhanced-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.cta-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255,255,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}

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

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.cta-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.cta-badge {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
}

.cta-badge i {
    color: #4CAF50;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .enhanced-cta {
        padding: 60px 25px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* 3D Stats Cards with Better Proportions */
.stats-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  perspective: 1000px;
  width: 230px;
  height: 280px;
  position: relative;
  cursor: pointer;
}

.stat-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

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

.stat-front, .stat-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-back {
  background-position: center;
  background-size: cover;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.stat-back-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.stat-back-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-back-description {
  font-size: 0.9rem;
  line-height: 1.4;
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(30,120,194,0.2);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-title {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

/* Floating animations */
.stat-card:nth-child(1) {
  animation: float-1 8s ease-in-out infinite alternate;
}

.stat-card:nth-child(2) {
  animation: float-2 9s ease-in-out infinite alternate;
}

.stat-card:nth-child(3) {
  animation: float-1 10s ease-in-out infinite alternate;
}

.stat-card:nth-child(4) {
  animation: float-2 8.5s ease-in-out infinite alternate;
}

@keyframes float-1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes float-2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(8px) translateX(-4px);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .stats-grid {
    gap: 20px;
  }
  
  .stat-card {
    width: 210px;
    height: 260px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 15px;
  }
  
  .stat-card {
    width: 180px;
    height: 230px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-title {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card {
    width: 240px;
    height: 240px;
  }
}

/* Floating Review Overlay for About Section */
.about-image {
  position: relative;
}

.about-review-overlay {
  position: absolute;
  bottom: 40px;
left: -10px;
  z-index: 10;
  max-width: 280px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-stars {
  color: #FFD700;
  font-size: 16px;
  margin-bottom: 10px;
}

.review-quote {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--dark);
}

.review-author {
  font-size: 0.85rem;
  color: var(--secondary);
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-review-overlay {
    right: 20px;
    bottom: 20px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .about-review-overlay {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 100%;
    margin-top: -60px;
    margin-bottom: 30px;
  }
}

.process-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: url('../nieuwefotos/kooymans.jpg') center/cover no-repeat;
    background-attachment: fixed;
    animation: heroZoaom 10s infinite alternate ease-in-out;
}

/* Add the dark overlay for text readability like in hero section */
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    animation: parallaxShift 15s infinite alternate ease-in-out;
    z-index: 0;
}

/* Make sure all content is positioned above the overlay */
.process-container {
    position: relative;
    z-index: 1;
}

/* Update the section title colors for better visibility on dark background */
.process-section .section-title h2 {
    color: white;
}

.process-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.process-section .section-title .subtitle {
    color: var(--primary-light);
}

/* Update the process timeline and content for better visibility */
.process-timeline::before {
    background: var(--accent-gradient);
    opacity: 0.8;
}

.process-item .process-content {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-icon {
    background: var(--white);
    border: 4px solid var(--primary);
}

.process-item:hover .process-icon {
    background: var(--accent-gradient);
}

/* Make sure the animation keyframes are included if they're not already in your CSS */
@keyframes heroZoom {
    0% {
        background-size: 100% auto;
    }
    100% {
        background-size: 110% auto;
    }
}

@keyframes parallaxShift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10px);
    }
}


/* USP SECTION - MARQUEE STYLE */
.usp-section {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.usp-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.usp-marquee-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--surface-gradient);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.usp-marquee {
    display: flex;
    align-items: center;
    animation: marqueeAnimation 30s linear infinite;
    width: max-content; /* Critical fix for marquee */
    padding: 30px 0;
}

/* Improved Marquee Animation for Seamless Loop */
@keyframes marqueeAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Only animate to half since we duplicated the items */
    }
}

.usp-marquee-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    min-width: 350px;
    white-space: nowrap;
}

.usp-marquee-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.usp-marquee-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.usp-marquee-item:hover .usp-marquee-icon::before {
    transform: translateX(0);
}

.usp-marquee-text {
    flex: 1;
}

.usp-marquee-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--dark);
}

.usp-marquee-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--secondary);
    font-weight: 500;
}

.usp-marquee-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    margin: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .usp-marquee {
        animation: marqueeAnimation 20s linear infinite;
    }
    
    .usp-marquee-item {
        padding: 0 20px;
        min-width: 300px;
    }
    
    .usp-marquee-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .usp-marquee-text h3 {
        font-size: 1rem;
    }
    
    .usp-marquee-text p {
        font-size: 0.8rem;
    }
}

/* For very small screens */
@media (max-width: 576px) {
    .usp-marquee-item {
        min-width: 250px;
    }
    
    .usp-marquee-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}





