/* ============================================
   SCHIPHOL TRANSFER TAXI - Business Class CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C8A96E;
  --gold-light: #E5C99A;
  --gold-dark: #A07840;
  --black: #0A0A0A;
  --dark: #111318;
  --dark2: #1A1D24;
  --dark3: #22262F;
  --white: #FFFFFF;
  --white-soft: #F5F3EF;
  --gray: #8A8F9A;
  --gray-light: #C5C8D0;
  --text: #E8E4DC;
  --border: rgba(200,169,110,0.25);
  --shadow: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-gold: 0 4px 24px rgba(200,169,110,0.25);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --header-h: 90px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width:100%; height:auto; display:block; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

#header.scrolled {
  height: 70px;
  background: rgba(10,10,10,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo-text { line-height: 1.15; }

.logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
}

.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

/* Nav */
.nav { display:flex; align-items:center; gap:6px; }

.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: rgba(200,169,110,0.08); }

/* Pages Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.nav-dropdown-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.nav-dropdown-btn .arrow { font-size: 0.7rem; transition: var(--transition); }
.nav-dropdown.open .nav-dropdown-btn .arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 280px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-section { margin-bottom: 4px; }
.dropdown-section-title {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px 4px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--gray-light);
  font-size: 0.84rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-link:hover { background: rgba(200,169,110,0.1); color: var(--gold); }
.dropdown-link .icon { font-size: 1rem; width: 20px; text-align: center; }
.dropdown-sep { height: 1px; background: var(--border); margin: 6px 0; }

/* Header Right */
.header-right { display:flex; align-items:center; gap:12px; }

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: #25D366;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #20bd5a; color: var(--white); transform: translateY(-1px); }
.btn-whatsapp svg { width:16px; height:16px; fill: white; flex-shrink:0; }

.lang-toggle {
  display: flex;
  gap: 3px;
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  background: none;
  border: none;
}
.lang-btn.active { background: var(--gold); color: var(--black); }
.lang-btn:hover:not(.active) { color: var(--gold-light); }

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(17,19,24,0.85) 50%, rgba(10,10,10,0.90) 100%),
    url('images/hero-bg.svg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 580px;
  margin-bottom: 42px;
  font-weight: 400;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,110,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,110,0.06); }

/* Hero Stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 70px;
  background: rgba(200,169,110,0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeUp 0.9s ease 0.4s both;
}
.stat-item {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ===== BOOKING WIDGET ===== */
.booking-section {
  background: var(--dark2);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.booking-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.booking-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
}
.booking-card .sub { color: var(--gray); text-align: center; margin-bottom: 32px; font-size: 0.92rem; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); background: rgba(200,169,110,0.06); }
.form-group select option { background: var(--dark2); color: var(--white); }

.booking-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--gray);
}
.booking-feature .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--dark2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(200,169,110,0.18); border-color: var(--gold); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===== FLEET GRID ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.fleet-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
}

.fleet-info { padding: 24px; }
.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.fleet-info .fleet-desc { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.fleet-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-light);
}
.fleet-spec .ic { color: var(--gold); }

/* ===== PRICES TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.price-table th {
  background: var(--dark3);
  padding: 16px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}
.price-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.price-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }
.price-table td {
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.price-table tr:hover td { background: rgba(200,169,110,0.04); }
.price-table .price-val { color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.price-table .badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200,169,110,0.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--gray-light); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.author-from { font-size: 0.78rem; color: var(--gray); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.why-visual {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.why-visual .big-icon { font-size: 5rem; }
.why-visual h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.why-visual p { color: var(--gray); font-size: 0.9rem; max-width: 280px; }

.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--gold); }
.why-item-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item-text h4 { font-weight: 700; color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.why-item-text p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.area-card:hover { border-color: var(--gold); background: rgba(200,169,110,0.06); }
.area-card .flag { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.area-card .city { font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.area-card .km { font-size: 0.78rem; color: var(--gold); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-arrow { color: var(--gold); font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q .faq-arrow { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.07) 0%, transparent 65%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--gray); margin-bottom: 34px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; max-width: 280px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social:hover { border-color: var(--gold); background: rgba(200,169,110,0.1); }

.footer-col h4 {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--gray); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-item .ic { color: var(--gold); font-size: 1rem; width: 20px; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.87rem; color: var(--gray); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom .links a { font-size: 0.82rem; color: var(--gray); }
.footer-bottom .links a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { display: inline-block; font-size: 0.72rem; color: var(--gold); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== CONTENT SECTIONS ===== */
.content-block { max-width: 860px; margin: 0 auto; }
.content-block h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 18px; }
.content-block h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; margin-top: 30px; }
.content-block p { color: var(--gray); margin-bottom: 16px; line-height: 1.9; }
.content-block ul { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.content-block ul li { color: var(--gray); padding-left: 20px; position: relative; line-height: 1.7; font-size: 0.95rem; }
.content-block ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 4px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.info-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.info-card h4 { color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.info-card p { color: var(--gray); font-size: 0.9rem; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item .icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.contact-info-item h4 { color: var(--white); font-weight: 700; margin-bottom: 4px; font-size: 0.9rem; }
.contact-info-item p, .contact-info-item a { color: var(--gray); font-size: 0.88rem; }

.contact-form { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: var(--transition);
}
.form-group textarea:focus { border-color: var(--gold); background: rgba(200,169,110,0.06); }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; text-align: center; }
.team-avatar { width: 72px; height: 72px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; }
.team-card h4 { color: var(--white); font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== LANGUAGE VISIBILITY ===== */
[data-lang="nl"] { display: none; }
body.lang-nl [data-lang="nl"] { display: revert; }
body.lang-nl [data-lang="en"] { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav { display: none; }
  .mobile-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .hero-cta { flex-direction: column; }
  .booking-card { padding: 28px 20px; }
  .booking-grid { grid-template-columns: 1fr; }
  .logo-text .brand { font-size: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-right { gap: 8px; }
  .btn-whatsapp span { display: none; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}
