/*
Theme Name: ZoekEenHuurhuis
Theme URI: https://zoekeenhuurhuis.nl
Author: Bryze Development
Author URI: https://bryze.nl
Description: Custom theme voor ZoekEenHuurhuis.nl - De huurwoningen aggregator
Version: 1.0.0
Text Domain: zoekeenhuurhuis
*/

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary: #1a3a5c;
    --primary-light: #2a4a6c;
    --secondary: #4a9ece;
    --secondary-dark: #3a8ebe;
    --gray: #8c8c8c;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --success: #10b981;
    --error: #dc2626;
    --warning: #f59e0b;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--gray-light);
}
a { color: var(--secondary); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4 { color: var(--primary); font-weight: 700; line-height: 1.3; margin-bottom: 0.5em; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content-area { min-height: calc(100vh - 200px); }

/* ============================================
   Header
   ============================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.site-logo img { height: 55px; width: auto; }
.main-navigation { display: flex; align-items: center; gap: 5px; }
.main-navigation a {
    color: var(--text);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.main-navigation a:hover, .main-navigation a.active {
    background: var(--gray-light);
    color: var(--primary);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
    background: var(--gray-light);
    color: var(--primary);
}
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 180px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    padding: 8px 0;
    margin-top: 0;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block !important;
    padding: 12px 20px !important;
    color: var(--text) !important;
    font-weight: 500;
    border-radius: 0 !important;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: var(--gray-light) !important;
    color: var(--primary) !important;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.user-greeting, .user-greeting-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}
.user-greeting-link {
    background: var(--gray-light);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.user-greeting-link:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-login, .btn-logout, .btn-register {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.btn-login {
    color: var(--primary);
    background: var(--gray-light);
}
.btn-login:hover {
    background: var(--gray-medium);
    color: var(--primary);
}
.btn-register {
    background: var(--secondary);
    color: var(--white);
}
.btn-register:hover {
    background: var(--secondary-dark);
    color: var(--white);
}
.btn-logout {
    color: var(--text-light);
    background: transparent;
}
.btn-logout:hover {
    color: var(--error);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: var(--secondary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-success { background: #10b981; color: var(--white); }
.btn-success:hover { background: #059669; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 18px; }

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-image: 
        linear-gradient(rgba(30, 58, 87, 0.60), rgba(30, 58, 87, 0.60)),
        url('assets/images/amsterdam-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}
.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-logo {
    flex-shrink: 0;
}
.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}
.hero-content {
    flex: 1;
    text-align: left;
}
.hero-section h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 15px; }
.hero-section p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 25px; }
@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
        background-position: 65% center;
    }
    .hero-inner { flex-direction: column; text-align: center; gap: 30px; }
    .hero-logo-img { width: 120px; height: 120px; }
    .hero-content { text-align: center; }
    .hero-section h1 { font-size: 1.8rem; }
}

/* ============================================
   Search Page Hero Section
   ============================================ */
.search-hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-image: 
        linear-gradient(rgba(30, 58, 87, 0.60), rgba(30, 58, 87, 0.60)),
        url('assets/images/amsterdam-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}
.search-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.search-hero-section h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.search-hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Glassmorphism Stats Badge */
.search-stats-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.search-stats-badge .stats-number {
    font-weight: 700;
    color: #fbbf24;
}
.search-stats-badge .stats-new {
    margin-left: 15px;
    background: rgba(16, 185, 129, 0.2);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Extension Promo */
.search-extension-promo {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
}
.search-extension-promo .promo-badge {
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}
.search-extension-promo .promo-btn {
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 10px;
}
.search-extension-promo .promo-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .search-hero-section {
        min-height: 350px;
        background-position: 40% center;
    }
    .search-hero-section h1 {
        font-size: 1.8rem;
    }
    .search-hero-subtitle {
        font-size: 1rem;
    }
    .search-stats-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .search-stats-badge .stats-new {
        display: block;
        margin: 5px 0 0 0;
    }
    .search-extension-promo {
        flex-direction: column;
        text-align: center;
        padding: 12px 20px;
        display: none; /* Hide on mobile */
    }
}

/* ============================================
   Actueel Aanbod Hero Section
   ============================================ */
.actueel-hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-image: 
        linear-gradient(rgba(30, 58, 87, 0.65), rgba(30, 58, 87, 0.65)),
        url('assets/images/amsterdam-bike-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}
.actueel-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.actueel-hero-section h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.actueel-hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Glassmorphism Stats Badge */
.actueel-stats-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.actueel-stats-badge .stats-number {
    font-weight: 700;
    color: #fbbf24;
}
.actueel-stats-badge .stats-update {
    margin-left: 15px;
    background: rgba(16, 185, 129, 0.2);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* CTA Link */
.actueel-cta-link .cta-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255,255,255,0.95);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}
.actueel-cta-link .cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .actueel-hero-section {
        min-height: 350px;
        background-position: 30% center;
    }
    .actueel-hero-section h1 {
        font-size: 1.8rem;
    }
    .actueel-hero-subtitle {
        font-size: 1rem;
    }
    .actueel-stats-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .actueel-stats-badge .stats-update {
        display: block;
        margin: 5px 0 0 0;
    }
}

/* ============================================
   Snel Zoeken Hero Section
   ============================================ */
.snel-zoeken-hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-image: 
        linear-gradient(rgba(30, 58, 87, 0.60), rgba(30, 58, 87, 0.60)),
        url('assets/images/amsterdam-street-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}
.snel-zoeken-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.snel-zoeken-hero-section h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.snel-zoeken-hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Glassmorphism Stats Badge */
.snel-zoeken-stats-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.snel-zoeken-stats-badge .stats-highlight {
    font-weight: 700;
    color: #fbbf24;
}

/* Google Powered Badge */
.snel-zoeken-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 18px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.snel-zoeken-google-badge svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .snel-zoeken-hero-section {
        min-height: 350px;
        background-position: center;
    }
    .snel-zoeken-hero-section h1 {
        font-size: 1.8rem;
    }
    .snel-zoeken-hero-subtitle {
        font-size: 1rem;
    }
    .snel-zoeken-stats-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* ============================================
   Besparen Pages Hero Section (Shared)
   ============================================ */
.besparen-hero-section {
    background-image: 
        linear-gradient(rgba(30, 58, 87, 0.60), rgba(30, 58, 87, 0.60)),
        url('assets/images/amsterdam-tram-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}
.besparen-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.besparen-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.besparen-hero-section h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.besparen-hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Remove top padding from page-content when it contains hero sections */
.page-content {
    padding: 60px 0;
    background: var(--white);
}

.page-content:has(.besparen-hero-section) {
    padding-top: 0;
}

@media (max-width: 768px) {
    .besparen-hero-section {
        min-height: 350px;
    }
    .besparen-hero-section h1 {
        font-size: 1.8rem;
    }
    .besparen-hero-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   Contact Hero Section
   ============================================ */
.contact-hero-section {
    background-image: 
        linear-gradient(rgba(30, 58, 87, 0.60), rgba(30, 58, 87, 0.60)),
        url('assets/images/amsterdam-buildings-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}
.contact-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.contact-hero-section h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.contact-hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 350px;
    }
    .contact-hero-section h1 {
        font-size: 1.8rem;
    }
    .contact-hero-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 50px 0;
    background: var(--white);
    margin-top: -60px;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    z-index: 2;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--secondary); }
.stat-label { color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   Listings Section
   ============================================ */
.featured-section { padding: 60px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { max-width: 600px; margin: 0 auto; }
.listings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Scrollable listings for homepage */
.listings-scroll-container {
    max-height: 900px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) var(--gray-light);
}
.listings-scroll-container::-webkit-scrollbar { width: 8px; }
.listings-scroll-container::-webkit-scrollbar-track { background: var(--gray-light); border-radius: 4px; }
.listings-scroll-container::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }
.listings-grid-large { grid-template-columns: repeat(4, 1fr); gap: 20px; }

.listing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.listing-image { height: 180px; background: var(--gray-medium); position: relative; overflow: hidden; }
.listing-image img { width: 100%; height: 100%; object-fit: cover; }
.listing-source {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

 .listing-source.partner {
     background: transparent;
     padding: 0;
     border-radius: 0;
     color: rgba(255, 255, 255, 0.92);
     font-weight: 700;
     text-shadow: 0 2px 10px rgba(0,0,0,0.65);
 }
.listing-content { padding: 20px; }
.listing-price { font-size: 1.5rem; font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
.listing-title { font-size: 1rem; color: var(--text); margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.listing-meta { display: flex; gap: 15px; color: var(--gray); font-size: 14px; }

/* ============================================
   How It Works
   ============================================ */
.how-it-works { padding: 80px 0; background: var(--gray-light); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}
.step-number {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews-section { padding: 80px 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
}
.review-card::before {
    content: '"';
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}
.review-text { position: relative; z-index: 1; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 15px; }
.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}
.review-name { font-weight: 600; color: var(--primary); }
.review-city { font-size: 14px; color: var(--gray); }
.review-stars { color: var(--warning); margin-bottom: 15px; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--white);
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 30px; }
.cta-section .btn-primary { background: var(--white); color: var(--primary); }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--primary); color: var(--white); padding: 40px 0 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Compact footer - 5 columns */
.footer-compact {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 25px;
}
.footer-about { max-width: 200px; }
.footer-credit { margin-top: 15px; font-size: 12px; }
.footer-credit a { color: var(--secondary); }
.footer-section h3 { color: var(--white); font-size: 1rem; margin-bottom: 15px; }
.footer-section p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.5; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-section a:hover { color: var(--white); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.footer-bottom a { color: var(--secondary); }

/* ============================================
   Homepage Ads
   ============================================ */
.homepage-ad-section { padding: 30px 0; background: var(--gray-light); }
.homepage-ad-placeholder { max-width: 800px; margin: 0 auto; }
.ad-fallback-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.ad-fallback-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }
.ad-icon { font-size: 2rem; }
.ad-text { text-align: left; }
.ad-text strong { display: block; font-size: 1.1rem; }
.ad-text small { opacity: 0.9; }
.ad-cta { 
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ============================================
   Page Styles
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.8); }
.page-content { padding: 60px 0; background: var(--white); }

/* ============================================
   Contact Form
   ============================================ */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: normal;
}
.radio-group label:hover { background: var(--gray-medium); }
.radio-group input[type="radio"] { width: auto; }

/* ============================================
   Statistics Page
   ============================================ */
.stats-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 50px; }
.stats-big-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}
.stats-big-number { font-size: 4rem; font-weight: 700; color: var(--secondary); }
.stats-chart { background: var(--gray-light); border-radius: var(--radius); padding: 30px; margin-bottom: 30px; }

/* ============================================
   Hero Buttons & USP
   ============================================ */
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn .btn-icon {
    font-size: 1.5rem;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
}

.hero-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.hero-btn-success:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    border-color: #34d399;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(52, 211, 153, 0.6);
}

/* USP Banner */
.hero-usp-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.usp-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.usp-text {
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: nowrap;
}

.usp-text strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-buttons-row {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btn {
        justify-content: center;
    }
    .hero-usp-banner {
        padding: 10px 20px;
    }
    .usp-text {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }
}

/* ============================================
   Quick Actions
   ============================================ */
.quick-actions {
    padding: 40px 0;
    background: var(--gray-light);
}
.quick-actions-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.quick-action-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 100px;
}
.quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--primary);
}
.quick-action-title {
    font-weight: 600;
    font-size: 0.95rem;
}
.quick-action-highlight {
    background: var(--secondary);
    color: white;
}
.quick-action-highlight:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   Mobile Menu (Hamburger)
   ============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 30px;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mobile-menu nav a {
    padding: 16px 30px;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s;
}
.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    background: var(--gray-light);
    color: var(--primary);
}

/* Mobile Menu Actions (Login/Register) */
.mobile-menu-actions {
    padding: 20px 30px;
    border-top: 2px solid var(--gray-light);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-menu-actions .btn-login,
.mobile-menu-actions .btn-register,
.mobile-menu-actions .btn-logout,
.mobile-menu-actions .user-greeting-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    display: block;
}

/* Mobile Dropdown in Menu */
.mobile-menu .nav-dropdown {
    display: block;
}
.mobile-menu .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 30px;
    border-bottom: 1px solid var(--gray-light);
}
.mobile-menu .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: var(--gray-light);
    display: none;
    padding: 0;
    margin: 0;
}
.mobile-menu .nav-dropdown.active .nav-dropdown-menu {
    display: block;
}
.mobile-menu .nav-dropdown-menu a {
    padding: 14px 30px 14px 50px !important;
    border-bottom: 1px solid var(--gray-medium);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .listings-grid, .listings-grid-large { grid-template-columns: repeat(2, 1fr); }
    .footer-content, .footer-compact { grid-template-columns: repeat(3, 1fr); }
    .footer-about { max-width: none; }
    .ad-fallback-banner { flex-direction: column; text-align: center; gap: 15px; }
}
@media (max-width: 768px) {
    /* VERBERG desktop navigatie en login buttons */
    .main-navigation { display: none !important; }
    .header-actions { display: none !important; }
    
    /* TOON hamburger menu */
    .mobile-menu-toggle { display: flex !important; }
    
    /* VERBERG Chrome extensie sectie op mobiel */
    .extension-section,
    section[class*="extension"],
    .browser-extension-promo,
    div[class*="extension-"] {
        display: none !important;
    }
    
    /* HOMEPAGE ADVERTENTIES - Mobiel Optimalisatie */
    .ad-with-image {
        flex-direction: column !important;
    }
    
    .ad-banner {
        margin: 12px 0 !important;
        max-width: 100% !important;
        border-radius: 8px !important;
    }
    
    .ad-banner .ad-image {
        width: 100% !important;
        height: 140px !important;
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        padding: 10px !important;
        object-fit: contain !important;
        background: #ffffff !important;
    }
    
    .ad-content-text {
        text-align: left !important;
        align-items: flex-start !important;
        padding: 10px 12px !important;
    }
    
    .ad-content-text h3 {
        font-size: 0.85rem !important;
        line-height: 1.25 !important;
        margin: 0 0 5px 0 !important;
        font-weight: 600 !important;
    }
    
    .ad-content-text .ad-price {
        font-size: 1.3rem !important;
        margin: 5px 0 !important;
        font-weight: 700 !important;
    }
    
    .ad-content-text .ad-cta-btn {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
        margin-top: 5px !important;
    }
    
    .ad-label {
        font-size: 8px !important;
        padding: 2px 5px !important;
        top: 5px !important;
        right: 5px !important;
    }
    
    .homepage-ad-section .container {
        padding: 8px 12px !important;
    }
    
    .banner-only {
        padding: 10px !important;
    }
    
    .banner-only .ad-image {
        max-height: 110px !important;
    }
    
    .ad-link {
        display: block !important;
    }
    
    .header-container { 
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .hero-section h1 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .listings-grid, .listings-grid-large { grid-template-columns: 1fr 1fr; }
    .listings-scroll-container { max-height: 600px; }
    .footer-content, .footer-compact { grid-template-columns: 1fr 1fr; text-align: center; gap: 20px; }
    .footer-about { max-width: none; grid-column: span 2; }
    .ad-fallback-banner { padding: 20px; }
}
@media (max-width: 480px) {
    .listings-grid, .listings-grid-large { grid-template-columns: 1fr; }
    .footer-compact { grid-template-columns: 1fr 1fr; }
    .mobile-menu { width: 100%; }
}

/* ============================================
   SOCIAL MEDIA ICONS
   ============================================ */

.footer-social {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-social h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Mobiel responsive */
@media (max-width: 768px) {
    .footer-social {
        padding: 20px 0 15px;
        margin-top: 20px;
    }
    
    .footer-social h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
