/* ============================================================
   VAN DER VEEN VERHUUR EN HANDEL - STIJLBESTAND
   Modern, snel, mobielvriendelijk en CRO-geoptimaliseerd
   ============================================================ */

:root {
  --primary: #0c2340;       /* Marineblauw uit het bedrijfslogo */
  --primary-light: #163d6e;
  --accent-blue: #1b6ca8;
  --accent-orange: #ff6b35;  /* Feestelijk oranje voor acties & knoppen */
  --accent-yellow: #ffb703;
  --whatsapp-green: #25D366; /* Officiële WhatsApp kleur */
  --whatsapp-dark: #128C7E;
  --success: #10b981;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.06);
  --shadow-md: 0 6px 20px rgba(12, 35, 64, 0.1);
  --shadow-lg: 0 12px 32px rgba(12, 35, 64, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR & HEADER
   ============================================================ */
.topbar {
  background: var(--primary);
  color: #e2e8f0;
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.topbar-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* MAIN NAVBAR */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   BUTTONS & CTAS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #091a30 0%, #0c2340 50%, #163d6e 100%);
  color: #ffffff;
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--whatsapp-green);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 span.highlight {
  color: var(--accent-yellow);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #e2e8f0;
  font-weight: 500;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

/* HERO VISUAL CARD */
.hero-card {
  background: var(--bg-white);
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-badge-tag {
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero-card-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-card-img-wrap img {
  transform: scale(1.03);
}

.hero-card-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.hero-card-price span {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--text-muted);
}

/* ============================================================
   AEO / DIRECT ANSWER BLOCK
   ============================================================ */
.aeo-section {
  padding: 30px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.aeo-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.aeo-icon {
  font-size: 2rem;
  line-height: 1;
}

.aeo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.aeo-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

.aeo-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.aeo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid #cbd5e1;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section {
  padding: 70px 0;
}

.section-alt {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  background: #ffedd5;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ============================================================
   SPRINGKUSSEN PRODUCT CARDS (CRO)
   ============================================================ */
.castles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.castle-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.castle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.castle-card.featured {
  border: 2px solid var(--accent-orange);
}

.card-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.card-badge-top.popular {
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
}

.castle-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.castle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.castle-card:hover .castle-img-wrap img {
  transform: scale(1.05);
}

.castle-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.castle-header {
  margin-bottom: 14px;
}

.castle-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.castle-type {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 600;
}

.castle-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  border: 1px solid var(--border-color);
}

.castle-price-amount {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.castle-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.castle-price-note {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.castle-specs {
  list-style: none;
  margin-bottom: 22px;
  font-size: 0.875rem;
}

.castle-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed var(--border-color);
}

.castle-specs li:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-value {
  font-weight: 700;
  color: var(--text-main);
}

.castle-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   DELIVERY ZONE SECTION (20 KM RADIUS)
   ============================================================ */
.radius-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #163d6e 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.radius-badge-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 30px 20px;
}

.radius-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-yellow);
}

.radius-text-top {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.radius-subtext {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 8px;
}

.radius-places-box h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.radius-places-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.places-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.place-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.place-tag:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
}

/* ============================================================
   HOW IT WORKS (4 STAPPEN)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border-color);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--accent-orange);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.step-icon {
  font-size: 2.2rem;
  margin: 10px 0 14px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   BOOKING & QUOTE FORM WITH WHATSAPP CONVERTER
   ============================================================ */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.booking-info {
  background: linear-gradient(135deg, var(--primary) 0%, #163d6e 100%);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-info h3 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.booking-info p {
  color: #cbd5e1;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.contact-quick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-quick-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.booking-form-box {
  padding: 40px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #061324;
  color: #94a3b8;
  padding: 60px 0 24px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

/* ============================================================
   STICKY FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  animation: float-pulse 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.05);
  color: #ffffff;
}

.whatsapp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #ffffff;
  color: var(--whatsapp-green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

@keyframes float-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 998;
  padding: 10px 16px;
}

.mobile-bottom-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-pill, .hero-ctas, .hero-trust-badges {
    justify-content: center;
  }
  .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .castles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .radius-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .places-grid {
    justify-content: center;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .booking-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .castles-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .floating-whatsapp {
    bottom: 74px; /* Space above mobile bottom bar */
    right: 16px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 65px; /* Room for bottom bar */
  }
}
