/* -- style.css  12Sale.nl ------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f172a;
    --primary-blue: #1e3a8a;
    --accent-blue: #3b82f6;
    --accent-teal: #06b6d4;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    padding-top: 80px;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.lang-switcher-li {
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid #e5e7eb;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 3px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--medium-gray);
    font-family: inherit;
    transition: all 0.25s ease;
}

.lang-btn:hover {
    color: var(--dark-gray);
    background: rgba(255, 255, 255, 0.6);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.flag-icon {
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.8)), url('images/registreer_je_domeinnaam.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 850px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.cta-button-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ============================================
   SECTION STYLING (generiek)
   ============================================ */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   BESCHIKBARE DOMEINNAMEN (cards grid)
   ============================================ */
.domeinen {
    background: var(--light-gray);
}

.domeinen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.domein-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.domein-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.domein-naam {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.domein-beschikbaar {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.domein-prijs {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.domein-prijs span {
    font-weight: 400;
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.domein-button {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.domein-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* ============================================
   HOE WERKT HET (stappen)
   ============================================ */
.hoe-werkt-het {
    background: var(--white);
}

.stappen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stap-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.stap-nummer {
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.stap-icon {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.stap-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.stap-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stappen-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   HOSTING & DIENSTEN
   ============================================ */
.hosting {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
}

.hosting .section-title,
.hosting .section-subtitle {
    color: var(--white);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hosting-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hosting-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.hosting-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    color: var(--white);
}

.hosting-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.hosting-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.hosting-cta {
    text-align: center;
    margin-top: 3rem;
}

.hosting-cta .cta-button {
    background: var(--white);
    color: var(--primary-blue);
}

.hosting-cta .cta-button:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ============================================
   NIEUWE DOMEINNAAM REGISTREREN
   ============================================ */
.registreren {
    background: var(--light-gray);
}

.zoek-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.zoekbalk {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.zoekbalk input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.zoek-button {
    padding: 1rem 2rem;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.zoek-button:hover {
    background: var(--primary-blue);
}

.zoek-tekst {
    margin-top: 1.5rem;
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.zoek-buttons {
    margin-top: 1.5rem;
}

/* Domain Check Results */
#domainResults:not(:empty) {
    padding-top: 2rem;
}

.domain-results {
    margin-top: 2rem;
    text-align: left;
}

.domain-result-main {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.domain-result-main.free {
    border-left: 4px solid #059669;
}

.domain-result-main.taken {
    border-left: 4px solid #dc2626;
}

.domain-result-info {
    flex: 1;
    min-width: 200px;
}

.domain-result-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    word-break: break-all;
}

.domain-result-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.domain-result-status.free {
    color: #059669;
}

.domain-result-status.taken {
    color: #dc2626;
}

.domain-result-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-align: right;
    min-width: 120px;
}

.domain-result-price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.domain-result-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.domain-result-btn:hover {
    background: var(--primary-blue);
}

.domain-alts-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: 0.75rem;
    text-align: center;
}

.domain-alt-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.domain-alt-item {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.domain-alt-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.domain-alt-item.free {
    border-left: 3px solid #059669;
}

.domain-alt-item.taken {
    border-left: 3px solid #e5e7eb;
    opacity: 0.7;
}

.domain-alt-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    word-break: break-all;
    flex: 1;
}

.domain-alt-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.domain-alt-status {
    font-size: 0.75rem;
    font-weight: 600;
}

.domain-alt-status.free { color: #059669; }
.domain-alt-status.taken { color: #dc2626; }

.domain-alt-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

.domain-alt-btn {
    padding: 0.4rem 1rem;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.domain-alt-btn:hover { background: var(--primary-blue); }

.domain-alt-btn.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: default;
    pointer-events: none;
}

.domain-hosting-note {
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.75rem;
    background: #eff6ff;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.domain-check-loading {
    text-align: center;
    padding: 2rem;
    color: var(--medium-gray);
}

.domain-check-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.domain-check-error {
    text-align: center;
    padding: 1rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    margin-top: 1.5rem;
}

/* ============================================
   GOED OM TE WETEN
   ============================================ */
.goed-om-te-weten {
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.info-icon {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item p {
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ============================================
   ZOOM CTA
   ============================================ */
.zoom-cta {
    background: var(--light-gray);
}

.zoom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zoom-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zoom-content h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.zoom-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-divider {
    margin: 0 0.75rem;
    opacity: 0.4;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ============================================
   AANBOD MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    max-width: 580px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--medium-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-gray);
}

.modal h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.modal-list {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--dark-gray);
    line-height: 1.5;
    font-size: 1.02rem;
}

.modal-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-cta {
    text-align: center;
}

/* ============================================
   CONTACTFORMULIER
   ============================================ */
.formulier-sectie {
    background: var(--white);
    padding: 5rem 2rem;
}

.formulier-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.formulier-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.formulier-info-icon {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.formulier-info-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.formulier-info-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.formulier-info-item a {
    color: var(--accent-blue);
    text-decoration: none;
}

.formulier-info-item a:hover {
    text-decoration: underline;
}

.formulier-wrapper {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.scroll-to-top span {
    font-weight: bold;
    line-height: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .stappen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .nav-links {
        gap: 1rem;
    }
    .lang-switcher-li {
        margin-left: 0.25rem;
        padding-left: 0.75rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .lang-switcher-li {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        border-top: 1px solid #e5e7eb;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .domeinen-grid {
        grid-template-columns: 1fr;
    }

    .stappen-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hosting-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .zoom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zoom-image {
        order: -1;
    }

    .formulier-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal {
        padding: 2rem;
        width: 95%;
    }

    .zoekbalk {
        flex-direction: column;
        border-radius: 12px;
    }

    .zoekbalk input {
        border-radius: 12px 12px 0 0;
        text-align: center;
    }

    .zoek-button {
        border-radius: 0 0 12px 12px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .domein-naam {
        font-size: 1.1rem;
    }
}
