/**
 * AEON CLUB INDIA - Custom Styles
 * 
 * Specific components, micro-animations, room detail specs, and amenities grid.
 */

/* Room Details Page Specifics */
.room-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.room-spec-card {
  background-color: var(--secondary-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.room-spec-card:hover {
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.room-spec-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.room-spec-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.room-spec-card .val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}

.amenity-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.amenity-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.amenity-checklist li i {
  color: var(--primary-color);
  font-size: 1.15rem;
}

/* Sticky Booking Widget on Room Details */
.sticky-booking-widget {
  position: sticky;
  top: 100px;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.sticky-booking-widget .price-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sticky-booking-widget .price-header .rate {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.sticky-booking-widget .price-header .orig-rate {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

/* Amenity Cards on Amenities Page */
.luxury-amenity-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.luxury-amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}

.luxury-amenity-card .amenity-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.luxury-amenity-card:hover .amenity-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Why Stay With Us Feature Points */
.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-point .point-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Stats Counter Box */
.stat-counter-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-counter-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-counter-box .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-counter-box .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* Map Frame Container */
.hotel-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  height: 420px;
}

.hotel-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Membership Page Styles (AEON CLUB INDIA Luxury Membership Theme)
   ========================================================================== */
.hotel-membership-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.hotel-membership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

/* Color Tier Themes */
.hotel-card-purple {
  border-top: 6px solid #7c3aed;
}

.hotel-card-purple .card-top-banner {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
  color: var(--white);
}

.hotel-card-purple .crown-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fbbf24;
}

.hotel-card-purple .btn-package-cta {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: var(--white);
  border: none;
}

.hotel-card-purple .btn-package-cta:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.hotel-card-red {
  border-top: 6px solid #dc2626;
}

.hotel-card-red .card-top-banner {
  background: linear-gradient(135deg, #ef4444 0%, #991b1b 100%);
  color: var(--white);
}

.hotel-card-red .crown-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fbbf24;
}

.hotel-card-red .btn-package-cta {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: var(--white);
  border: none;
}

.hotel-card-red .btn-package-cta:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.hotel-card-gray {
  border-top: 6px solid #4b5563;
}

.hotel-card-gray .card-top-banner {
  background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
  color: var(--white);
}

.hotel-card-gray .crown-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #f3f4f6;
}

.hotel-card-gray .btn-package-cta {
  background: linear-gradient(135deg, #374151 0%, #111827 100%);
  color: var(--white);
  border: none;
}

.hotel-card-gray .btn-package-cta:hover {
  background: linear-gradient(135deg, #1f2937 0%, #030712 100%);
  box-shadow: 0 8px 25px rgba(75, 85, 99, 0.4);
}

.hotel-card-blue {
  border-top: 6px solid #2563eb;
}

.hotel-card-blue .card-top-banner {
  background: linear-gradient(135deg, #2563eb 0%, #0008CA 100%);
  color: var(--white);
}

.hotel-card-blue .crown-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #60a5fa;
}

.hotel-card-blue .btn-package-cta {
  background: linear-gradient(135deg, #2563eb 0%, #0008CA 100%);
  color: var(--white);
  border: none;
}

.hotel-card-blue .btn-package-cta:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #00069e 100%);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Featured Ribbon */
.featured-ribbon {
  position: absolute;
  top: 18px;
  right: -35px;
  transform: rotate(45deg);
  background-color: #ffd700;
  color: #161920;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 3rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Card Top Banner */
.card-top-banner {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.crown-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(4px);
}

.tier-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.package-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.package-tagline {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Pricing Dual Box */
.pricing-dual-box {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.price-row-item .price-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  color: var(--text-heading);
}

.price-val .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-val .amount {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.price-val .unit {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-desc {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.price-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 0.9rem auto;
  width: 70%;
}

/* Package Feature List */
.package-feature-list {
  padding: 1.5rem;
  flex-grow: 1;
}

.feature-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.package-feature-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.package-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.package-feature-list li i {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-included span {
  color: var(--text-heading);
  font-weight: 600;
}

.feature-excluded span {
  color: var(--text-muted);
}

/* Action Footer */
.card-action-footer {
  padding: 0 1.5rem 1.75rem;
}

.btn-package-cta {
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-package-cta:hover {
  transform: translateY(-2px);
}

/* Holiday Matrix Comparison Table */
.holiday-matrix-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.holiday-matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.holiday-matrix-table th {
  padding: 1.1rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

.holiday-matrix-table th.th-question {
  background-color: #3b82f6;
  text-align: left;
  padding-left: 1.5rem;
  width: 45%;
}

.holiday-matrix-table th.th-blue {
  background-color: #20299B;
  width: 13.75%;
}

.holiday-matrix-table th.th-white {
  background-color: #64748b;
  width: 13.75%;
}

.holiday-matrix-table th.th-red {
  background-color: #930000;
  width: 13.75%;
}

.holiday-matrix-table th.th-purple {
  background-color: #7c3aed;
  width: 13.75%;
}

.holiday-matrix-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.holiday-matrix-table td.td-question {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--text-heading);
}

.holiday-matrix-table tr:nth-child(even) {
  background-color: var(--secondary-bg);
}

.holiday-matrix-table tr:hover {
  background-color: #eff6ff;
}

/* Additional Features Box */
.additional-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.additional-feature-item:hover {
  transform: translateX(4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.additional-feature-item .feat-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Apartment Card */
.apartment-card-box {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.apartment-card-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.apartment-card-img {
  height: 250px;
  overflow: hidden;
}

.apartment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.apartment-card-box:hover .apartment-card-img img {
  transform: scale(1.08);
}

.apartment-card-body {
  padding: 1.75rem;
}

/* ==========================================================================
   Cruise Page & Fleet Styles
   ========================================================================== */
.cruise-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.2);
  border: 1.5px solid #ffd700;
  color: #ffd700;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.ship-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.ship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(15, 43, 72, 0.15);
  border-color: var(--primary-light);
}

.ship-img-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.ship-card:hover .ship-img-box img {
  transform: scale(1.08);
}

.pill-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  backdrop-filter: blur(4px);
}

.pill-indian {
  background: #ffedd5;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.pill-intl {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.ship-specs-box {
  border-radius: var(--radius-md);
  font-size: 0.82rem;
}

.home-cruise-section {
  position: relative;
  background: linear-gradient(135deg, #071627 0%, #0f2b48 100%);
  color: var(--white);
  overflow: hidden;
}

.home-cruise-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.home-cruise-card:hover {
  transform: translateY(-8px);
  border-color: #ffd700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.home-cruise-card .card-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.home-cruise-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-cruise-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

/* Cruise Amenities Cards */
.cruise-amenity-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cruise-amenity-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(15, 43, 72, 0.12);
  border-color: var(--primary-light);
}

.cruise-amenity-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.cruise-amenity-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cruise-amenity-card:hover .cruise-amenity-img-box img {
  transform: scale(1.08);
}

/* Cruise Cabin & Stateroom Cards */
.cruise-stateroom-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cruise-stateroom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 43, 72, 0.16);
  border-color: var(--primary-light);
}

.cruise-stateroom-img-box {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.cruise-stateroom-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cruise-stateroom-card:hover .cruise-stateroom-img-box img {
  transform: scale(1.08);
}

.cruise-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
}

/* Activity Card Hover */
.activity-card-hover {
  transition: all 0.35s ease;
}

.activity-card-hover:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(15, 43, 72, 0.12) !important;
}

.activity-card-hover:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   Travel Desk Concierge & Vacation Package Benefits Styles
   ========================================================================== */
.custom-travel-pills .nav-link {
  background: var(--white);
  color: var(--heading-color);
  border: 1px solid var(--border-color) !important;
  transition: all 0.3s ease;
}

.custom-travel-pills .nav-link:hover {
  background: #f8fafc;
  color: var(--primary-color);
  transform: translateX(4px);
}

.custom-travel-pills .nav-link.active {
  background: linear-gradient(135deg, #071627 0%, #0f2b48 100%) !important;
  color: #ffffff !important;
  border-color: #0f2b48 !important;
  box-shadow: 0 8px 24px rgba(15, 43, 72, 0.25) !important;
}

.custom-travel-pills .nav-link.active i {
  color: #ffd700 !important;
}

.vacation-benefit-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.vacation-benefit-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(15, 43, 72, 0.12);
  border-color: var(--primary-light);
}

.benefit-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}

.vacation-benefit-card:hover .benefit-icon-circle {
  transform: scale(1.12) rotate(6deg);
}

/* ==========================================================================
   Global Travel Partnerships & Associate Logo Slider Styles
   ========================================================================== */
.associate-logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 15px 0;
}

.associate-logo-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: infiniteLogoScroll 25s linear infinite;
}

.associate-logo-track:hover {
  animation-play-state: paused;
}

.associate-logo-card {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 10px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 95px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.associate-logo-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 24px rgba(15, 43, 72, 0.1);
}

.associate-logo-card img {
  max-height: 65px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
  transition: transform 0.3s ease;
}

.associate-logo-card:hover img {
  transform: scale(1.05);
}

@keyframes infiniteLogoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partnership-value-card {
  background: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.partnership-value-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(15, 43, 72, 0.1);
}

/* Header Logo Sizing */
.navbar-brand .site-logo {
  max-width: 250px !important;
  height: 60px !important;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar-brand .site-logo {
    max-width: 190px !important;
    height: 48px !important;
  }
}

/* ==========================================================================
   Hero Slider Controls & Dots
   ========================================================================== */
.hero-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1.06);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slider-nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 50 !important;
}

.hero-slider-dots {
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #ccb178 !important;
  box-shadow: 0 0 10px rgba(204, 177, 120, 0.8);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Luxury Gold #ccb178 Booking Search Bar
   ========================================================================== */
.luxury-gold-search-form {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid #ccb178;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(7, 22, 39, 0.35), 0 0 20px rgba(204, 177, 120, 0.2);
  padding: 1.5rem 1.75rem;
  width: 100% !important;
  max-width: 100% !important;
}

.luxury-gold-search-form .search-item {
  border-right: 1px solid rgba(204, 177, 120, 0.3);
  padding: 0.35rem 0.65rem;
  transition: background 0.25s ease;
  border-radius: var(--radius-sm);
}

.luxury-gold-search-form .search-item:hover {
  background: #fdfbf7;
}

.luxury-gold-search-form .form-label {
  color: #736440;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.luxury-gold-search-form select,
.luxury-gold-search-form input {
  color: #071627;
  font-size: 0.92rem;
  font-weight: 700;
}

.luxury-gold-search-form select:focus,
.luxury-gold-search-form input:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .luxury-gold-search-form .search-item {
    border-right: none;
    border-bottom: 1px solid rgba(204, 177, 120, 0.2);
    padding-bottom: 0.75rem;
  }
}

/* ==========================================================================
   Mobile Nav Backdrop Stacking Fix (Menu Above Blur Backdrop)
   ========================================================================== */
.offcanvas-backdrop-custom,
.nav-backdrop,
.offcanvas-backdrop-drawer {
  z-index: 1990 !important;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .header-area {
  z-index: 3000 !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    z-index: 3100 !important;
  }

  .navbar-collapse .mobile-nav-close {
    cursor: pointer;
    line-height: 1;
  }

  .right-side-hotel-offcanvas {
    z-index: 3100 !important;
  }
}







