/* ==========================================================================
   Luxury Reservation & Inquiry Section Styles
   ========================================================================== */

.dyar-reservation-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 110px 0 120px;
  overflow: hidden;
  z-index: 1;
  margin-top: 2%;
}

/* Atmospheric Cinematic Overlay */
.dyar-reservation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 12, 10, 0.88) 0%, rgba(25, 20, 15, 0.76) 50%, rgba(12, 10, 8, 0.92) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.dyar-reservation-section .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   LEFT COLUMN: Info & Check Availability
   ========================================================================== */
.dyar-info-wrapper {
  padding-right: 35px;
  color: #ffffff;
}

.dyar-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c59d5f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.dyar-brand-tag::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 1px;
  background: #c59d5f;
}

.dyar-info-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 22px;
}

.dyar-info-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Contact List */
.dyar-contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.dyar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease;
}

.dyar-contact-item:hover {
  transform: translateX(4px);
}

.dyar-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(197, 157, 95, 0.15);
  border: 1px solid rgba(197, 157, 95, 0.4);
  color: #c59d5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.dyar-contact-item:hover .dyar-contact-icon {
  background: #c59d5f;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(197, 157, 95, 0.5);
}

.dyar-contact-text {
  display: flex;
  flex-direction: column;
}

.dyar-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #c59d5f;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dyar-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.dyar-contact-value:hover {
  color: #c59d5f;
}

/* Floating / Left Quick Action Buttons */
.dyar-quick-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
}

.dyar-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
}

.dyar-action-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.dyar-action-btn.call-btn {
  background: linear-gradient(135deg, #007aff, #0056b3);
}

.dyar-action-btn:hover {
  transform: translateY(-4px) scale(1.08);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.dyar-quick-badge {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.dyar-quick-badge-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.dyar-quick-badge-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   RIGHT COLUMN: Reservation Inquiry Card
   ========================================================================== */
.dyar-card-wrapper {
  position: relative;
}

/* Decorative ambient glow behind card */
.dyar-card-wrapper::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  background: radial-gradient(circle, rgba(197, 157, 95, 0.15) 0%, transparent 70%);
  border-radius: 28px;
  z-index: 0;
  pointer-events: none;
}

.dyar-reservation-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 45px 42px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.dyar-card-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #f0ede6;
  padding-bottom: 18px;
}

.dyar-card-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dyar-card-subtitle {
  font-size: 13px;
  color: #7d7d7d;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Form Styles */
.dyar-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 28px;
  margin-bottom: 35px;
}

.dyar-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.dyar-form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #c59d5f;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dyar-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.dyar-input-field {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #e0dbd1;
  background: transparent;
  padding: 10px 32px 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: #2b2b2b;
  font-family: inherit;
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
}

.dyar-input-field::placeholder {
  color: #9c9a96;
  font-size: 14px;
  font-weight: 400;
}

.dyar-input-field:focus {
  border-bottom-color: #c59d5f;
  background: rgba(197, 157, 95, 0.03);
  padding-left: 6px;
}

.dyar-input-icon {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a4a4a;
  font-size: 14px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.dyar-input-field:focus~.dyar-input-icon {
  color: #c59d5f;
}

/* Custom Select Dropdown */
select.dyar-input-field {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding-right: 30px;
}

select.dyar-input-field option {
  background: #ffffff;
  color: #222222;
  padding: 10px;
  font-size: 14px;
}

/* Book Now CTA Button */
.dyar-btn-container {
  text-align: center;
  margin-top: 10px;
}

.dyar-book-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 15px 52px;
  border-radius: 40px;
  border: 1px solid #2a2a2a;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.dyar-book-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.6s ease;
}

.dyar-book-now-btn:hover::before {
  left: 100%;
}

.dyar-book-now-btn:hover {
  background: #c59d5f;
  color: #ffffff;
  border-color: #c59d5f;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 157, 95, 0.4);
}

.dyar-book-now-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   INTERACTIVE CONFIRMATION MODAL
   ========================================================================== */
.dyar-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  padding: 20px;
}

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

.dyar-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.dyar-modal-close:hover {
  background: #c59d5f;
  color: #fff;
}

.dyar-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(197, 157, 95, 0.12);
  color: #c59d5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.dyar-modal-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.dyar-modal-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.dyar-modal-summary {
  background: #faf8f5;
  border: 1px solid #f0ede6;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 25px;
  font-size: 13px;
}

.dyar-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #e6e2d8;
}

.dyar-summary-row:last-child {
  border-bottom: none;
}

.dyar-summary-label {
  color: #888;
  font-weight: 500;
}

.dyar-summary-val {
  color: #1a1a1a;
  font-weight: 700;
}

.dyar-modal-actions {
  display: flex;
  gap: 12px;
}

.dyar-modal-btn-wa {
  flex: 1;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dyar-modal-btn-wa:hover {
  background: #1ebc57;
  color: #fff;
  transform: translateY(-2px);
}

.dyar-modal-btn-close {
  flex: 1;
  background: #1c1c1c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dyar-modal-btn-close:hover {
  background: #c59d5f;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1199.98px) {
  .dyar-info-title {
    font-size: 34px;
  }

  .dyar-reservation-card {
    padding: 40px 32px 36px;
  }
}

@media (max-width: 991.98px) {
  .dyar-reservation-section {
    padding: 80px 0;
  }

  .dyar-info-wrapper {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .dyar-info-title {
    font-size: 32px;
  }

  .dyar-info-desc {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .dyar-reservation-section {
    padding: 60px 0 70px;
  }

  .dyar-info-title {
    font-size: 28px;
  }

  .dyar-reservation-card {
    padding: 32px 22px 30px;
    border-radius: 14px;
  }

  .dyar-card-title {
    font-size: 22px;
  }

  .dyar-form-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .dyar-modal-content {
    padding: 30px 20px;
  }

  .dyar-modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .dyar-info-title {
    font-size: 25px;
  }

  .dyar-book-now-btn {
    width: 100%;
    padding: 14px 20px;
  }
}