/* ==========================================================================
   SIRIUS PET'S HOUSE - VIP ONLINE REZERVASYON STİLLERİ (reservation.css)
   Mobile-First & Desktop High-End Luxury Boutique Experience
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PAGE WRAPPER & LAYOUT
   -------------------------------------------------------------------------- */
.res-page {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.res-main-content {
  flex: 1;
  padding: 32px 0 60px;
}

/* Breadcrumb Bar */
.res-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.res-breadcrumb-nav a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.res-breadcrumb-nav a:hover {
  color: var(--accent-caramel);
}

.res-breadcrumb-sep {
  color: #D1C7BD;
  font-size: 0.75rem;
}

.res-breadcrumb-current {
  color: var(--accent-caramel-hover);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. LUXURY HERO BANNER
   -------------------------------------------------------------------------- */
.res-hero-banner {
  background: linear-gradient(135deg, #261910 0%, #170E08 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(23, 14, 8, 0.28);
  margin-bottom: 36px;
  border: 1px solid rgba(200, 138, 88, 0.25);
}

.res-hero-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(200, 138, 88, 0.22) 0%, rgba(200, 138, 88, 0) 70%);
  pointer-events: none;
}

.res-hero-paw-decor {
  position: absolute;
  right: 28px;
  bottom: -20px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.035);
  transform: rotate(-15deg);
  pointer-events: none;
}

.res-hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 138, 88, 0.2);
  border: 1px solid rgba(200, 138, 88, 0.45);
  color: #F7D4B2;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.res-hero-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.res-hero-title span {
  color: #F3B579;
  font-style: italic;
}

.res-hero-desc {
  color: #E2D7CC;
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Hero Trust Bullets */
.res-hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.res-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #F2EAE1;
}

.res-trust-item i {
  color: #E29B63;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   3. DESKTOP 2-COLUMN GRID & RESPONSIVE CONTAINER
   -------------------------------------------------------------------------- */
.res-booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 992px) {
  .res-booking-grid {
    grid-template-columns: 1.55fr 1fr;
    gap: 36px;
  }
}

@media (min-width: 1200px) {
  .res-booking-grid {
    grid-template-columns: 1.65fr 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   4. FORM SECTIONS & LUXURY CARDS
   -------------------------------------------------------------------------- */
.res-step-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  margin-bottom: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.res-step-card:hover {
  box-shadow: var(--shadow-md);
}

.res-step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #F3ECE4;
  padding-bottom: 18px;
}

.res-step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-caramel) 0%, #A56434 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200, 138, 88, 0.35);
}

.res-step-title-wrap {
  flex: 1;
}

.res-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.res-step-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Form Elements */
.res-form-group {
  margin-bottom: 20px;
}

.res-form-group:last-child {
  margin-bottom: 0;
}

.res-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.res-label .req {
  color: #E25858;
  margin-left: 2px;
}

.res-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.res-input-icon {
  position: absolute;
  left: 16px;
  color: #9C8C80;
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.res-input {
  width: 100%;
  height: 52px;
  background: #FAF7F4;
  border: 1.5px solid #E6DCD1;
  border-radius: var(--radius-md);
  padding: 0 16px 0 46px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 500;
  outline: none;
  transition: all 0.22s ease;
}

.res-input:focus {
  background: #FFFFFF;
  border-color: var(--accent-caramel);
  box-shadow: 0 0 0 4px rgba(200, 138, 88, 0.14);
}

.res-input:focus + .res-input-icon,
.res-input-wrap:focus-within .res-input-icon {
  color: var(--accent-caramel);
}

.res-input::placeholder {
  color: #A99C92;
  font-weight: 400;
}

.res-textarea {
  width: 100%;
  min-height: 96px;
  background: #FAF7F4;
  border: 1.5px solid #E6DCD1;
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 46px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  resize: vertical;
  line-height: 1.5;
  transition: all 0.22s ease;
}

.res-textarea:focus {
  background: #FFFFFF;
  border-color: var(--accent-caramel);
  box-shadow: 0 0 0 4px rgba(200, 138, 88, 0.14);
}

/* Quick Irk (Breed) Chips */
.res-quick-chips-bar {
  margin-top: 10px;
}

.res-chips-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.res-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.res-breed-chip {
  background: #F3ECE4;
  border: 1px solid #E2D7CC;
  color: #4A3A30;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.res-breed-chip:hover {
  background: var(--accent-caramel-light);
  border-color: var(--accent-caramel);
  color: var(--accent-caramel-hover);
  transform: translateY(-1px);
}

.res-breed-chip.active {
  background: var(--accent-caramel);
  border-color: var(--accent-caramel);
  color: #FFFFFF;
}

/* 2-Col Input Row */
.res-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .res-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

/* Dog Size Segmented Picker */
.res-size-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.res-size-card {
  background: #FAF7F4;
  border: 1.5px solid #E6DCD1;
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
}

.res-size-card:hover {
  border-color: var(--accent-caramel);
  background: #FFFFFF;
}

.res-size-card.active {
  background: #FFFFFF;
  border-color: var(--accent-caramel);
  box-shadow: 0 0 0 3px rgba(200, 138, 88, 0.16);
}

.res-size-icon {
  font-size: 1.35rem;
  color: #9C8C80;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.res-size-card.active .res-size-icon {
  color: var(--accent-caramel);
}

.res-size-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.res-size-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. INTERACTIVE SERVICE SELECT CARDS (VISUAL GRID)
   -------------------------------------------------------------------------- */
.res-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .res-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.res-service-card {
  background: #FAF7F4;
  border: 1.5px solid #E6DCD1;
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
}

.res-service-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-caramel);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42, 30, 23, 0.08);
}

.res-service-card.active {
  background: #FFFFFF;
  border-color: var(--accent-caramel);
  box-shadow: 0 0 0 3px rgba(200, 138, 88, 0.18), 0 8px 24px rgba(42, 30, 23, 0.1);
}

.res-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.res-service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F3ECE4;
  color: var(--accent-caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.res-service-card.active .res-service-icon-box {
  background: var(--accent-caramel);
  color: #FFFFFF;
}

.res-service-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #C8BBB0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.res-service-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-caramel);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.res-service-card.active .res-service-radio {
  border-color: var(--accent-caramel);
}

.res-service-card.active .res-service-radio::after {
  opacity: 1;
  transform: scale(1);
}

.res-service-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #E29B63 0%, #C88A58 100%);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 8px rgba(200, 138, 88, 0.4);
}

.res-service-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.res-service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.res-service-price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px dashed #EAE0D6;
}

.res-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-caramel-hover);
}

.res-price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. VIP ADD-ONS (BANYO & MAMA BAR)
   -------------------------------------------------------------------------- */
.res-addon-card {
  background: #FAF7F4;
  border: 1.5px solid #E6DCD1;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.22s ease;
}

.res-addon-card:last-child {
  margin-bottom: 0;
}

.res-addon-card.is-active {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.res-addon-card.mama-card.is-active {
  border-color: #D97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.res-addon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.res-addon-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.res-addon-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.res-addon-badge.blue {
  background: #E0F2FE;
  color: #0369A1;
}

.res-addon-badge.amber {
  background: #FEF3C7;
  color: #B45309;
}

.res-addon-select-wrap {
  position: relative;
}

.res-addon-select {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1.5px solid #D9CDC1;
  border-radius: var(--radius-md);
  padding: 0 40px 0 16px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s ease;
}

.res-addon-select:focus {
  border-color: var(--accent-caramel);
  box-shadow: 0 0 0 3px rgba(200, 138, 88, 0.14);
}

.res-select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9C8C80;
  pointer-events: none;
}

.res-addon-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   7. DATES & STAY DURATION BADGE
   -------------------------------------------------------------------------- */
.res-stay-duration-banner {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1px solid #F59E0B;
  color: #92400E;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.res-stay-duration-banner i {
  color: #D97706;
}

/* --------------------------------------------------------------------------
   8. STICKY LIVE SUMMARY CARD (DESKTOP & TABLET)
   -------------------------------------------------------------------------- */
.res-summary-sticky-wrap {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.res-summary-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  overflow: hidden;
  position: relative;
}

.res-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-caramel) 0%, #E29B63 50%, var(--accent-gold) 100%);
}

.res-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3ECE4;
  margin-bottom: 18px;
}

.res-summary-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #ECFDF5;
  color: #065F46;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.res-pulse-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  animation: resPulseDot 1.8s infinite;
}

@keyframes resPulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 6px #10B981; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Summary Rows */
.res-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.res-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.88rem;
}

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

.res-sum-val {
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
  max-width: 60%;
}

/* Total Box */
.res-total-box {
  background: #FAF7F4;
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  margin-bottom: 22px;
  border: 1px dashed #E2D7CC;
}

.res-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.res-total-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.res-total-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #B45309;
  letter-spacing: -0.02em;
}

.res-total-note {
  display: block;
  font-size: 0.76rem;
  color: #8C7B70;
  margin-top: 4px;
}

/* Big Action CTA Button */
.res-submit-cta-btn {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.res-submit-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.res-submit-cta-btn:active {
  transform: translateY(0);
}

.res-btn-subnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Trust Card Bullets */
.res-summary-trust-perks {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #F3ECE4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.res-perk-item {
  font-size: 0.8rem;
  color: #635348;
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-perk-item i {
  color: var(--accent-caramel);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   9. MOBILE STICKY BOTTOM ACTION BAR (Viewport Bottom on Mobile)
   -------------------------------------------------------------------------- */
.res-mobile-sticky-dock {
  display: none;
}

@media (max-width: 991px) {
  .res-mobile-sticky-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #E8DFD5;
    padding: 12px 16px;
    z-index: 1000;
    box-shadow: 0 -8px 24px rgba(42, 30, 23, 0.12);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* Safe Area for modern iPhones */
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .res-mobile-sticky-dock {
      padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
  }

  .res-mobile-dock-info {
    flex: 1;
    min-width: 0;
  }

  .res-mobile-dock-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .res-mobile-dock-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #B45309;
    line-height: 1.2;
  }

  .res-mobile-dock-btn {
    height: 48px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 0 18px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  /* Add extra padding at bottom of page so content is not obscured */
  .res-main-content {
    padding-bottom: 96px;
  }
}

/* --------------------------------------------------------------------------
   10. SUCCESS CONFIRMATION MODAL
   -------------------------------------------------------------------------- */
.res-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 14, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.res-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.res-modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-light);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.res-modal-backdrop.active .res-modal-box {
  transform: translateY(0) scale(1);
}

.res-modal-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.12);
}

.res-modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.res-modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.res-modal-summary-box {
  background: #FAF7F4;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.88rem;
  text-align: left;
  margin-bottom: 24px;
  border: 1px solid #E8DFD5;
}

.res-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.res-modal-wa-btn {
  height: 52px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.res-modal-home-btn {
  height: 44px;
  background: #F3ECE4;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   11. MOBILE ENHANCEMENTS & TOUCH POLISH
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .res-hero-banner {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .res-hero-title {
    font-size: 1.65rem;
  }

  .res-hero-desc {
    font-size: 0.92rem;
  }

  .res-step-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .res-step-title {
    font-size: 1.1rem;
  }

  .res-step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .res-input {
    height: 48px;
    font-size: 0.92rem;
  }

  .res-service-card {
    padding: 14px;
  }
}

/* --------------------------------------------------------------------------
   12. RESERVATION PAGE FOOTER STYLING & MOBILE CLEARANCE
   -------------------------------------------------------------------------- */
.res-page .site-footer {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding-top: 44px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(200, 138, 88, 0.25);
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.res-page .site-footer .footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.res-page .site-footer .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.res-page .site-footer .footer-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 138, 88, 0.2);
  color: var(--accent-caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.res-page .site-footer .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.res-page .site-footer .footer-contact-primary {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.res-page .site-footer .footer-contact-primary:hover {
  color: var(--accent-caramel);
}

.res-page .site-footer .footer-contact-sub {
  font-size: 0.78rem;
  color: #BBAEA3;
}

.res-page .site-footer .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.res-page .site-footer .social-circle-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  text-decoration: none;
  font-size: 1.15rem;
}

.res-page .site-footer .social-circle-link:hover {
  background: var(--accent-caramel);
  border-color: var(--accent-caramel);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 138, 88, 0.35);
}

.res-page .site-footer .footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

.res-page .site-footer .footer-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.res-page .site-footer .footer-nav-link {
  font-size: 0.88rem;
  color: #B5A79C;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.res-page .site-footer .footer-nav-link:hover {
  color: var(--accent-caramel);
}

.res-page .site-footer .footer-copyright {
  font-size: 0.82rem;
  color: #8C7D73;
}

/* Mobile Responsive Polish for Reservation Footer */
@media (max-width: 768px) {
  .res-page .site-footer {
    padding-bottom: 110px !important; /* Prevents mobile sticky dock from covering footer copyright & links */
  }

  .res-page .site-footer .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .res-page .site-footer .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .res-page .site-footer .footer-nav-links {
    gap: 12px 16px;
  }
}
