@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; color: #111827; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2563EB; text-decoration: none; }
a:hover { color: #1e40af; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; font-weight: 700; color: #111827; line-height: 1.2; }
p { margin-bottom: 16px; }
:focus-visible { outline: 2px solid #2563EB; outline-offset: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 100; background: #1e293b; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; letter-spacing: -0.01em; }
.nav-logo:hover { color: #fff; }
.nav-logo .logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo .logo-dot { color: #60A5FA; }
.nav-links { display: none; align-items: center; gap: 2px; background: rgba(255,255,255,0.07); border-radius: 10px; padding: 4px; }
.nav-links a { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.65); padding: 7px 16px; border-radius: 7px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { background: none; border: none; font: inherit; font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.65); cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 7px 16px; border-radius: 7px; transition: color 0.15s, background 0.15s; }
.nav-dropdown-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); min-width: 200px; padding: 6px; z-index: 50; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 8px 12px; font-size: 0.8125rem; color: #374151; border-radius: 6px; transition: background 0.15s; }
.nav-dropdown-menu a:hover { background: #F3F4F6; color: #111827; }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 20px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: 0.3s; }
@media (min-width: 1024px) { .hamburger { display: none; } }

.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 99; padding: 16px 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 1.0625rem; font-weight: 500; color: #111827; border-bottom: 1px solid #F3F4F6; }
.mobile-menu a:hover { color: #2563EB; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 440px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,41,59,0.6) 50%, rgba(37,99,235,0.4) 100%); z-index: 1; }
.hero-container { position: relative; z-index: 1; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 80px; }
@media (min-width: 768px) { .hero { min-height: 480px; } .hero-container { min-height: 480px; } }

/* Donkerblauwe kaart linksonder */
.hero-card { background: rgba(30,41,59,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 16px; padding: 32px; max-width: 480px; color: #fff; }
@media (min-width: 768px) { .hero-card { padding: 36px 40px; } }
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.htb { display: inline-flex; align-items: center; gap: 5px; font-size: 0.6875rem; font-weight: 600; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); padding: 5px 10px; border-radius: 20px; }
.htb svg { flex-shrink: 0; }
.hero-card h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); color: #fff; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.hero-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 20px; }
.hero-links { display: flex; gap: 16px; margin-top: 14px; }
.hero-links a { font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: color 0.15s; text-decoration: underline; text-underline-offset: 3px; }
.hero-links a:hover { color: #fff; }
.hero-search { display: flex; border-radius: 8px; overflow: hidden; }
.hero-search select { flex: 1; padding: 13px 14px; border: none; font-size: 0.875rem; background: rgba(255,255,255,0.12); color: #fff; font-family: inherit; appearance: none; cursor: pointer; }
.hero-search select option { color: #111827; background: #fff; }
.hero-search button { padding: 13px 20px; background: #059669; color: #fff; border: none; font-family: 'Manrope',sans-serif; font-size: 0.8125rem; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.hero-search button:hover { background: #047857; }

/* Overlappende foto's rechts */
.hero-floating-photos { display: none; }
@media (min-width: 1024px) {
  .hero-floating-photos { display: block; position: absolute; right: 48px; top: 50%; transform: translateY(-50%); z-index: 2; }
  .hfp-wrap { position: relative; }
  .hfp-1 { width: 280px; z-index: 2; }
  .hfp-1 img { width: 100%; border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
  .hfp-2 { width: 220px; position: absolute; bottom: -40px; right: -30px; z-index: 3; }
  .hfp-2 img { width: 100%; border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  .hfp-badge { position: absolute; background: #fff; padding: 6px 12px; border-radius: 50px; font-size: 0.625rem; font-weight: 600; color: #111827; box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 5px; white-space: nowrap; z-index: 5; }
  .hfp-badge svg { flex-shrink: 0; }
  .hfp-badge-top { top: -10px; left: -10px; }
  .hfp-badge-bot { bottom: 44px; left: -16px; }
  .hfp-cta { position: absolute; bottom: 10px; left: 10px; right: 10px; background: rgba(5,150,105,0.9); color: #fff; font-size: 0.625rem; font-weight: 700; font-family: 'Manrope',sans-serif; text-align: center; padding: 7px; border-radius: 8px; text-decoration: none; transition: background 0.2s; z-index: 5; }
  .hfp-cta:hover { background: #047857; color: #fff; }
}

/* Stats balk onderaan */
.hero-bottom-bar { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(15,23,42,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 16px 24px; z-index: 3; }
.hbb-item { text-align: center; padding: 0 20px; }
.hbb-item strong { font-family: 'Manrope',sans-serif; font-weight: 800; font-size: 1.125rem; color: #fff; display: block; line-height: 1; }
.hbb-item span { font-size: 0.5625rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; display: block; }
.hbb-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }

/* Legacy hide */
.hero-split-dark,.hero-visual,.hero-photos-stack,.hp-main,.hp-float,.hp-badge,.hero-wave,.hero-nums,.hero-split,.hero-photo,.hero-inner,.hero-counters,.hero-counter,.hero-stat-box,.hs-num,.hs-lbl,.hero-mosaic,.mosaic-lg,.mosaic-sm,.mosaic-stat,.hero-layout,.hero-grid,.hero-cards,.hero-img-card,.hero-stats-card,.hero-badge,.hero-content-box,.hero-overlay { display: none !important; }

/* ===== STATS BAR ===== */
.stats-bar { background: #F9FAFB; border-bottom: 1px solid #E5E7EB; padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 24px 16px; }
.stat-number { display: block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.5rem; color: #111827; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.75rem; color: #9CA3AF; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== TRUST BADGES ===== */
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 28px; }
@media (min-width: 1024px) { .trust-bar { justify-content: flex-start; } }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: #F9FAFB; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #2563EB; background: #EFF6FF; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
.section-header h2 { font-size: 1.75rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.section-header p { color: #6B7280; font-size: 1.0625rem; max-width: 560px; margin: 0 auto; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }

/* ===== PROVINCE CARDS ===== */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px; transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #2563EB, #3B82F6); opacity: 0; transition: opacity 0.3s; }
.card:hover { box-shadow: 0 12px 32px rgba(37,99,235,0.1); transform: translateY(-4px); border-color: #BFDBFE; }
.card:hover::before { opacity: 1; }
.card-provincie { display: inline-flex; align-items: center; gap: 6px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #2563EB; background: #EFF6FF; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.card h3 { font-size: 1.0625rem; margin-bottom: 6px; line-height: 1.3; }
.card h3 a { color: #111827; transition: color 0.2s; }
.card h3 a:hover { color: #2563EB; }
.card-stad { font-size: 0.8125rem; color: #6B7280; margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.card-stad svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-rating { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid #F3F4F6; }
.card-stars { color: #FBBF24; font-size: 0.9375rem; letter-spacing: 1px; }
.card-score { font-weight: 700; font-size: 0.875rem; color: #111827; }
.card-reviews { font-size: 0.75rem; color: #9CA3AF; }

/* Search result badges */
.card-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.card-erkend { display: inline-flex; align-items: center; gap: 5px; background: #F0FDF4; color: #166534; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 12px; border: 1px solid #BBF7D0; }
.card-erkend svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-cat { display: inline-flex; align-items: center; background: #EFF6FF; color: #1E40AF; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 12px; border: 1px solid #BFDBFE; }

.card-arrow { position: absolute; bottom: 24px; right: 24px; width: 32px; height: 32px; background: #EFF6FF; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.card:hover .card-arrow { background: #2563EB; transform: translateX(4px); }
.card-arrow svg { width: 16px; height: 16px; color: #2563EB; transition: color 0.2s; }
.card:hover .card-arrow svg { color: #fff; }

/* ===== STARS ===== */
.stars { color: #FBBF24; letter-spacing: 1px; }
.stars .empty { color: #D1D5DB; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.step { text-align: center; padding: 32px 24px; background: #fff; border-radius: 16px; border: 1px solid #E5E7EB; transition: box-shadow 0.3s, transform 0.3s; }
.step:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-4px); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #2563EB; color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.875rem; border-radius: 50%; margin-bottom: 16px; }
.step-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
.step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.step p { font-size: 0.9375rem; color: #6B7280; margin: 0; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 600; color: #111827; text-align: left; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: #2563EB; }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: #9CA3AF; transition: transform 0.3s, color 0.2s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: #2563EB; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 20px; color: #4B5563; font-size: 0.9375rem; line-height: 1.7; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px; transition: box-shadow 0.3s; }
.testimonial:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.testimonial-stars { color: #FBBF24; font-size: 0.875rem; margin-bottom: 12px; display: block; }
.testimonial-text { font-size: 0.9375rem; color: #374151; line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #2563EB, #3B82F6); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: #111827; }
.testimonial-location { font-size: 0.75rem; color: #9CA3AF; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, #1e3a5f 0%, #2563EB 100%); color: #fff; padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 70%); }
.cta-section h2 { color: #fff; font-size: 1.75rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 24px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: #059669; color: #fff; border: none; border-radius: 12px; font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); text-decoration: none; box-shadow: 0 8px 24px rgba(5,150,105,0.3); position: relative; overflow: hidden; }
.cta-btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); transition: left 0.5s; }
.cta-btn:hover { background: #047857; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(5,150,105,0.4); }
.cta-btn:hover::after { left: 100%; }
.cta-btn:active { transform: scale(0.98); }

/* ===== SEARCH PAGE ===== */
.search-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .search-layout { grid-template-columns: 280px 1fr; } }

.filters { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px; height: fit-content; position: sticky; top: 84px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.filters h3 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #EFF6FF; }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: #374151; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group input, .filter-group select { width: 100%; padding: 10px 12px; border: 1px solid #D1D5DB; border-radius: 8px; font-size: 1rem; font-family: inherit; }
.filter-group input:focus, .filter-group select:focus { outline: none; border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.filter-group input[type="range"] { padding: 0; border: none; box-shadow: none; accent-color: #2563EB; }
.filter-value { font-size: 0.875rem; color: #2563EB; font-weight: 700; }

.results-count { font-size: 1rem; color: #6B7280; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #F3F4F6; }
.results-count strong { color: #111827; font-weight: 700; }

.result-card { display: flex; gap: 16px; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 20px; transition: box-shadow 0.2s, border-color 0.2s; margin-bottom: 12px; }
.result-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-color: #BFDBFE; }
.result-thumb { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.result-info h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.result-info h3 a { color: #111827; }
.result-info h3 a:hover { color: #2563EB; }
.result-meta { font-size: 0.875rem; color: #6B7280; margin-bottom: 6px; }
.result-arrow { display: flex; align-items: center; justify-content: center; width: 40px; flex-shrink: 0; color: #D1D5DB; transition: color 0.2s; }
.result-card:hover .result-arrow { color: #2563EB; }
.result-arrow svg { width: 20px; height: 20px; }
.load-more-wrap { text-align: center; padding: 24px 0; }
.load-more-btn { background: #2563EB; color: #fff; border: none; padding: 14px 36px; border-radius: 10px; font-weight: 700; font-family: 'Manrope', sans-serif; font-size: 0.9375rem; cursor: pointer; transition: background 0.2s; }
.load-more-btn:hover { background: #1e40af; }
.no-results { text-align: center; padding: 64px 24px; color: #6B7280; font-size: 1rem; }
.no-results svg { width: 48px; height: 48px; color: #D1D5DB; margin: 0 auto 16px; }
.no-results p { margin: 0; }

/* ===== FOOTER ===== */
.ft { background: #1e293b; }

/* Footer main */
.ft-main { padding: 36px 0 28px; }
.ft-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr; gap: 28px; }
@media (max-width: 768px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

.ft-col:last-child { text-align: center; }
.ft-action-btn { display: inline-block; background: #059669; color: #fff; padding: 8px 16px; border-radius: 6px; font-family: 'Manrope',sans-serif; font-size: 0.6875rem; font-weight: 700; transition: background 0.2s; text-decoration: none; text-align: center; }
.ft-action-btn:hover { background: #047857; color: #fff; }
.ft-action-link { display: block; margin-top: 8px; font-size: 0.5625rem; color: #6B7280; text-align: center; }
.ft-action-link:hover { color: #fff; }
@media (max-width: 480px) { .ft-grid { grid-template-columns: 1fr; gap: 16px; } }
.ft-logo { font-family: 'Manrope',sans-serif; font-weight: 800; font-size: 1rem; color: #fff; margin-bottom: 6px; }
.ft-logo span { color: #60A5FA; }
.ft-brand-col p { font-size: 0.6875rem; color: #475569; line-height: 1.5; margin: 0 0 10px; }
.ft-contact { display: flex; flex-direction: column; gap: 6px; }
.ft-contact a { display: inline-flex; align-items: center; gap: 6px; color: #94A3B8; font-size: 0.6875rem; transition: color 0.15s; }
.ft-contact a svg { flex-shrink: 0; color: #475569; }
.ft-contact a:hover { color: #fff; }
.ft-contact a:hover svg { color: #94A3B8; }
.ft-col h4 { color: #475569; font-family: 'Manrope',sans-serif; font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.ft-col a { display: block; color: #94A3B8; font-size: 0.75rem; padding: 3px 0; transition: color 0.15s; }
.ft-col a:hover { color: #fff; }
.ft-bar { border-top: 1px solid #1E293B; padding: 12px 0; font-size: 0.5625rem; color: #334155; text-align: center; }
/* Legacy hide */
.site-footer,.footer-banner,.footer-cta-stripe,.footer-links-area,.fcs-inner,.fb-grid,.fla-grid,.footer-photos,.footer-main,.footer-top,.footer-bottom-wrap,.footer-bottom,.footer-inner,.footer-brand,.footer-desc,.footer-cta,.footer-cta-card,.footer-cta-text,.footer-cta-box,.footer-top-section,.footer-columns,.cta-section { display: none !important; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1e293b; color: #fff; padding: 16px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; z-index: 1000; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); border-top: 1px solid #334155; }
.cookie-banner p { font-size: 0.875rem; margin: 0; flex: 1; min-width: 200px; color: #CBD5E1; }
.cookie-banner button { background: #2563EB; color: #fff; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 0.875rem; transition: background 0.2s; }
.cookie-banner button:hover { background: #1e40af; }

/* ===== CONTACT PAGE ===== */
.contact-hero { background: #1e293b; color: #fff; padding: 48px 0 40px; text-align: center; }
.contact-hero h1 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.contact-hero p { color: rgba(255,255,255,0.7); margin: 0; font-size: 1rem; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 600px; margin: 0 auto 48px; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 32px 24px; text-decoration: none; color: #111827; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.contact-card:hover { box-shadow: 0 8px 24px rgba(37,99,235,0.1); transform: translateY(-3px); border-color: #BFDBFE; color: #111827; }
.contact-card-icon { width: 52px; height: 52px; background: #EFF6FF; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.contact-card-icon svg { width: 24px; height: 24px; color: #2563EB; }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card-value { font-size: 1.125rem; font-weight: 700; color: #2563EB; display: block; margin-bottom: 4px; }
.contact-card-sub { font-size: 0.75rem; color: #9CA3AF; }

.contact-info-section { max-width: 600px; margin: 0 auto; }
.contact-info-section h2 { font-size: 1.375rem; margin-bottom: 12px; }
.contact-info-section h3 { font-size: 1.0625rem; margin: 24px 0 8px; }
.contact-info-section p { color: #4B5563; line-height: 1.7; }

/* ===== PRIVACY PAGE ===== */
.content-page { padding: 56px 0; max-width: 720px; margin: 0 auto; }
.content-page h1 { font-size: 2rem; margin-bottom: 24px; }
.content-page h2 { font-size: 1.375rem; margin: 32px 0 12px; }
.content-page p, .content-page li { color: #4B5563; line-height: 1.7; margin-bottom: 12px; }
.content-page ul { padding-left: 24px; list-style: disc; }

/* ===== SCROLL REVEAL ===== */
@media (prefers-reduced-motion: reduce) { .animate-in { opacity: 1; transform: none; transition: none; } }
