/* --- Instagram Float Button --- */
.instagram-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  position: static;
}
.instagram-float:hover {
  box-shadow: 0 4px 16px rgba(228,64,95,0.25);
  transform: translateY(-2px) scale(1.07);
}
.instagram-float svg {
  display: block;
}
/* Tipizzz Twente — styles.css (High AAA Quality Upgrade)
   Professional, vibrant, accessible.
*/

:root {
  /* Core Palette */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #1a202c;
  --text-light: #4a5568;
  --border: #e2e8f0;

  /* Brand Colors - Refined for Vibrancy & Contrast */
  /* Using a gradient strategy for buttons to reflect the logo */
  --brand-primary: #ff5fa2; /* Pink */
  --brand-secondary: #7b6dff; /* Lilac */
  --brand-dark: #2d3748;
  
  --accent-success: #22c55e;
  --accent-sun: #f59e0b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-primary) 0%, #ff80b5 100%);
  --gradient-secondary: linear-gradient(135deg, var(--brand-secondary) 0%, #9f7aea 100%);
  --gradient-hero: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,1) 100%);

  /* Elevated Shadows (Soft & Modern) */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-brand: 0 10px 25px -5px rgba(255, 95, 162, 0.4);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;

  /* Typography - 'Outfit' is loaded in HTML */
  --font-main: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-head: var(--font-main);
  
  /* Sizes */
  --h1: clamp(2.5rem, 5vw, 3.75rem);
  --h2: clamp(2rem, 3.5vw, 2.75rem);
  --h3: clamp(1.25rem, 2.5vw, 1.75rem);

  /* Focus Ring */
  --focus: 0 0 0 3px rgba(255, 95, 162, 0.3);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

a:hover { color: var(--brand-primary); }

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
    padding: 0;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: var(--brand-dark);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--r-sm);
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); outline: none; box-shadow: var(--focus); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--r-pill); /* Modern Pill Shape */
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  filter: brightness(110%);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(255, 95, 162, 0.5);
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--brand-secondary);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(123, 109, 255, 0.3);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85); /* Glassmorphism */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Mobile: compact navbar */
@media (max-width: 480px) {
  .navbar {
    padding: 8px 0;
  }
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 156px; /* User Requested Size */
  width: auto;
  max-width: min(85vw, 600px);
  object-fit: contain;
  transition: height 0.3s ease;
}

/* Mobile: smaller logo */
@media (max-width: 480px) {
  .brand-logo {
    height: 80px;
    max-width: 200px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .brand-logo {
    height: 100px;
    max-width: 280px;
  }
}

.brand-name {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: var(--r-sm);
  color: white;
  padding: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.15s;
  min-width: 48px;
  min-height: 48px;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: scale(1.05);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle svg { width: 28px; height: 28px; stroke-width: 2.5; }

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: none;
  transform-origin: top;
}

.nav-menu[data-open="true"] { 
  display: block; 
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-list a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  color: var(--text);
  font-weight: 600;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--surface-alt);
  color: var(--brand-primary);
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .nav-list {
    flex-direction: row;
    gap: 32px;
  }
  .nav-list a {
    padding: 8px 0;
    font-size: 1.05rem;
    position: relative;
    border-radius: 0;
  }
  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    background: transparent;
    color: var(--brand-primary);
  }
  /* Underline effect */
  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
  }
  .nav-list a:hover::after,
  .nav-list a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background-color: var(--surface-alt);
}

/* Hero background image (shared across pages) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Primary: hero.jpg. Fallback: hero.jpeg. */
  background-image: url("../img/hero.jpg"), url("../img/hero.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.9; /* Extremely visible */
  filter: saturate(1.03) contrast(1.08) brightness(1.1);
  mix-blend-mode: normal;
}

/* Overlay gradient for depth */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.65) 30%, rgba(255,255,255,0.28) 60%, rgba(255,255,255,0.06) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Mobile: compact hero for single screen view */
@media (max-width: 480px) {
  .hero-inner {
    padding: 24px 0 32px;
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.15;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .hero-actions {
    gap: 10px;
  }
  
  .hero-actions .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-card {
    padding: 20px;
  }
  
  .hero-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-card ul {
    gap: 8px;
  }
  
  .hero-card li {
    font-size: 0.9rem;
    padding-left: 24px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-inner {
    padding: 40px 0;
    gap: 28px;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-card {
    padding: 28px;
  }
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 100px 0;
  }
}

.hero h1 {
  font-size: var(--h1);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Card (Aside) */
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

/* Decorative top border */
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-brand);
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--brand-secondary);
}

.hero-card ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 16px;
}

.hero-card li {
  padding-left: 32px;
  position: relative;
  font-weight: 500;
  color: var(--text);
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 800;
}

/* --- General Sections --- */
.section {
  padding: 80px 0;
}

.section-band {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: var(--h2);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-lead {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* --- Features List --- */
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background: #fff;
  padding: 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 109, 255, 0.3);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--surface-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-content h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.feature-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Reserveren / Pricing Tables --- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

@media (max-width: 720px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

th, td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--surface-alt);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

tr:last-child td { border-bottom: none; }

/* --- Forms --- */
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(123, 109, 255, 0.15);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group { margin-bottom: 24px; }

/* --- Booking (Reserveren v2) --- */
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.booking-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 800;
}

.booking-step .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(123, 109, 255, 0.10);
  border: 1px solid rgba(123, 109, 255, 0.25);
  color: var(--text);
  font-weight: 900;
}

.booking-step.is-active {
  background: rgba(255, 95, 162, 0.10);
  border-color: rgba(255, 95, 162, 0.35);
  color: var(--text);
}

.booking-step.is-active .n {
  background: rgba(255, 95, 162, 0.16);
  border-color: rgba(255, 95, 162, 0.40);
}

.booking-grid {
  display: grid;
  gap: 18px;
}

.booking-calendar-card {
  margin-bottom: 18px;
}

.calendar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.9rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.2);
}

.legend-dot--available { background: #0f766e; }
.legend-dot--full { background: #b91c1c; }
.legend-dot--selected { background: rgba(255, 95, 162, 0.95); }

.calendar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-calendar {
  margin-top: 12px;
  display: block;
}

.calendar-body {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 980px) {
  .calendar-body {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.calendar-request {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.booking-field-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 520px) {
  .booking-field-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-hints {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-top: 8px;
}

.booking-cta {
  margin-top: 12px;
}

.booking-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 980px) {
  .calendar-request {
    position: sticky;
    top: 110px;
  }
}

.calendar-month {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-alt);
  padding: 12px;
}

.calendar-month-title {
  font-weight: 900;
  margin: 0 0 10px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  border-radius: 12px;
  padding: 10px 8px 8px;
  min-height: 60px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  touch-action: manipulation;
}

@media (min-width: 720px) {
  .calendar-day {
    min-height: 70px;
  }
}

.calendar-day::before {
  content: '';
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: transparent;
  opacity: 0;
}

.calendar-day:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(123, 109, 255, 0.35);
}

.calendar-day:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(255,255,255,0.7);
}

.calendar-day.is-disabled::before {
  background: rgba(0,0,0,0.25);
  opacity: 0.35;
}

.calendar-day.is-available {
  border-color: rgba(15, 118, 110, 0.25);
}

.calendar-day.is-available::before {
  background: #0f766e;
  opacity: 1;
}

.calendar-day.is-full {
  border-color: rgba(185, 28, 28, 0.25);
}

.calendar-day.is-full::before {
  background: #b91c1c;
  opacity: 1;
}

.calendar-day.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.calendar-day .d {
  font-weight: 900;
}

.calendar-day .cap {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--text);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2px 7px;
  border-radius: 999px;
}

.calendar-day.is-available .cap {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.10);
  border-color: rgba(15, 118, 110, 0.18);
}

.calendar-day.is-full .cap {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.10);
  border-color: rgba(185, 28, 28, 0.18);
}

.calendar-day.is-selected {
  border-color: rgba(255, 95, 162, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 95, 162, 0.18);
}

.calendar-day.is-selected::before {
  background: rgba(255, 95, 162, 0.95);
  opacity: 1;
}

.calendar-day.is-today {
  border-color: rgba(123, 109, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(123, 109, 255, 0.10);
}

.calendar-day.is-today.is-selected {
  /* selected should remain dominant */
  border-color: rgba(255, 95, 162, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 95, 162, 0.18);
}

.calendar-day.is-in-range {
  border-color: rgba(123, 109, 255, 0.35);
  background: rgba(123, 109, 255, 0.08);
}

@media (min-width: 980px) {
  .booking-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.booking-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.booking-help {
  margin: 0 0 14px;
  color: var(--text-light);
  font-weight: 500;
}

.booking-row {
  display: grid;
  gap: 12px;
}

/* Booking extras (step 2 form) */
.booking-extras {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .booking-extras {
    grid-template-columns: 1fr 1fr;
  }
}

.extra-option {
  display: grid;
  grid-template-columns: 22px 64px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

@media (max-width: 480px) {
  .extra-option {
    grid-template-columns: 22px 52px 1fr auto;
    gap: 10px;
    padding: 10px 12px;
  }
}

.extra-option:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 109, 255, 0.35);
}

.extra-option:focus-within {
  outline: none;
  box-shadow: var(--shadow-md), var(--focus);
  border-color: rgba(255, 95, 162, 0.55);
}

.extra-option__check {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-primary);
}

.extra-option__imgbtn {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--surface-alt);
  overflow: hidden;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

@media (max-width: 480px) {
  .extra-option__imgbtn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }
}

.extra-option__imgbtn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.extra-option__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.extra-option__content {
  min-width: 0;
}

.extra-option__title {
  display: block;
  font-weight: 800;
  line-height: 1.2;
}

.extra-option__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(123, 109, 255, 0.18);
  background: rgba(123, 109, 255, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

/* Small screens: prevent title/price collisions by stacking price below the title */
@media (max-width: 820px) {
  .extra-option {
    grid-template-columns: 22px 64px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
  }

  .extra-option__check {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 6px;
  }

  .extra-option__imgbtn {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .extra-option__content {
    grid-column: 3;
    grid-row: 1;
  }

  .extra-option__title {
    word-break: break-word;
  }

  .extra-option__price {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    margin-top: 6px;
  }
}

.extra-option__unit {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Selected state */
.extra-option__check:checked ~ .extra-option__content .extra-option__title {
  color: var(--brand-primary);
}

.extra-option__check:checked ~ .extra-option__price {
  border-color: rgba(255, 95, 162, 0.22);
  background: rgba(255, 95, 162, 0.12);
}

/* Lightbox (extras image zoom) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__panel {
  position: relative;
  width: min(92vw, 920px);
  max-height: 92vh;
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 95, 162, 0.45);
}

@media (min-width: 720px) {
  .booking-row {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-status {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 12px 14px;
  font-weight: 700;
  color: var(--text);
}

.booking-status[data-type="success"] {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.10);
}

.booking-status[data-type="warning"] {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
}

.booking-status[data-type="danger"] {
  border-color: rgba(255, 95, 162, 0.35);
  background: rgba(255, 95, 162, 0.10);
}

.booking-summary {
  display: grid;
  gap: 10px;
}

.booking-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.booking-summary-item strong {
  font-weight: 900;
}

.booking-total {
  padding: 12px 12px;
  border-radius: var(--r-md);
  border: 2px solid rgba(123, 109, 255, 0.35);
  background: rgba(123, 109, 255, 0.08);
}

.booking-total .price {
  font-weight: 900;
  font-size: 1.25rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 60px 0;
  margin-top: 80px;
}

.site-footer a { color: #cbd5e0; }
.site-footer a:hover { color: #fff; }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-actions {
  display: flex;
  align-items: flex-start;
}

.owner-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.owner-login:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.owner-login:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Video Embed */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Theme Cards (Custom) --- */
.theme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.theme-grid--two {
  max-width: 980px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .theme-grid { grid-template-columns: repeat(3, 1fr); }
  .theme-grid.theme-grid--two { grid-template-columns: repeat(2, 1fr); }
}

.theme-card {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.theme-card--featured {
  position: relative;
  border: 2px solid rgba(255, 95, 162, 0.55);
  box-shadow: var(--shadow-md);
}

.theme-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 109, 255, 0.3);
}

.theme-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.theme-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.theme-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.theme-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.2;
  color: var(--text);
}

.theme-price {
  background: var(--brand-secondary);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #9f7aea 100%);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px -1px rgba(123, 109, 255, 0.3);
}

.theme-description {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.theme-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  display: grid;
  gap: 8px;
}

.theme-list li {
  padding-left: 24px;
  position: relative;
}

.theme-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: bold;
}

.price-was {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 6px;
}

.theme-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.theme-footer .btn {
  width: 100%;
}

.price-small { 
    display: block; 
    text-align: center; 
    font-size: 0.8rem; 
    color: var(--text-light);
    margin-top: 4px;
}

/* --- Social Media Icons --- */
.social {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-btn svg {
  width: 48px;
  height: 48px;
  fill: none; /* Ensure fill is handled by component or svg attr */
}

.icon-btn:hover {
  transform: translateY(-3px);
  color: var(--brand-primary);
}

.icon-btn:hover svg path {
  stroke: var(--brand-primary);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Reduced from 50px as requested/common */
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none; /* No underline */
}

.whatsapp-float:hover {
  background-color: #20ba5a; /* Slightly darker on hover */
  transform: scale(1.1);
  box-shadow: 0px 5px 15px rgba(37, 211, 102, 0.4);
  color: white; /* Ensure text/icon stays white */
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      font-size: 25px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}




/* --- FAQ / Accordion --- */
details {
  background: #ffffff;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  border: 1px solid var(--border);
}

details:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

details[open] {
  box-shadow: var(--shadow-brand); /* Subtle pink glow when active */
  border-color: rgba(255, 95, 162, 0.3);
}

summary {
  padding: 20px 24px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  list-style: none; /* Hide default triangle */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-secondary);
  transition: transform 0.3s ease;
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(45deg); /* Turns + into x */
  color: var(--brand-primary);
}

details[open] summary {
  padding-bottom: 12px; /* Reduce bottom padding when open to connect with content */
  color: var(--brand-primary);
}

.answer {
  padding: 0 24px 24px 24px;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid transparent;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Compact Included Items Grid (AAA) --- */
.included-grid {
  display: grid;
  gap: 16px; /* Space between items */
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet+ */
  }
}

.included-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r-md); /* Smooth rounded corners */
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  font-weight: 700; /* Bold text as requested */
  color: var(--text-dark);
}

.included-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-secondary);
  background: linear-gradient(to right, #ffffff, #fcfaff);
}

.included-icon {
  color: var(--brand-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.included-icon svg {
  width: 20px;
  height: 20px;
}

/* ================================
   Contact Success Modal
   ================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.modal-icon svg {
  width: 44px;
  height: 44px;
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.modal-text {
  color: var(--text-light);
  margin: 0 0 24px;
  line-height: 1.6;
}

.modal-details {
  background: var(--surface-alt);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: left;
}

.modal-details p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.modal-details p + p {
  margin-top: 8px;
}

.modal-details strong {
  color: var(--text-light);
  font-weight: 500;
}

.modal-btn {
  min-width: 160px;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 24px;
  }
  .modal-icon {
    width: 64px;
    height: 64px;
  }
  .modal-icon svg {
    width: 36px;
    height: 36px;
  }
  .modal-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS (v2)
   All pages fully optimized for mobile
   ============================================ */

@media (max-width: 600px) {
  /* --- Global Mobile Reset --- */
  * {
    max-width: 100%;
  }
  
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* --- Page Sections --- */
  section {
    padding: 24px 0;
  }
  
  .section-alt {
    padding: 24px 0;
  }

  /* --- Headings --- */
  h1, .section-title {
    font-size: 1.6rem;
    line-height: 1.2;
    word-wrap: break-word;
  }
  
  h2, .h2 {
    font-size: 1.35rem;
    line-height: 1.25;
  }
  
  h3, .h3 {
    font-size: 1.15rem;
    line-height: 1.3;
  }

  /* --- Booking/Reserveren Page Mobile --- */
  .booking-steps {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .booking-step {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 6px 10px;
    gap: 6px;
    white-space: nowrap;
  }
  
  .booking-step .n {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }

  .booking-grid {
    gap: 12px;
  }
  
  /* Calendar Mobile Optimization */
  .calendar-header {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  
  .calendar-legend {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    gap: 6px;
  }
  
  .legend-item {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 4px 8px;
    gap: 5px;
  }
  
  .legend-dot {
    width: 8px;
    height: 8px;
  }
  
  .calendar-actions {
    width: 100%;
    justify-content: center;
  }
  
  .calendar-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 10px 14px;
  }
  
  .calendar-month {
    padding: 8px;
  }
  
  .calendar-month-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .calendar-weekdays {
    font-size: 0.7rem;
    gap: 3px;
  }
  
  .calendar-grid {
    gap: 3px;
  }
  
  .calendar-day {
    padding: 6px 4px 5px;
    min-height: 42px;
    border-radius: 8px;
  }
  
  .calendar-day .d {
    font-size: 0.8rem;
  }
  
  .calendar-day .cap {
    font-size: 0.6rem;
    padding: 1px 4px;
    right: 3px;
    top: 3px;
  }
  
  .calendar-day::before {
    width: 6px;
    height: 6px;
    left: 4px;
    bottom: 4px;
  }
  
  .calendar-request {
    padding: 12px;
  }
  
  .booking-field-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .booking-hints {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  /* --- Forms Mobile --- */
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important; /* Prevent iOS zoom */
    padding: 12px;
    width: 100%;
  }
  
  textarea {
    min-height: 100px;
  }

  /* --- Cards & Grid Mobile --- */
  .card, .intro-card, .booking-calendar-card {
    padding: 16px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* --- Pricing Page Mobile --- */
  .pricing-grid, .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .price-card, .package-card {
    padding: 20px 16px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .price-period {
    font-size: 0.85rem;
  }
  
  /* --- Tables Mobile --- */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  th, td {
    padding: 10px 8px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* --- Extras Page Mobile --- */
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .extra-item {
    padding: 16px;
  }

  /* --- FAQ Page Mobile --- */
  .faq-item {
    margin-bottom: 12px;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 10px;
  }
  
  .faq-answer {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* --- Contact Page Mobile --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-card {
    padding: 20px 16px;
  }
  
  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Footer Mobile --- */
  .site-footer {
    padding: 24px 0 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* --- Buttons Mobile --- */
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .btn-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
  }
  
  /* Inline button pair - side by side */
  .btn-pair {
    display: flex;
    gap: 8px;
  }
  
  .btn-pair .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* --- CTA Section Mobile --- */
  .cta-section {
    padding: 32px 16px;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* --- Features Grid Mobile --- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  /* --- Algemene Voorwaarden Mobile --- */
  .terms-content, .legal-content {
    padding: 16px;
    font-size: 0.9rem;
  }
  
  .terms-content h2, .legal-content h2 {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  
  .terms-content h3, .legal-content h3 {
    font-size: 1.05rem;
  }
  
  .terms-content ul, .legal-content ul {
    padding-left: 20px;
  }
  
  .terms-content li, .legal-content li {
    margin-bottom: 8px;
  }
}
