/* ==========================================================================
   GLOBALTECH DEMO WEB GENERATOR - CONSULTORIO MÉDICO & RESERVAS
   Design System: Premium Healthcare, Mobile-First, High-Conversion
   ========================================================================== */

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

:root {
  /* Color Tokens */
  --primary-navy: #0B2545;
  --primary-dark: #13315C;
  --accent-blue: #134074;
  --brand-teal: #00A896;
  --brand-teal-dark: #028090;
  --brand-teal-light: #E0F7F6;
  --brand-cyan: #0284C7;
  --cyan-soft: #E0F2FE;
  
  --success-green: #10B981;
  --success-light: #D1FAE5;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  
  --bg-slate: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-focus: #0284C7;
  
  /* Shadows & Radii */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 8px 24px rgba(0, 168, 150, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-slate);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky CTA */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(0, 168, 150, 0.35);
}

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

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

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-dark);
  background: var(--brand-teal-light);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* Demo Notice Top Banner */
.demo-badge-bar {
  background: #0F172A;
  color: #94A3B8;
  font-size: 0.78rem;
  padding: 8px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-badge-bar strong {
  color: #38BDF8;
}

.demo-badge-tag {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

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

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

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.brand-text h2 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

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

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-link:hover {
  color: var(--brand-teal-dark);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 70px;
  background: radial-gradient(circle at top right, rgba(0, 168, 150, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(2, 132, 199, 0.06), transparent 50%),
              var(--bg-slate);
  overflow: hidden;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(0, 168, 150, 0.2);
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--primary-navy);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.1rem;
    line-height: 1.18;
  }
}

.hero-title span {
  background: linear-gradient(135deg, var(--brand-teal-dark), var(--brand-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.highlight-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Hero Doctor Card */
.hero-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

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

.hero-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success-green);
  box-shadow: 0 0 0 4px var(--success-light);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-time {
  font-size: 0.78rem;
  color: var(--brand-teal-dark);
  font-weight: 700;
  background: var(--brand-teal-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Sections Global */
.section {
  padding: 80px 0;
}

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

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

.section-tag {
  color: var(--brand-teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

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

/* Doctor Presentation Section */
.doctor-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-slate);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .doctor-profile-grid {
    grid-template-columns: 360px 1fr;
    padding: 50px;
    gap: 60px;
  }
}

.doctor-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.doctor-img-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.doctor-pill-ref {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.doctor-info h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.doctor-specialty {
  color: var(--brand-teal-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}

.doctor-bio {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.doctor-traits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .doctor-traits {
    grid-template-columns: 1fr 1fr;
  }
}

.trait-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trait-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trait-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.trait-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 150, 0.4);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--cyan-soft);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
}

.service-duration {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.service-title {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn {
  width: 100%;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   INTERACTIVE BOOKING ENGINE (THE STAR FEATURE)
   ========================================================================== */
.booking-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-slate) 100%);
  position: relative;
}

.booking-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

/* Steps Header */
.booking-steps-nav {
  display: flex;
  background: var(--bg-slate);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.step-indicator {
  flex: 1;
  min-width: 130px;
  padding: 16px 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-indicator.active {
  color: var(--brand-teal-dark);
  background: var(--bg-white);
  border-bottom-color: var(--brand-teal);
}

.step-indicator.active .step-num {
  background: var(--brand-teal);
  color: #fff;
}

.step-indicator.completed {
  color: var(--success-green);
}

.step-indicator.completed .step-num {
  background: var(--success-green);
  color: #fff;
}

/* Steps Body */
.booking-body {
  padding: 30px 20px;
}

@media (min-width: 768px) {
  .booking-body {
    padding: 44px;
  }
}

.booking-step-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.booking-step-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--primary-navy);
}

.step-help {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Step 1: Services Selector */
.service-select-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .service-select-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-select-option {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.service-select-option:hover {
  border-color: var(--brand-teal);
  background: var(--brand-teal-light);
}

.service-select-option.selected {
  border-color: var(--brand-teal);
  background: rgba(0, 168, 150, 0.06);
  box-shadow: 0 0 0 2px var(--brand-teal);
}

.option-radio {
  margin-top: 3px;
  accent-color: var(--brand-teal);
}

.option-details h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.option-details p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.option-duration {
  font-size: 0.74rem;
  color: var(--brand-teal-dark);
  font-weight: 700;
  display: inline-block;
}

/* Step 2: Calendar UI */
.calendar-container {
  max-width: 480px;
  margin: 0 auto 30px;
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-light);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-month {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: capitalize;
}

.cal-nav-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-navy);
  font-weight: bold;
  transition: var(--transition);
}

.cal-nav-btn:hover {
  background: var(--brand-teal-light);
  border-color: var(--brand-teal);
  color: var(--brand-teal-dark);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-main);
}

.cal-day:hover:not(.disabled) {
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
  border-color: var(--brand-teal);
}

.cal-day.selected {
  background: var(--brand-teal) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 168, 150, 0.4);
}

.cal-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: transparent;
  color: var(--text-light);
}

.cal-day.today {
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}

/* Step 3: Time Slots */
.slots-container {
  max-width: 600px;
  margin: 0 auto 30px;
}

.slots-subhead {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (min-width: 576px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.time-slot-btn {
  background: var(--bg-slate);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.time-slot-btn:hover {
  border-color: var(--brand-teal);
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
}

.time-slot-btn.selected {
  background: var(--brand-teal);
  color: #fff;
  border-color: var(--brand-teal);
  box-shadow: 0 4px 10px rgba(0, 168, 150, 0.35);
}

/* Step 4: Patient Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-label span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
}

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

.form-input:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.selected-summary-badge {
  background: var(--brand-teal-light);
  border: 1px solid rgba(0, 168, 150, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  max-width: 600px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--primary-navy);
}

/* Step 5: Confirmation Ticket */
.ticket-wrapper {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.ticket-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  animation: scaleUp 0.4s ease;
}

@keyframes scaleUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ticket-card {
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  border: 2px dashed var(--border-light);
  padding: 24px;
  margin: 24px 0 28px;
  text-align: left;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.ticket-code {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-teal-dark);
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.ticket-label {
  color: var(--text-muted);
}

.ticket-val {
  font-weight: 700;
  color: var(--primary-navy);
  text-align: right;
}

.ticket-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Navigation buttons in booking */
.booking-nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  margin-top: 20px;
}

/* Schedule & Location */
.schedule-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .schedule-location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-teal-light);
  color: var(--brand-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary-navy);
}

.map-placeholder {
  background: #E2E8F0;
  border-radius: var(--radius-sm);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 8px;
  margin-top: 20px;
  border: 1px dashed #CBD5E1;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-balloon {
  background: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: none;
  animation: bounceSoft 3s infinite;
}

@media (min-width: 768px) {
  .whatsapp-balloon {
    display: block;
  }
}

@keyframes bounceSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-circle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-circle-btn:hover {
  transform: scale(1.08);
  background: var(--whatsapp-dark);
}

/* Mobile Sticky Bottom CTA */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 990;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

/* Footer */
.footer {
  background: #0B192C;
  color: #94A3B8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.footer-links a:hover {
  color: #38BDF8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-globaltech {
  color: #38BDF8;
  font-weight: 600;
}
