:root {
  --bg: #fff;
  --border: #ededed;
  --accent: #ffce43;
  --text: #181818;
  --grey: #333;
  --cta: #181818;
  --radius: 14px;
  --shadow: 0 6px 30px #0002;
  --edge-padding: 24px;
}

body { 
  background: #fafafa; 
  margin:0; 
  font-family: 'Inter', sans-serif; 
}

.booking-card {
  margin: 40px auto;
  background: var(--bg);
  border-radius: 25px;
  box-shadow: var(--shadow);
  padding: var(--edge-padding);
}

.booking-center-title {
  text-align: center;
  font-weight: 700;
  margin: 0 0 18px 0;
  font-size: 1.4rem;
  color: var(--cta);
  letter-spacing: 0.01em;
}

.tablist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  border-bottom: 1.5px solid #f6f6f6;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.tab {
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  cursor: pointer;
  padding: 6px 12px 8px 12px;
  transition: color 0.2s;
  outline-offset: 2px;
}
.tab.is-active {
  color: var(--text);
}
.tab.is-active:after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  height: 3px;
  bottom: -8px;
  background: var(--accent);
  border-radius: 4px;
}

.tabpanel {
  margin-top: 0;
  padding-top: 10px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.form-row {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-bottom: 0;
}

.form-row input[type="text"], 
.form-row input[type="email"], 
.form-row input[type="tel"],
.form-row input[type="date"], 
.form-row input[type="time"], 
.form-row select {
  flex: 1;
  padding: 13px 14px;
  border: 1.4px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: #fafafa;
  color: var(--grey);
  outline: none;
  min-width: 0;
}
input:focus, select:focus { border-color: var(--accent); background: #fff9e6; }

.label-and-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex:1;
  min-width:0;
}
.label-and-field label {
  font-size: .98em;
  margin-bottom: 3px;
  font-weight: 600;
  color: #8a8117;
}

.center-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cta-btn {
  margin-top: 10px;
  padding: 16px 34px;
  font-size: 1.14rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--cta);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
}
.cta-btn:hover { background: var(--accent); color: var(--cta); }

/* Make padding customizable for mobile */
@media (max-width: 800px) {
  :root { --edge-padding: 10px; }
  .tablist { gap: 12px; }
  .booking-card { padding: var(--edge-padding); }
  .form-row { flex-direction: column; gap: 9px;}
  .center-actions { width: 100%; }
}


/* Common Section */
.common-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.common-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.common-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #111827;
}

.common-content p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* CTA Buttons */
.common-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #0066cc;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
  background: #0052a3;
}

.btn-outline {
  border: 2px solid #0066cc;
  color: #0066cc;
  background: #fff;
}

.btn-outline:hover {
  background: #0066cc;
  color: #fff;
}

.common-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .common-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .common-cta {
    justify-content: center;
  }

  .common-image {
    order: -1; /* image first on mobile */
  }
}


/* Footer container (no visual box, just positioning context) */
.fab-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;              /* lift off very bottom for safe area */
  pointer-events: none;      /* let only the buttons receive clicks */
  z-index: 9999;
}

/* Common button styles */
.fab-btn {
  position: fixed;
  bottom: clamp(12px, 2.5vh, 20px);
  width: clamp(48px, 6.5vw, 60px);
  height: clamp(48px, 6.5vw, 60px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0A0A0A;
  background: #FFD400;       /* Phone default yellow */
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  text-decoration: none;
  pointer-events: auto;      /* clickable */
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* Icon sizing */
.fab-btn i {
  font-size: clamp(18px, 3.5vw, 22px);
}

/* Left/Right anchors */
.fab-left  { left: clamp(12px, 3vw, 24px); }
.fab-right { right: clamp(12px, 3vw, 24px); }

/* Colors per action */
.fab-left  { background: #FFD400; color: #0A0A0A; }     /* Phone */
.fab-right { background: #25D366; color: #FFFFFF; }     /* WhatsApp */

/* Hover/Active feedback (desktop) */
.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  filter: brightness(1.02);
}
.fab-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

/* High-contrast focus ring for accessibility */
.fab-btn:focus {
  outline: 3px solid rgba(0,0,0,0.25);
  outline-offset: 3px;
}

/* Safe areas for devices with notches/home indicators */
@supports (padding: max(0px)) {
  .fab-btn {
    bottom: max(clamp(12px, 2.5vh, 20px), env(safe-area-inset-bottom));
  }
  .fab-left {
    left: max(clamp(12px, 3vw, 24px), env(safe-area-inset-left));
  }
  .fab-right {
    right: max(clamp(12px, 3vw, 24px), env(safe-area-inset-right));
  }
}

/* Optional: hide on print */
@media print {
  .fab-footer, .fab-btn { display: none !important; }
}
