/* ============================================
   LACHGAS EXPRESS V2 - Açık Tema
   Font: Inter + DM Serif Display
   Renk: Teal (#0B9E6F)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --teal: #0B9E6F;
    --teal-dark: #088A5E;
    --teal-light: #0FC88C;
    --teal-bg: #E8FAF3;
    --dark: #1A1D23;
    --dark-2: #2C3038;
    --gray-900: #1E2128;
    --gray-700: #4A4F5C;
    --gray-500: #7C8290;
    --gray-300: #B8BCC5;
    --gray-100: #ECEEF2;
    --bg: #FAFBFF;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --font: 'Inter', sans-serif;
    --serif: 'DM Serif Display', serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
    --max-w: 1140px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-full); font-family: var(--font);
    font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn--teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,158,111,0.3); }
.btn--outline-dark { background: transparent; color: var(--dark); border-color: var(--gray-300); }
.btn--outline-dark:hover { border-color: var(--dark); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn--white:hover { background: var(--teal-bg); transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 16px 38px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 14px 0; background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100); transition: var(--transition);
}
.header--scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 38px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 36px; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--gray-700); transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px; background: var(--teal); transition: var(--transition); transform: translateX(-50%); border-radius: 1px; }
.nav-link:hover, .nav-link--active { color: var(--dark); }
.nav-link:hover::after, .nav-link--active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__wa { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--whatsapp); color: var(--white); transition: var(--transition); }
.header__wa:hover { transform: scale(1.1); box-shadow: 0 0 16px rgba(37,211,102,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; height: 28px; background: none; border: none; cursor: pointer; justify-content: center; padding: 0; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger--active span:nth-child(2) { opacity: 0; }
.hamburger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu { position: fixed; inset: 0; z-index: 2000; pointer-events: none; visibility: hidden; }
.mobile-menu--open { pointer-events: all; visibility: visible; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.mobile-menu--open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel { position: absolute; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100%; background: var(--white); transform: translateX(100%); transition: transform 0.3s; display: flex; flex-direction: column; padding: 24px; box-shadow: -4px 0 20px rgba(0,0,0,0.1); }
.mobile-menu--open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-menu__header img { height: 34px; width: auto; }
.mobile-menu__close { background: none; border: none; color: var(--dark); font-size: 28px; cursor: pointer; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__link { display: block; padding: 12px 16px; font-size: 1.05rem; font-weight: 500; border-radius: var(--radius); transition: var(--transition); color: var(--gray-700); }
.mobile-menu__link:hover, .mobile-menu__link--active { background: var(--teal-bg); color: var(--teal); }
.mobile-menu__footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.mobile-menu__phone { display: block; text-align: center; font-weight: 600; color: var(--gray-500); }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 140px 0 80px; text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: var(--teal-bg); border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; color: var(--teal); margin-bottom: 28px; }
.hero__badge svg { width: 16px; height: 16px; }
.hero__title { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 20px; color: var(--dark); }
.hero__title em { font-style: normal; color: var(--teal); }
.hero__desc { font-size: 1.15rem; color: var(--gray-500); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__image { margin-top: 60px; display: flex; justify-content: center; }
.hero__image img { border-radius: var(--radius-lg); max-height: 440px; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ============================================
   STATS BAR
   ============================================ */
.stats { padding: 60px 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.stat__number { font-family: var(--serif); font-size: 2.8rem; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: 0.95rem; color: var(--gray-500); font-weight: 500; }

/* ============================================
   HOE WERKT HET (How it works)
   ============================================ */
.steps { padding: 80px 0; background: var(--bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header__title { font-family: var(--serif); font-size: 2.2rem; color: var(--dark); margin-bottom: 12px; }
.section-header__sub { font-size: 1.05rem; color: var(--gray-500); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; position: relative; }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: var(--white); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.step__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step__desc { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* ============================================
   PRODUCT
   ============================================ */
.product { padding: 80px 0; background: var(--white); }
.product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product__img { border-radius: var(--radius-lg); overflow: hidden; background: var(--teal-bg); padding: 40px; display: flex; justify-content: center; }
.product__img img { max-height: 400px; object-fit: contain; }
.product__title { font-family: var(--serif); font-size: 2rem; margin-bottom: 16px; }
.product__text { font-size: 1.05rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }
.product__features { list-style: none; margin-bottom: 28px; }
.product__features li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--gray-700); font-size: 0.95rem; }
.product__features li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--teal-bg); border: 2px solid var(--teal); }

/* ============================================
   WHY US
   ============================================ */
.why { padding: 80px 0; background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: var(--teal-bg); color: var(--teal); margin-bottom: 20px; }
.why-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card__desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band { padding: 60px 0; background: var(--teal); text-align: center; }
.cta-band__title { font-family: var(--serif); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-band__desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 48px 0; background: var(--white); border-top: 1px solid var(--gray-100); }
.footer__grid { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: center; }
.footer__logo img { height: 36px; width: auto; opacity: 0.6; }
.footer__contact { display: flex; align-items: center; gap: 10px; color: var(--gray-500); font-weight: 500; transition: var(--transition); }
.footer__contact:hover { color: var(--teal); }
.footer__link { color: var(--gray-500); font-weight: 500; transition: var(--transition); }
.footer__link:hover { color: var(--teal); }

/* ============================================
   FAB (WhatsApp)
   ============================================ */
.fab { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center; z-index: 900; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: var(--transition); }
.fab:hover { transform: scale(1.1); }
.fab--hidden { transform: translateY(100px); opacity: 0; pointer-events: none; }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BEZORGLOCATIES PAGE
   ============================================ */
.locations { padding: 140px 0 80px; }
.locations__header { text-align: center; margin-bottom: 40px; }
.locations__title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.locations__title em { font-style: normal; color: var(--teal); }
.locations__sub { font-size: 1.05rem; color: var(--gray-500); }
.locations__search { max-width: 420px; margin: 0 auto 48px; position: relative; }
.locations__search input { width: 100%; padding: 14px 20px 14px 48px; border: 2px solid var(--gray-100); border-radius: var(--radius-full); font-family: var(--font); font-size: 1rem; background: var(--white); color: var(--dark); outline: none; transition: var(--transition); }
.locations__search input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11,158,111,0.1); }
.locations__search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray-300); }
.locations__region { margin-bottom: 36px; }
.locations__region-title { font-size: 1rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-100); }
.locations__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.loc-chip { display: flex; align-items: center; justify-content: center; padding: 14px 18px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); font-weight: 500; font-size: 0.9rem; color: var(--gray-700); transition: var(--transition); text-align: center; }
.loc-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-bg); transform: translateY(-2px); }

/* ============================================
   LOCATION DETAIL PAGE
   ============================================ */
.loc-hero { padding: 140px 0 56px; background: linear-gradient(180deg, var(--teal-bg) 0%, var(--bg) 100%); }
.loc-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-300); margin-bottom: 20px; flex-wrap: wrap; }
.loc-hero__breadcrumb a { color: var(--gray-500); transition: var(--transition); }
.loc-hero__breadcrumb a:hover { color: var(--teal); }
.loc-hero__breadcrumb span { color: var(--gray-300); }
.loc-hero__breadcrumb span:last-child { color: var(--dark); font-weight: 600; }
.loc-hero__title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.loc-hero__title em { font-style: normal; color: var(--teal); }
.loc-hero__sub { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 28px; }
.loc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Main content grid */
.loc-main { padding: 56px 0 72px; }
.loc-main__grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.loc-main__content { display: flex; flex-direction: column; gap: 0; }

/* Content blocks */
.loc-block { margin-bottom: 40px; }
.loc-block h2 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 14px; color: var(--dark); }
.loc-block p { font-size: 1rem; color: var(--gray-700); line-height: 1.85; }
.loc-block--cta { background: var(--teal-bg); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.loc-block--cta h2 { color: var(--teal-dark); }
.loc-block--cta p { margin-bottom: 20px; }

/* Steps row */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.step-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.step-card__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* Sidebar */
.loc-sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 16px; }
.loc-sidebar__card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 24px; }
.loc-sidebar__card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.loc-sidebar__card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 16px; }
.loc-sidebar__card--teal { background: var(--teal); border-color: var(--teal); color: var(--white); }
.loc-sidebar__card--teal h3 { color: var(--white); }
.loc-sidebar__card--teal p { color: rgba(255,255,255,0.85); }
.loc-sidebar__pros { list-style: none; padding: 0; margin: 0; }
.loc-sidebar__pros li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 0.9rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.loc-sidebar__pros li:last-child { border-bottom: none; }
.loc-sidebar__pros li svg { flex-shrink: 0; margin-top: 2px; }

.btn--white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn--white:hover { background: var(--teal-bg); border-color: var(--teal-bg); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); margin-top: 8px; }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Nearby locations */
.loc-nearby { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--gray-100); text-align: center; }
.loc-nearby h2 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 20px; }
.loc-nearby__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .header__nav { display: none; }
    .hamburger { display: flex; }
    .hero__title { font-size: 2.4rem; }
    .stats__grid { grid-template-columns: 1fr; gap: 24px; }
    .steps__grid { grid-template-columns: 1fr; gap: 32px; max-width: 360px; margin: 0 auto; }
    .product__grid { grid-template-columns: 1fr; text-align: center; }
    .product__features { display: inline-block; text-align: left; }
    .why__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .footer__contact { justify-content: center; }
    .loc-main__grid { grid-template-columns: 1fr; }
    .loc-sidebar { position: static; }
    .steps-row { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}
@media (max-width: 767px) {
    .hero { padding: 110px 0 48px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .stats { padding: 40px 0; }
    .steps, .product, .why { padding: 48px 0; }
    .locations__grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .loc-hero { padding: 110px 0 40px; }
    .loc-hero__actions { flex-direction: column; }
}
