/* =====================================================
   LAAKSHOP.EU - SHARED STYLESHEET
   Apple-inspired design met Glassmorphism
   ===================================================== */

:root {
  --accent: #0071e3;
  --accent-dark: #005bb5;
  --fg: #1d1d1f;
  --fg2: #6e6e73;
  --bg-light: #f5f5f7;
  --white: #ffffff;
  --glass: rgba(255,255,255,0.75);
  --radius: 18px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #fff; color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 980px; font-size: 17px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; border: none; font-family: inherit; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,113,227,0.3); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 17px 36px; font-size: 18px; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--fg); color: #fff; }
.text-center { text-align: center; }

/* Section Headers */
.section-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 700; letter-spacing: -0.02em; color: var(--fg); margin-top: 8px; }
.section-header p { font-size: 18px; color: var(--fg2); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 999; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.4); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--fg); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; background: #fff; box-shadow: var(--shadow-lg); padding: 20px 24px; }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid #f0f0f0; font-size: 16px; font-weight: 500; }
.mobile-menu .btn { margin-top: 16px; display: block; text-align: center; }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; margin-left: 3px; }
.dropdown-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 12px; min-width: 240px; display: none; z-index: 100; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; transition: background 0.15s; }
.dropdown-menu a:hover { background: var(--bg-light); color: var(--accent); }
@media (max-width: 768px) { .nav-links { display: none; } .nav-toggle { display: flex; } .mobile-menu.open { display: block; } }

/* Hero */
.hero { padding: 100px 0 80px; background: linear-gradient(180deg,#f5f5f7 0%,#fff 100%); text-align: center; overflow: hidden; }
.hero-badge { display: inline-block; background: rgba(0,113,227,0.1); color: var(--accent); padding: 6px 16px; border-radius: 980px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px,5vw,68px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero > .container > p { font-size: clamp(17px,2vw,21px); color: var(--fg2); max-width: 640px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 40px; font-weight: 700; color: var(--accent); display: block; }
.hero-stat-label { font-size: 13px; color: var(--fg2); font-weight: 500; }

/* Logo Slider */
.logo-slider { padding: 40px 0; border-top: 1px solid #e8e8ed; border-bottom: 1px solid #e8e8ed; overflow: hidden; }
.logo-slider-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--fg2); margin-bottom: 28px; }
.logo-track { display: flex; align-items: center; gap: 60px; width: max-content; animation: logo-scroll 20s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-track img { height: 44px; width: auto; object-fit: contain; opacity: 0.5; filter: grayscale(1); transition: all 0.3s; }
.logo-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #e8e8ed; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card-body p { font-size: 14px; color: var(--fg2); line-height: 1.6; }
.service-card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-size: 14px; font-weight: 600; margin-top: 14px; }
.service-card:hover .service-card-link::after { transform: translateX(4px); }
.service-card-link::after { content: '→'; transition: transform 0.2s; }

/* Trust / Stats dark */
.trust-section { background: var(--fg); color: #fff; padding: 96px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; margin-top: 56px; }
.trust-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: background 0.3s; }
.trust-card:hover { background: rgba(255,255,255,0.1); }
.trust-card .num { font-size: 48px; font-weight: 700; color: var(--accent); display: block; }
.trust-card .label { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* Portfolio Slider */
.portfolio-slider { padding: 96px 0; background: var(--bg-light); overflow: hidden; }
.slider-wrapper { overflow: hidden; margin-top: 48px; }
.slider-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide { min-width: 80%; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); flex-shrink: 0; }
@media (min-width: 768px) { .slide { min-width: 55%; } }
@media (min-width: 1100px) { .slide { min-width: 42%; } }
.slide img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.slide-footer { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.slide-footer strong { font-size: 16px; font-weight: 700; }
.slide-footer span { font-size: 13px; color: var(--accent); font-weight: 600; }
.slider-controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; align-items: center; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid #e8e8ed; background: #fff; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.slider-btn:hover { border-color: var(--accent); color: var(--accent); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; border: none; cursor: pointer; transition: all 0.3s; }
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* Page Hero (dienst/regio pages) */
.page-hero { padding: 80px 0 60px; background: linear-gradient(135deg,#f5f5f7 0%,#e8f0fa 100%); }
.page-hero h1 { font-size: clamp(32px,4vw,56px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: var(--fg2); max-width: 680px; margin-bottom: 32px; }
.page-hero .breadcrumb { font-size: 13px; color: var(--fg2); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero .breadcrumb span::before { content: ' › '; }

/* Content sections */
.content-block { padding: 64px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-grid img { border-radius: 24px; box-shadow: var(--shadow-lg); }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; } }
.content-text h2 { font-size: clamp(24px,3vw,36px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.content-text p { color: var(--fg2); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.check-list { margin: 24px 0; }
.check-list li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--fg2); font-size: 16px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* CTA Box */
.cta-box { background: linear-gradient(135deg,rgba(0,113,227,0.08) 0%,rgba(0,113,227,0.02) 100%); border: 1.5px solid rgba(0,113,227,0.2); border-radius: 24px; padding: 48px; text-align: center; }
.cta-box h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-box p { color: var(--fg2); font-size: 17px; margin-bottom: 28px; }

/* Region tags */
.region-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.region-tag { display: inline-block; padding: 8px 16px; background: #fff; border: 1.5px solid #e8e8ed; border-radius: 980px; font-size: 13px; font-weight: 500; color: var(--fg2); text-decoration: none; transition: all 0.2s; }
.region-tag:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,113,227,0.05); }

/* FAQ / Accordion */
.faq-item { border-bottom: 1px solid #e8e8ed; }
.faq-question { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; cursor: pointer; font-size: 17px; font-weight: 600; color: var(--fg); display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-question::after { content: '+'; font-size: 22px; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; color: var(--fg2); font-size: 16px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* Contact Form */
.contact-section { padding: 96px 0; background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.contact-info p { color: var(--fg2); font-size: 17px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(0,113,227,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item-text .label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--fg2); }
.contact-item-text a, .contact-item-text span { font-size: 17px; font-weight: 600; color: var(--fg); transition: color 0.2s; }
.contact-item-text a:hover { color: var(--accent); }
.contact-form-wrapper { background: #fff; border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #e8e8ed; border-radius: 12px; font-family: inherit; font-size: 15px; color: var(--fg); background: #fff; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 17px; }
.form-success { display: none; background: rgba(0,113,227,0.1); border: 1.5px solid rgba(0,113,227,0.3); border-radius: 12px; padding: 16px; text-align: center; color: var(--accent); font-weight: 600; margin-top: 16px; }

/* Footer */
.footer { background: var(--fg); color: #fff; padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 36px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* WhatsApp */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 1000; background: #fff; border-radius: 980px; padding: 12px 20px 12px 14px; box-shadow: 0 8px 28px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 10px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.22); }
.whatsapp-icon { width: 40px; height: 40px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; position: relative; }
.whatsapp-icon::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25d366; animation: whatsapp-pulse 2s infinite; }
@keyframes whatsapp-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
.whatsapp-icon svg { position: relative; z-index: 1; }
.whatsapp-text { font-size: 14px; font-weight: 600; color: var(--fg); }
@media (max-width: 480px) { .whatsapp-text { display: none; } .whatsapp-btn { padding: 10px; border-radius: 50%; } }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Quote */
.quote-section { padding: 100px 0; text-align: center; }
.quote-section blockquote { font-size: clamp(22px,3.5vw,40px); font-weight: 600; letter-spacing: -0.02em; max-width: 900px; margin: 0 auto; line-height: 1.3; }
.quote-section cite { display: block; margin-top: 24px; font-size: 16px; color: var(--fg2); font-style: normal; }
