/* ==========================================================================
   Restrya Hotels & Resorts - Ultra Luxury Room Details Page Styles
   ========================================================================== */

:root {
  --lux-gold: #c59d5f;
  --lux-gold-light: #dfbe89;
  --lux-gold-dark: #9a763c;
  --lux-dark: #12100e;
  --lux-dark-2: #1b1714;
  --lux-dark-card: #201b16;
  --lux-text: #2c2825;
  --lux-muted: #78736d;
  --lux-border: #e8e2d8;
  --lux-cream: #faf7f2;
}

/* Page Hero */
.room-details-hero {
  position: relative;
  padding: 130px 0 85px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.room-details-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.65) 0%, rgb(18 15 12 / 26%) 100%);
  z-index: 1;
}

.room-details-hero .container {
  position: relative;
  z-index: 2;
}

.room-details-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 157, 95, 0.2);
  border: 1px solid rgba(197, 157, 95, 0.5);
  color: var(--lux-gold-light);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.room-details-hero-title {
  color: #ffffff;
  font-family: var(--heading-font-family, 'Outfit', serif);
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 12px;
}

.room-details-hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 18px;
}

.room-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--lux-gold-light);
}

.room-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.room-breadcrumbs a:hover {
  color: var(--lux-gold);
}

.room-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.4);
}

/* Main Section */
.room-details-section {
  padding: 70px 0 100px;
  background: #fbf9f6;
}

/* Gallery Showcase */
.room-gallery-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--lux-border);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 35px;
}

.main-photo-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  background: #12100e;
  margin-bottom: 16px;
}

.main-photo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-photo-stage:hover img {
  transform: scale(1.025);
}

.gallery-photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-photo-badge:hover {
  background: var(--lux-gold);
  color: #12100e;
  border-color: var(--lux-gold);
}

.gallery-thumb-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-thumb-item {
  width: 90px;
  height: 65px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 4px 12px rgba(197, 157, 95, 0.35);
  transform: translateY(-2px);
}

/* Specs Strip */
.room-specs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--lux-border);
  padding: 20px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

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

.spec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(197, 157, 95, 0.12);
  color: var(--lux-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.spec-text span {
  display: block;
  font-size: 11px;
  color: var(--lux-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.spec-text strong {
  display: block;
  font-size: 14px;
  color: var(--lux-text);
  font-weight: 600;
}

/* Content Blocks */
.room-details-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--lux-border);
  padding: 35px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.room-card-heading {
  font-family: var(--heading-font-family, 'Outfit', serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--lux-text);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.room-card-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--lux-gold);
  border-radius: 2px;
}

.room-desc-p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--lux-text);
  margin-bottom: 16px;
}

/* Amenities Grid */
.amenities-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.amenity-group-card {
  background: #faf7f2;
  border: 1px solid rgba(197, 157, 95, 0.25);
  border-radius: 14px;
  padding: 22px;
}

.amenity-group-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--lux-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-group-title i {
  color: var(--lux-gold);
}

.amenity-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4a4540;
  margin-bottom: 10px;
}

.amenity-list-items li:last-child {
  margin-bottom: 0;
}

.amenity-list-items li i {
  color: var(--lux-gold);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

/* Policies Box */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.policy-box {
  background: #fbf9f6;
  border-left: 3px solid var(--lux-gold);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
}

.policy-box strong {
  display: block;
  font-size: 13.5px;
  color: var(--lux-dark);
  margin-bottom: 4px;
}

.policy-box p {
  font-size: 13px;
  color: var(--lux-muted);
  margin: 0;
}

/* Reviews */
.guest-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.guest-review-card {
  background: #faf7f2;
  border: 1px solid rgba(197, 157, 95, 0.2);
  border-radius: 14px;
  padding: 22px;
}

.review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--lux-dark);
}

.reviewer-location {
  font-size: 12.5px;
  color: var(--lux-muted);
  font-weight: normal;
}

.review-stars {
  color: #ffbe3b;
  font-size: 13px;
}

.review-comment {
  font-size: 14px;
  color: #4a4540;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* Sticky Booking Sidebar */
.room-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.booking-box-card {
  background: #181411;
  color: #ffffff;
  border: 1px solid rgba(197, 157, 95, 0.35);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  margin-bottom: 24px;
}

.pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.price-flex {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.current-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--lux-gold);
  font-family: var(--heading-font-family, serif);
}

.price-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.original-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  margin-left: auto;
}

.discount-tag {
  display: inline-block;
  background: rgba(197, 157, 95, 0.2);
  color: var(--lux-gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(197, 157, 95, 0.4);
  margin-top: 6px;
}

.direct-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lux-gold-light);
  margin-top: 12px;
}

/* Sidebar Form Controls */
.sidebar-field-group {
  margin-bottom: 18px;
}

.sidebar-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.sidebar-input-box {
  position: relative;
}

.sidebar-input-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lux-gold);
  font-size: 14px;
}

.sidebar-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px 14px 12px 42px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.sidebar-input:focus {
  border-color: var(--lux-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
}

.sidebar-select {
  width: 100%;
  background: #25201b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px 14px 12px 42px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.sidebar-select:focus {
  border-color: var(--lux-gold);
}

/* Total Price Summary */
.booking-calc-summary {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  border: 1px dashed rgba(197, 157, 95, 0.3);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.calc-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.calc-row.total .total-num {
  color: var(--lux-gold);
}

/* Book Button */
.btn-reserve-now {
  width: 100%;
  background: linear-gradient(135deg, var(--lux-gold) 0%, #a88247 100%);
  color: #12100e;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(197, 157, 95, 0.4);
}

.btn-reserve-now:hover {
  background: linear-gradient(135deg, #dfbe89 0%, var(--lux-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 157, 95, 0.6);
  color: #12100e;
}

/* Assistance Card */
.concierge-help-card {
  background: #ffffff;
  border: 1px solid var(--lux-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.concierge-help-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--lux-text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.concierge-help-card p {
  font-size: 13.5px;
  color: var(--lux-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.btn-help-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 10px;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-help-wa:hover {
  background: #1eb956;
  color: #ffffff;
}

.btn-help-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f4ede2;
  color: #1b1714;
  padding: 10px;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-help-phone:hover {
  background: #eadecd;
  color: #1b1714;
}

/* Other Rooms Carousel / Grid */
.other-suites-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid var(--lux-border);
}

.other-suites-heading {
  text-align: center;
  margin-bottom: 45px;
}

.other-suites-heading h2 {
  font-family: var(--heading-font-family, 'Outfit', serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--lux-text);
}

.other-suite-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--lux-border);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.other-suite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(197, 157, 95, 0.18);
  border-color: rgba(197, 157, 95, 0.4);
}

.other-suite-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

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

.other-suite-card:hover .other-suite-img img {
  transform: scale(1.06);
}

.other-suite-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(18, 16, 14, 0.8);
  backdrop-filter: blur(8px);
  color: var(--lux-gold-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.other-suite-body {
  padding: 20px;
}

.other-suite-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--lux-text);
  margin-bottom: 6px;
}

.other-suite-title a {
  color: var(--lux-text);
  text-decoration: none;
  transition: color 0.2s;
}

.other-suite-title a:hover {
  color: var(--lux-gold);
}

.other-suite-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--lux-gold);
  margin-bottom: 14px;
}

.other-suite-price span {
  font-size: 12px;
  color: var(--lux-muted);
  font-weight: normal;
}

.btn-view-suite {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lux-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-suite:hover {
  color: var(--lux-gold);
  gap: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .main-photo-stage {
    height: 340px;
  }

  .room-details-card {
    padding: 24px;
  }

  .room-sidebar-sticky {
    position: static;
    margin-top: 30px;
  }
}