/* ==================================================
   Side Jeep Safari .de  –  Styles
   ================================================== */
:root {
  --bg: #f5f7ff;
  --text: #1b2230;
  --primary: #2f46a3;
  --primary-dark: #233782;
  --accent: #1fc978;
  --accent-dark: #18a663;
  --card: #ffffff;
  --dark: #1f2f43;
  --muted: #6d7789;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(20,36,83,.12);
  --shadow-sm: 0 8px 20px rgba(31,57,140,.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(47,70,163,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(15,24,52,.18);
}

.nav-wrap {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.brand {
  color: #fff; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px; font-size: 1.1rem;
  white-space: nowrap;
}
.brand-logo { height: 48px; width: auto; border-radius: 8px; }

.main-nav { display: flex; gap: 24px; }
.main-nav a { color: #dfe7ff; font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.phone-chip {
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .92rem;
  transition: background .2s;
}
.phone-chip:hover { background: rgba(255,255,255,.12); }

.lang-switch {
  background: rgba(255,255,255,.12);
  border-radius: 999px; padding: 3px; display: inline-flex; gap: 3px;
}
.lang-btn {
  display: inline-block; border: 0; background: transparent; color: #fff;
  font-weight: 700; border-radius: 999px; padding: 7px 11px; cursor: pointer;
  font-size: .88rem; text-align: center; transition: .2s;
}
.lang-btn.active { background: #fff; color: var(--primary); }

/* Hamburger */
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px; padding: 12px 22px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: .25s; border: 0; cursor: pointer; font-size: .95rem;
}
.btn-primary { background: var(--accent); color: #083a22; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { border: 1px solid #cfd8f8; color: #34415f; background: #fff; }
.btn-ghost:hover { background: #eef2ff; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.icon-wa { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  padding: 68px 0 60px;
  background: linear-gradient(135deg, #eef2ff 0%, #edf8f3 100%);
}

.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: center; gap: 36px;
}

.eyebrow {
  display: inline-block; background: rgba(31,201,120,.14); color: #129456;
  padding: 7px 14px; border-radius: 999px; font-weight: 700;
  font-size: .88rem; letter-spacing: .02em; margin-bottom: 14px;
}

h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.18; }
h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }

.hero-text, .section-text { color: #3f4a5f; font-size: 1.06rem; line-height: 1.72; max-width: 640px; }

.hero-stats {
  margin-top: 22px;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px;
}
.stat {
  background: var(--card); border-radius: 14px; padding: 14px;
  box-shadow: var(--shadow-sm);
}
.stat strong { display: block; font-size: 1.05rem; color: var(--primary); }
.stat span { color: #69748a; font-size: .88rem; }

.hero-cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

.hero-card img {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow);
}

/* ---------- Gallery strip ---------- */
.gallery-section { padding: 0; overflow: hidden; }
.gallery-strip {
  display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 20px 0;
}
.gallery-strip img {
  flex: 0 0 280px; height: 200px; object-fit: cover;
  border-radius: 14px; scroll-snap-align: start;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }

.feature-grid {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px;
}
.feature-card {
  background: var(--card); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 1.8rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); margin: 0; font-size: .93rem; }

/* ---------- Dark section (Programm) ---------- */
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2 { color: #fff; }

.timeline { margin-top: 18px; display: grid; gap: 8px; }
.timeline-item {
  background: rgba(255,255,255,.07); border-radius: 12px; padding: 14px 18px;
  display: grid; grid-template-columns: 72px 1fr; align-items: center;
}
.timeline-time { font-weight: 700; color: #8eeabf; font-size: 1.02rem; }
.timeline-item p { margin: 0; color: #e0e9ff; }

/* ---------- Two-col (included / excluded) ---------- */
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }

.check-list, .x-list, .contact-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .x-list li {
  margin-bottom: 8px; background: #fff; border-radius: 12px;
  padding: 12px 14px; color: #2b3953; border: 1px solid #e4ebff;
  font-size: .95rem;
}
.check-list li::before { content: "✓  "; color: #11a65f; font-weight: 800; }
.x-list li::before { content: "✕  "; color: #cf365b; font-weight: 800; }

/* ---------- Reviews ---------- */
.section-reviews { background: linear-gradient(160deg, #edf7ff 0%, #f7f0ff 100%); }

.reviews-grid {
  margin-top: 20px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 16px;
}
.review-card {
  background: #fff; border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; display: flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem;
}
.review-stars { color: #f5a623; font-size: .95rem; letter-spacing: 1px; }
.review-card p { color: #4a566e; font-size: .93rem; line-height: 1.6; margin: 0; }

/* ---------- Tips ---------- */
.section-tips { background: linear-gradient(160deg, #edf7ff 0%, #fff5ec 100%); }
.tips-grid {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;
}
.tips-grid p {
  margin: 0; background: #fff; border-radius: 12px; padding: 14px 16px;
  border: 1px solid #e5ebfb; color: #43506a; font-size: .95rem;
}

/* ---------- Booking form ---------- */
.section-booking { background: linear-gradient(160deg, #f0f4ff 0%, #e8faf0 100%); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
}

.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(20,36,83,.1);
}

.booking-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid #eef2ff;
}
.booking-card-header .booking-icon { font-size: 2rem; }
.booking-card-header h2 { margin: 0; font-size: 1.5rem; }
.booking-card-header p { margin: 0; color: var(--muted); font-size: .93rem; }

/* Steps */
.form-step {
  margin-bottom: 20px;
  padding: 18px 20px;
  background: #f8faff;
  border-radius: 14px;
  border: 1px solid #e8eeff;
}
.form-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  margin-bottom: 14px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}

.booking-form .form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.booking-form .form-group { margin-bottom: 10px; }
.booking-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3d4f6e;
  font-size: .88rem;
}
.booking-form .form-group label small { color: var(--muted); font-weight: 400; }
.booking-form .form-group label .req { color: #e53e3e; }

.booking-form .form-group input,
.booking-form .form-group textarea,
.booking-form .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d0d9f0;
  border-radius: 12px;
  font-size: .95rem;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,70,163,.12);
}
.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
  color: #b0bdd4;
}

/* Quantity control — higher specificity */
.booking-form .qty-control {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  border: 1.5px solid #d0d9f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 46px;
}
.booking-form .qty-control input[type="number"] {
  border: 0 !important;
  border-left: 1px solid #e8eeff !important;
  border-right: 1px solid #e8eeff !important;
  border-radius: 0 !important;
  text-align: center;
  width: 100% !important;
  min-width: 0;
  padding: 11px 4px;
  font-weight: 700;
  font-size: 1rem;
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  box-shadow: none !important;
  flex: 1;
}
.booking-form .qty-control input[type="number"]::-webkit-outer-spin-button,
.booking-form .qty-control input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.booking-form .qty-btn {
  background: #f0f4ff;
  border: 0;
  width: 46px;
  min-width: 46px;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--primary);
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.booking-form .qty-btn:hover { background: #dfe7ff; }

/* Form bottom */
.form-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.form-price-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
}
.price-label { font-size: .82rem; opacity: .85; }
.price-amount { font-size: 1.5rem; font-weight: 800; }

.btn-book {
  flex: 1;
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-size: 1.05rem;
  background: var(--accent);
  color: #083a22;
  box-shadow: 0 6px 20px rgba(31,201,120,.3);
  transition: .25s;
}
.btn-book:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 8px 28px rgba(31,201,120,.4);
  transform: translateY(-2px);
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.badge {
  display: inline-block;
  background: #edf7f0;
  color: #155724;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid #c3e6cb;
}

.alert {
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-ok { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20,36,83,.1);
}
.sidebar-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sidebar-body { padding: 20px; }
.sidebar-body h3 { font-size: 1.1rem; margin-bottom: 14px; }

.sidebar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.sidebar-features li {
  padding: 6px 0;
  font-size: .9rem;
  color: #4a566e;
  border-bottom: 1px solid #f0f4ff;
}
.sidebar-features li:last-child { border-bottom: 0; }

.sidebar-prices {
  background: #f8faff;
  border-radius: 12px;
  padding: 12px;
}
.sidebar-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: .93rem;
}
.sidebar-price-row strong { color: var(--primary); font-size: 1.1rem; }

.sidebar-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  transition: .25s;
  text-align: center;
}
.sidebar-wa:hover { background: #1fb855; transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #edf2ff; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.site-footer h3, .site-footer h4 { color: #fff; }
.contact-list li { margin-bottom: 10px; color: #d9e3ff; font-size: .94rem; }
.contact-list a:hover { text-decoration: underline; }
.footer-btn { margin-top: 14px; }
.muted { color: #9bb0d6; font-size: .88rem; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
}
.whatsapp-fab a {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .25s;
  animation: wa-pulse 2s infinite;
}
.whatsapp-fab a:hover { transform: scale(1.12); animation: none; }

.whatsapp-fab .fab-tooltip {
  position: absolute; bottom: 72px; right: 0;
  background: #1f2f43; color: #fff; font-size: .82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  opacity: 0; transform: translateY(6px); transition: .3s;
  pointer-events: none;
}
.whatsapp-fab .fab-tooltip::after {
  content: ''; position: absolute; bottom: -6px; right: 22px;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 6px solid #1f2f43;
}
.whatsapp-fab a:hover + .fab-tooltip,
.whatsapp-fab:hover .fab-tooltip {
  opacity: 1; transform: translateY(0);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--primary-dark); padding: 16px 24px; gap: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
  }
  .main-nav.open { display: flex; }

  .hero-grid, .two-col, .footer-grid, .tips-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 40px 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .form-bottom { flex-direction: column; }
  .btn-book { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .phone-chip { display: none; }
  .section { padding: 52px 0; }
  .feature-grid { grid-template-columns: 1fr; }
}
