/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    max-width: 100vw;
    overflow-x: hidden !important;
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Colors */

/* LIGHT MODE THEME VARIABLES */
:root {
    /* Backgrounds */
    --bg: #ffffff;
    --bg2: #F8FAFC;
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --card-bg2: #1e293b;
    --footer: #1e293b;
    --navbar: #ffffff;

    /* Accent & Button Colors */
    --accent: #126C9F;
    --accent2: #126C9F;
    --accent-600: #0f5a8a;
    --accent-orange: #126C9F;
    --accent-icon: #00AB91;
    --button-color: #126C9F;
    --button-color2: #10b981;

    /* Border colors */
    --border-color: #cfcfcf;
    --border-color-checked: #126C9F;

    /* Text Colors */
    --dark-text: #1E293B;
    --light-text: #64748B;
    --normal-text: #1E293B;
    --price-text: #6b7280;
    --label-text: #374151;
    --white-text: #ffffff;

    /* Slider Colors */
    --slider: #126C9F;
}

/* DARK MODE THEME VARIABLES */
[data-theme="dark"] {
    /* Backgrounds */
    --bg: #001f22;
    --bg2: #003233;
    --bg-light: #001f22;
    --card-bg: #003233;
    --card-bg2: #003233;
    --footer: #003233;
    --navbar: #003233;

    /* Accent & Button Colors */
    --accent: #003233;
    --accent2: #ffffff;
    --accent-600: #00AB91;
    --accent-orange: #f58a51;
    --accent-icon: #f58a51;
    --button-color: #00AB91;
    --button-color2: #f58a51;

    /* Border colors */
    --border-color: #ffffff;
    --border-color-checked: #00AB91;

    /* Text Colors */
    --dark-text: #ffffff;
    --light-text: #ffffff;
    --normal-text: #ffffff;
    --price-text: #ffffff;
    --label-text: #ffffff;
    --white-text: #ffffff;

    /* Slider Colors */
    --slider: #00AB91;

    color-scheme: dark;
}

/* Theme Switcher Button */
.theme-switcher,
.theme-switcher-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--button-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Theme Switcher Button */
.theme-switcher-white,
.theme-switcher-mobile-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #126C9F;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-switcher-white i,
.theme-switcher-mobile-white {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Theme Switcher Button */
.theme-switcher-green,
.theme-switcher-mobile-green {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #00AB91;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-switcher-green i,
.theme-switcher-mobile-green i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.theme-switcher i,
.theme-switcher-mobile i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.theme-switcher:hover,
.theme-switcher-mobile:hover {
    transform: rotate(20deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
}

#sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

#moon-icon {
    opacity: 0;
    transform: rotate(-90deg);
    position: absolute;
}

/* End colors */

/* Navbar for AI page, which doesn't have a dark mode */
.navbar-white {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.nav-menu-white {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu-white a {
    text-decoration: none;
    color: #1E293B;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu-white a:hover {
    color: #126C9F;
}

.nav-logo-white {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #126C9F;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--navbar);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.nav-link {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 400;
    text-decoration: none;
}

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

.active-page {
    font-weight: bolder;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent2);
}

.nav-text {
    font-size: 30px;
    color: #126C9F;
}

.nav-text-white {
    font-size: 30px;
    color: #ffffff;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-logo .logo-svg-blue,
.logo-svg-white {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-svg-white-security {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-svg-blue-ai {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-svg-blue-big,
.logo-svg-white-big {
    width: 60px;
    height: 60px;
    margin-right: 12px;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--normal-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--button-color);
}

/* Hamburger hidden on desktop, only on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 4px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Hamburger hidden on desktop, only on mobile */
.hamburger-white {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 10px;
}

.hamburger-white span {
    display: block;
    width: 25px;
    height: 4px;
    background: #1E293B;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-white.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger-white.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-white.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.mobile-container {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

/* Switchers */
.switchers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--normal-text);
    transition: all 0.3s ease;
}

.switcher-btn-white {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1E293B;
    transition: all 0.3s ease;
}

.switcher-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.switcher-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.dropdown-item .flag {
    font-size: 1.2rem;
}

.btn-container {
    display: flex;
    justify-content: center;
}

.btn-cookie-primary,
.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cookie-primary {
    background: #00AB91;
    color: white;
    display: flex;
    justify-content: center;
}

.btn-cookie-primary:hover,
.notification-close:hover,
.notification-close-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.btn-cookie-secondary {
    background: red;
    color: white;
}

.btn-cookie-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-container-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-form {
    margin-bottom: 2rem;
}

.contact-form-container {
    background: var(--bg2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0rem;
}

.form-row2 {
    display: grid;
    gap: 1rem;
    margin-bottom: 0rem;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 2px;
    margin-left: 2px;
    width: 534px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--bg2);
    color: var(--dark-text);
}

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

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

.contact-submit-btn {
    background: var(--button-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 108, 159, 0.3);
}

.contact-submit-btn,
.contact-submit-btn-green:active {
    transform: translateY(0);
}

.contact-submit-btn i {
    font-size: 1.1rem;
}

/* Success Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.success-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.4s ease-out;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: #10b981;
    animation: bounceIn 0.6s ease-out;
}

.success-modal-content h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: var(--price-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-modal-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.success-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 108, 159, 0.3);
}

.success-modal-btn:active {
    transform: translateY(0);
}

/* Floating Cards Grid */
.hero-image {
    position: relative;
}

.floating-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.floating-card {
    background: var(--card-bg2);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-card i {
    font-size: 2.5rem;
    color: white;
    background: var(--accent-orange);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-card h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.floating-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

}

/* Services Section */
.services {
    padding: 50px 0px 80px 0px;
    background: var(--bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.services>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

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

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

.services-textDiv {
    text-align: center;
}

.services-head {
    margin-top: 120px;
    margin-bottom: 12px;
    font-size: 40px;
    font-weight: bold;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card button {
    margin-top: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.06);
}

.service-container {
    display: flex;
    justify-content: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-orange {
    width: 60px;
    height: 60px;
    background: var(--accent-icon);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i,
.service-icon-orange i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-container {
    display: grid;
    justify-content: center;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    display: flex;
    padding: 0.4rem;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--light-text);

}

.service-card li i {
    color: #4ade80;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* VPS Configurator Section */
.vps-configurator {
    padding: 0px 0px 80px 0px;
    background: var(--bg);
}

#vps {
    scroll-margin-top: 80px;
}

.vps-configurator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.vps-configurator>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.configurator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1160px;
    margin: 0 auto;
}

/* Left Column Layout */
.configurator-left {
    display: flex;
    flex-direction: column;
}

/* Bottom Left Container - OS + Additional Features side by side */
.bottom-left-container {
    display: grid;
    justify-content: start;
}

/* Compact Features Grid for Additional Features */
.features-grid-compact {
    display: flex;
    justify-content: space-evenly;
    gap: 12px;
    margin-bottom: 12px;
    margin-top: 12px;
}

.feature-option-compact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background: var(--card-bg);
    border-radius: 8px;
    cursor: pointer;
    width: 200px;
    height: 100px;
    transition: all 0.3s ease;
    border: 2px solid #999 !important;
}

.feature-option-compact:hover {
    background: var(--bg2);
    transform: translateY(-2px);
}

.feature-option-compact input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-600);
}

.feature-option-compact span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-text);
}

.feature-option-compact input[type="checkbox"]:checked+span {
    color: var(--accent-600);
    font-weight: 600;
}

.feature-text {
    margin-top: 60px;
}

.config-section {
    margin-bottom: 0.6rem;
}

.config-section-features {
    margin-top: 1rem;
}

.config-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--dark-text);
}

.config-option {
    margin-bottom: 2rem;
}

.config-option label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--label-text);
}

/* Moet alleen te zien zijn bij max opties bij de server configurator */
.maatwerk {
    display: none;
    width: 100%;
    margin-bottom: 10px;
}

.vps {
    width: 100%;
    margin-bottom: 10px;
}

#top {
    margin-top: 25px;
    margin-bottom: 75px;
}

#top-form {
    margin-bottom: 8px;
}

#top-tekst,
#top-tekst-overzicht {
    font-size: 48px;
}

#top-tekst-green,
#top-tekst-overzicht-green {
    font-size: 48px;
    color: #ffffff;
}

.notification-close {
    background: var(--accent-orange);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    gap: 12px;
    justify-content: center;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.notification-close-green {
    background: #f58a51;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    gap: 12px;
    justify-content: center;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

#notification-body {
    background-color: var(--bg);
}

#notification-container {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--bg2);
    transform: translate(-50%, -50%);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    border-radius: 12px;
}

.notification-header {
    font-size: 48px;
    color: var(--dark-text);
}

.notification-description {
    margin: 12px 0px 12px 0px;
    font-size: 18px;
    color: var(--dark-text);
}

#top-form {
    display: flex;
    justify-content: start;
}

.link-home {
    color: var(--white-text);
}

.backbutton {
    transition: all 0.3s ease;
}

#top-buttons {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #999 !important;
    background: white;
    border-radius: 12px;
    margin-right: 12px;
    padding: 8px;
}

.backbutton:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    border-radius: 12px;
}

.label-form {
    font-size: 18px;
    font: 600;
    margin-top: 10px;
    margin-bottom: 2px;
    margin-left: 2px;
    color: var(--dark-text);
}

input::placeholder,
textarea::placeholder {
    color: rgb(210, 210, 210);
}

.row-form {
    display: flex;
    justify-content: space-around;
    gap: 24px;
}

#form-overzicht {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    background: var(--bg2);
    color: #ffffff;
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#form {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    padding: 1.6rem;
}

#emailaddres,
#telefoon-nummer,
#straat-nummer,
#bedrijfs-naam,
#btw-nummer {
    width: 100%;
    height: 50px;
    border: 2px solid #999 !important;
    border-radius: 8px;
    padding: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--card-bg);
    color: var(--dark-text);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#message-vps-maatwerk {
    width: 100%;
    height: 100px;
    border: 2px solid #999 !important;
    border-radius: 8px;
    padding: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--card-bg);
    color: var(--dark-text);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#first-name,
#last-name,
#woon-plaats,
#postcode {
    width: 100%;
    height: 50px;
    border: 2px solid #999 !important;
    border-radius: 8px;
    padding: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    background: var(--card-bg);
    color: var(--dark-text);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#first-name:focus,
#last-name:focus,
#telefoon-nummer:focus,
#emailaddres:focus,
#woon-plaats:focus,
#straat-nummer:focus,
#postcode:focus,
#bedrijfs-naam:focus,
#btw-nummer:focus,
#message-vps-maatwerk:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

input,
textarea {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.domain-check-form {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

#domainResult-container {
    display: flex;
    justify-content: center;
}

#domainResult {
    display: none;
    margin-top: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    padding: 1.2rem;
    width: 400px;
}

a {
    text-decoration: none;
}

.feature-option-compact input[type="checkbox"] {
    pointer-events: none;
    color: var(--accent2);
}

.feature-option-compact input[type="checkbox"]:checked+span {
    font-weight: 600;
    color: var(--accent2);
}

.slider {
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 6px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #000;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #000;
}

.slider-value {
    font-weight: 600;
    color: var(--accent2);
    min-width: 95px;
    display: flex;
    justify-content: center;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

input[type="radio"] {
    accent-color: var(--accent-600);
}

/* OS Options */
.os-options {
    display: flex;
    justify-content: space-evenly;
    margin-top: 0.8rem;
}

.os-options-true {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.os-option input {
    display: none;
}

.os-card {
    padding: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.os-card:hover,
.os-card-green:hover {
    transform: translateY(-1px);
}

.os-option input:checked+.os-card {
    border-color: var(--border-color-checked);
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 9px
}

.os-option {
    position: relative;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
}

.os-option .tooltiptext {
    visibility: hidden;
    width: 180px;
    color: var(--dark-text);
    border: 2px solid var(--border-color);
    background-color: var(--bg2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 16px;
}

.os-option:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.os-card i {
    font-size: 1.9rem;
    color: var(--accent-600);
}

.feature-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    height: 30px;
}

.feature-option:hover {
    background: #f3f4f6;
}

.feature-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* Configurator Summary */
.configurator-summary {
    position: sticky;
    top: 100px;
}

/* Greyed out, for stuff that doesn't exist yet */
.greyed-out {
    opacity: 0.5;
    pointer-events: none;
    border: none;
}

.summary-card {
    background: var(--card-bg);
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #999 !important;
}

.maatwerk-note {
    display: none;
}

.maatwerk-note-text {
    font-size: 16px;
    margin: 0px;
}

.summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: var(--price-text);
}

.summary-item span:last-child {
    color: var(--price-text);
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg2);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10);
}

/* Maatwerk section, only visible when "Maatwerk" is selected in the configurator */
.maatwerk-section {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg2);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Maatwerk section, but always visible used in the pages(vps/maatwerk.php, vps/maatwerk-bestellng-overzicht.php */
.maatwerk-section-display {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg2);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: middle;
}

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

.price-note {
    font-size: 0.9rem;
    color: var(--price-text)
}

.guarantees {
    display: grid;
    justify-content: center;
    margin-top: 16px;
    gap: 0.75rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--price-text);
}

.guarantee i {
    color: #10b981;
}

/* Additional Features Section */
.additional-features-section {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.features-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e5e9;
    width: 100%;
    max-width: 100%;
}

.features-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid-full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Features Section for the home page*/
.features {
    padding: 40px 0px 40px 0px;
    background: var(--bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.features>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* End for features section for the home page */

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--accent-600);
    text-align: center;
}

.cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white-text);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white-text);
}


/* Footer */
.footer {
    background: var(--footer);
    color: white;
    padding: 60px 0 20px;
}

footer [role="button"] {
    cursor: pointer;  
    text-decoration: none; 
    transition: all 0.2s ease; 
    color: inherit;     
}

footer [role="button"]:hover {
    text-decoration: underline;
}

/* Footer */
.footer-white {
    background: #1E293B;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #cbd5e1;
}

.footer-copyright p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.btn-primary,
.btn-primary-white,
.btn-secondary,
.btn-domain,
.btn-solution,
.confirm-btn,
.btn-solution-featured {
    padding: 1rem;
    font-weight: 600;
    border: none;
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--button-color);
    color: white;
}

.vps,
.maatwerk {
    background-color: var(--accent-orange);
}

.btn-primary-white {
    background-color: #126C9F;
    color: white;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.btn-domain {
    background-color: var(--button-color2);
    color: white;
}

.btn-solution {
    width: 100%;
    background: #00ab91;
    color: white;
}

.btn-solution-featured {
    width: 100%;
    background: #f58a51;
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-domain:hover,
.btn-solution:hover,
.confirm-btn:hover,
.btn-solution-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Footer Copyright Link Styles */
.footer-copyright a {
    color: white !important;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: white !important;
    text-decoration: underline;
}

.footer-copyright a:visited {
    color: white !important;
}

.footer-copyright a:active {
    color: white !important;
}

.footer-copyright a:focus {
    color: white !important;
}

/* Footer Contact Info Styles */
.footer-contact-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info {
    margin-bottom: 2rem;
}

.company-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.company-info p {
    margin: 0;
    opacity: 0.9;
}

.contact-locations-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-column,
.locations-column {
    text-align: left;
}

.contact-column h4,
.locations-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: lowercase;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.location-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.location-item a {
    color: var(--text-color);
    text-decoration: none;
}

.location-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact form input fields: clearer (medium-dark) borders and placeholder text */
.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 2px solid #999 !important;
    color: var(--dark-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999 !important;
    opacity: 1;
}

/* Begin for 404.html */
.body-404 {
    font-family: 'Inter', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.container-404 {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
    text-align: center;
    max-width: 400px;
}

.h1-404 {
    font-size: 4rem;
    margin: 0 0 12px 0;
    color: #126C9F;
}

.h2-404 {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
}

.p-404 {
    font-size: 1rem;
    margin-bottom: 24px;
}

.countdown {
    font-size: 1.2rem;
    font-weight: 600;
    color: #126C9F;
}

.btn-home {
    margin-top: 24px;
    padding: 12px 28px;
    background: var(--button-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

/* End for 404.html */

/* Begin for cookiebeleid.html */
.ul-cookie {
    margin-top: 0;
    margin-left: 20px;
}

/* End for cookiebeleid.html */

/* Begin for contact.php(cloudfare turnstile) */
.body-verify {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

#turnstile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.robot-text {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.robot-descripiton {
    color: var(--dark-text);
    margin-bottom: 24px;
}

.cloudfare {
    width: 300px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent-orange);
    border: none;
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cloudfare:hover {
    transform: translateY(-3px);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

.form-turnstile {
    background-color: var(--bg2);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
    display: inline-block;
    width: 360px
}

.body-verify-green {
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #001f22;
}

#turnstile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.robot-text-green {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    color: #ffff;
}

.robot-descripiton-green {
    color: #ffffff;
    margin-bottom: 24px;
}

.cloudfare-green {
    width: 300px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: #f58a51;
    border: none;
    color: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cloudfare-green:hover {
    transform: translateY(-3px);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

.form-turnstile-green {
    background-color: #003233;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
    display: inline-block;
    width: 360px
}
/* End for verify-vps/maatwerk/contact */

.a-link {
    color: #126C9F;
    text-decoration: underline;
}

.h1-text {
    color: #126C9F;
    margin-top: 0;
}

.h2-text {
    color: #126C9F;
    margin-bottom: 8px;
}

.body-other {
    font-family: 'Inter', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
    padding: 0;
}

.container-other {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
}

.footer-modal,
.domain-false-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.footer-modal-content,
.domain-false-modal-content {
    background: var(--bg2);
    color: var(--normal-text);
    padding: 24px 16px 16px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90vw;
    position: relative;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.footer-modal-content-white {
    background: #ffffff;
    color: #1E293B;
    padding: 24px 16px 16px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90vw;
    position: relative;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.footer-modal-close,
.domain-false-modal-close {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 28px;
    color: #007BFF;
    cursor: pointer;
    font-weight: bold;
}

.footer-links {
    text-align: center;
}

.footer-link,
.footer-link:visited,
.footer-link:active {
    color: #fff !important;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent-600) !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 16px;
}

.footer-modal-content,
.chat-window {
    box-sizing: border-box;
}

/* Turnstile widget styling */
.turnstile-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.turnstile-wrapper .cf-turnstile {
    width: 100% !important;
    max-width: 300px;
}

#top-form {
    margin-left: 1.6rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .footer-modal-content {
        max-width: 95vw;
        padding: 18px 8px 16px 8px;
    }

    .services-grid,
    .services-grid2,
    .features-grid,
    .security-grid,
    .support-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }

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

    .feature-card,
    .service-card,
    .footer-section,
    .security-item,
    .support-item {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        box-sizing: border-box;
    }

    .btn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        bottom: 80px;
        right: 20px;
        max-width: 100vw;
    }

    .os-options-true {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-option-compact,
    .os-card {
        width: 100%;
        padding: 1rem;
    }

    .feature-option-compact span {
        font-size: 0.7rem;
    }

    .container-other,
    .voorwaarden-container {
        padding: 18px 8px 16px 8px;
    }

    .switchers,
    .support,
    .security,
    .features {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .bottom-left-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid-compact {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .contact-item a,
    .location-item a {
        text-align: center;
    }

    .floating-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer,
    .contact-item,
    .location-item {
        justify-content: center;
    }

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

    .solution-card.featured {
        transform: none;
    }

    .solution-options h2 {
        font-size: 2rem;
    }

    .contact-locations-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-column,
    .locations-column {
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 1004px) {

    #first-name,
    #last-name,
    #telefoon-nummer,
    #emailaddres,
    #woon-plaats,
    #straat-nummer,
    #postcode,
    #bedrijfs-naam,
    #btw-nummer,
    #message-vps-maatwerk,
    .form-group {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 440px) {

    #top-tekst,
    #top-tekst-green {
        font-size: 2.2rem;
    }

}

@media (max-width: 653px) {
    .robot-text {
        font-size: 1.5em;
    }

    .robot-descripiton {
        font-size: 0.8em;
    }
}

@media (max-width: 1274px) {
    #notification-container {
        padding: 24px;
    }

    .notification-header {
        font-size: 32px;
    }

    .notification-description {
        font-size: 14px;
    }
}

@media (max-width: 1004px) {
    .row-form {
        flex-direction: column;
        gap: 12px;
    }

    #form {
        width: 536px;
    }
}

@media (min-width: 1024px) {
    .os-options-true {
        display: grid;
        grid-template-columns: repeat(3, 2fr);
        gap: 0.5rem;
    }
}

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

    .config-section-features {
        margin: 0rem;
    }

    .config-section {
        padding-right: auto;
    }

    .form-row {
        gap: 0.2rem;
    }

    .bottom-left-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .container,
    .hero-container {
        padding: 16px 21px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .floating-card {
        padding: 1.5rem;
    }

    .floating-card i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .feature-card {
        max-width: 100vw;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .feature-option-compact {
        height: 75px;
        padding: 0.5rem;
    }

    .vps-configurator h2,
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1121px) {
    #theme-switcher-mobile {
        display: none;
    }
}

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

    .hero-subtitle {
        display: none;
    }

    .hero-content h1 {
        text-align: center;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg2);
        padding: 1.2rem;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-menu-white {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFF;
        padding: 1.2rem;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active,
    .nav-menu-white.active {
        display: flex;
    }

    .hamburger,
    .hamburger-white {
        display: flex;
    }

    .hamburger.greyed-out,
    .hamburger-white.greyed-out {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-buttons {
        display: none;
    }
}

@media (max-width: 1024px) {
    .feature-row {
        gap: 1rem;
    }
}

/* Responsive grids and cards
@media (max-width: 900px) {
    .services-grid,
    .services-grid2,
    .features-grid,
    .footer-grid,
    .security-grid,
    .support-grid {
        grid-template-columns: 2fr 1fr;
        gap: 16px;
    }
} */

@media (max-width: 640px) {
    .services-head {
        font-size: 32px;
    }
}

@media (max-width: 520px) {
    .services-head {
        font-size: 24px;
    }
}

@media (max-width: 585px) {

    #top-tekst-overzicht,
    #top-tekst-overzicht-green {
        font-size: 28px;
    }

    #form {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .bottom-left-container {
        justify-content: center;
        text-align: center;
    }
}


@media (max-width: 639px) {
    .footer-grid {
        display: none;
    }

    .footer-contact-section {
        margin-top: 0px !important;
        border: none !important;
        padding-top: 0px !important;
    }
}