/* ==========================================================================
   Clean & Luxury Split-Card Layout for Booking & Pay-Now
   ========================================================================== */

:root {
  --lux-gold: #c59d5f;
  --lux-gold-dark: #9a763c;
  --lux-dark: #14171c;
  --lux-navy: #19273c;
  --lux-card-bg: #ffffff;
  --lux-text: #2c2825;
  --lux-muted: #6b7280;
  --lux-border: #e5e7eb;
  --lux-soft-bg: #f4f6f8;
}

/* Master Container */
.clean-page-section {
  padding: 80px 0 100px;
  background: #f0f3f7;
  min-height: 80vh;
}

/* Main Split Card Box (Like the Reference Image) */
.split-master-box {
  background: var(--lux-card-bg);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  margin: 0 auto;
  max-width: 1160px;
}

/* --------------------------------------------------------------------------
   LEFT SIDE: Details Panel (Darker Blue/Navy/Charcoal Hotel Details)
   -------------------------------------------------------------------------- */
.split-left-panel {
  width: 42%;
  background: linear-gradient(145deg, #162436 0%, #1e334d 100%);
  color: #ffffff;
  padding: 55px 45px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #dfbe89;
  margin-bottom: 12px;
}

.panel-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.panel-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Info Items List */
.panel-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.panel-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-info-item:last-child {
  margin-bottom: 0;
}

.panel-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #dfbe89;
  flex-shrink: 0;
}

.panel-info-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.panel-info-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}

.panel-info-text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.panel-info-text a:hover {
  color: #dfbe89;
}

/* Perks List */
.panel-perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.perk-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.perk-chip i {
  color: #dfbe89;
  font-size: 14px;
}

/* Social & Bottom Bar */
.panel-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-socials {
  display: flex;
  gap: 12px;
}

.panel-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.panel-social-link:hover {
  background: #dfbe89;
  color: #162436;
}

/* --------------------------------------------------------------------------
   RIGHT SIDE: Form Panel (Clean White Background)
   -------------------------------------------------------------------------- */
.split-right-panel {
  width: 58%;
  background: #ffffff;
  padding: 55px 50px;
}

.form-header-box {
  margin-bottom: 32px;
}

.form-header-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 28px;
  color: #111827;
  margin-bottom: 8px;
}

.form-header-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Modern Clean Form Inputs */
.clean-form-group {
  margin-bottom: 20px;
}

.clean-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 8px;
}

.clean-input, .clean-select, .clean-textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: #1f2937;
  transition: all 0.2s ease;
  outline: none;
}

.clean-input:focus, .clean-select:focus, .clean-textarea:focus {
  background: #ffffff;
  border-color: #dfbe89;
  box-shadow: 0 0 0 3px rgba(223, 190, 137, 0.2);
}

.clean-input::placeholder, .clean-textarea::placeholder {
  color: #9ca3af;
}

/* Submit Button */
.btn-clean-submit {
  background: linear-gradient(135deg, #dfbe89 0%, #c59d5f 100%);
  color: #162436;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(197, 157, 95, 0.35);
  transition: all 0.3s ease;
  width: 100%;
}

.btn-clean-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 157, 95, 0.45);
  background: linear-gradient(135deg, #c59d5f 0%, #b08647 100%);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   PAY-NOW SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.pay-accounts-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.pay-account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed #cbd5e1;
  font-size: 14px;
}

.pay-account-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pay-account-label {
  color: #64748b;
  font-weight: 500;
}

.pay-account-val {
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-copy-sm {
  background: #e2e8f0;
  border: none;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy-sm:hover {
  background: #dfbe89;
  color: #162436;
}

/* QR Scanner Card (Right Side of Pay-Now) */
.qr-display-box {
  background: #ffffff;
  border: 2px dashed #dfbe89;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.qr-code-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 8px;
  background: #ffffff;
}

.qr-scan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.accepted-apps-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  color: #475569;
  margin-top: 15px;
}

/* Call to Action Bar */
.pay-cta-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-top: 25px;
}

.cta-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #334155;
}

.cta-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #162436;
  color: #dfbe89;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-wa-confirm {
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}

.btn-wa-confirm:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-call-reception {
  background: #ffffff;
  color: #162436;
  border: 1px solid #cbd5e1;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
  margin-top: 10px;
  transition: all 0.2s;
}

.btn-call-reception:hover {
  background: #f1f5f9;
  color: #162436;
}

/* --------------------------------------------------------------------------
   RESPONSIVENESS (MOBILE / TABLET)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .split-master-box {
    flex-direction: column;
  }
  .split-left-panel {
    width: 100%;
    padding: 40px 30px;
  }
  .split-right-panel {
    width: 100%;
    padding: 40px 30px;
  }
}

@media (max-width: 575.98px) {
  .clean-page-section {
    padding: 40px 15px 60px;
  }
  .split-left-panel {
    padding: 30px 20px;
  }
  .split-right-panel {
    padding: 30px 20px;
  }
  .panel-title {
    font-size: 24px;
  }
  .form-header-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   ROOM SHOWCASE SLIDER (BOOKING PAGE LEFT COLUMN)
   ========================================================================== */
.room-showcase-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--lux-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-showcase-header {
  margin-bottom: 22px;
}

.room-showcase-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 28px;
  color: var(--lux-dark);
  margin-bottom: 8px;
}

.room-showcase-sub {
  font-size: 14px;
  color: var(--lux-muted);
  line-height: 1.6;
  margin: 0;
}

.room-slick-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.room-slide-item {
  position: relative;
  outline: none;
}

.room-slide-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.room-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 10, 8, 0.88) 100%);
  color: #ffffff;
}

.room-slide-caption h4 {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}

.room-slide-caption p {
  font-size: 13px;
  color: #dfbe89;
  margin: 0;
}

/* Slick Custom Arrows on Slider */
.room-slick-container .slick-prev,
.room-slick-container .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 16, 14, 0.65);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-slick-container .slick-prev {
  left: 15px;
}

.room-slick-container .slick-next {
  right: 15px;
}

.room-slick-container .slick-prev:hover,
.room-slick-container .slick-next:hover {
  background: var(--lux-gold);
  border-color: var(--lux-gold);
  color: #162436;
}

.room-slick-container .slick-dots {
  position: absolute;
  bottom: 12px;
  right: 20px;
  left: auto;
  display: flex !important;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.room-slick-container .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.room-slick-container .slick-dots li.slick-active button {
  background: var(--lux-gold);
  width: 24px;
  border-radius: 6px;
}

/* Perks & Assistance Boxes */
.room-perks-box {
  background: #faf8f5;
  border: 1px solid var(--lux-border);
  border-radius: 12px;
  padding: 20px;
}

.room-perks-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lux-dark);
  margin-bottom: 8px;
}

.perk-badge {
  font-size: 13px;
  color: #4b5563;
  padding: 4px 0;
}

.booking-need-help {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 20px;
}

.btn-clean-call {
  background: #166534;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-clean-call:hover {
  background: #14532d;
  color: #ffffff;
}

/* Live Selection Summary in Booking Form */
.booking-live-summary {
  background: #faf8f5;
  border: 1px dashed var(--lux-gold);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-live-summary .summary-item {
  display: flex;
  flex-direction: column;
}

.booking-live-summary .summary-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lux-gold);
}

.booking-live-summary strong {
  font-size: 13px;
  color: var(--lux-dark);
}

/* Mini Reservation Summary on Pay-Now Left Panel */
.pay-booking-summary-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 16px;
}

.summary-mini-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #dfbe89;
  margin-bottom: 8px;
}

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

.btn-back-inline {
  color: #dfbe89;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.btn-back-inline:hover {
  color: #ffffff;
}

/* ==========================================================================
   CUSTOM LUXURY MODAL (No Bootstrap Backdrop Conflict)
   ========================================================================== */
.dyar-custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dyar-custom-modal.active {
  opacity: 1;
  visibility: visible;
}

.dyar-custom-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 12, 10, 0.75);
  backdrop-filter: blur(6px);
}

.dyar-custom-modal-box {
  position: relative;
  background: #ffffff;
  width: 90%;
  max-width: 520px;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--lux-border);
  z-index: 2;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.dyar-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.dyar-modal-close:hover {
  background: #e5e7eb;
  color: #000;
}

.dyar-modal-icon {
  font-size: 48px;
  color: #16a34a;
  margin-bottom: 12px;
}

.dyar-modal-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 26px;
  color: var(--lux-dark);
  margin-bottom: 8px;
}

.dyar-modal-desc {
  font-size: 14px;
  color: var(--lux-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.dyar-modal-info-list {
  background: #faf8f5;
  border: 1px solid var(--lux-border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
}

.dyar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #e5e0d8;
  font-size: 13px;
}

.dyar-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dyar-info-row span {
  color: var(--lux-muted);
}

.dyar-info-row strong {
  color: var(--lux-dark);
}
