/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Great+Vibes&display=swap");

/* ===== ROOT VARIABLES - BLACK & WHITE THEME ===== */
:root {
  --primary-color: #000000;
  /* Black */
  --primary-dark: #1a1a1a;
  --primary-light: #333333;
  --accent-color: #ffffff;
  /* White */
  --text-dark: #121212;
  --text-muted: #666666;
  --text-light: #999999;
  --bg-dark: #0a0a0a;
  --bg-light: #f8f8f8;
  --border-color: #e0e0e0;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== GLOBAL TYPOGRAPHY ===== */
body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
}

a {
  transition: var(--transition);
}

/* ===== ABOUT SECTION STYLES ===== */
.about-img-container {
  position: relative;
  margin-left: 30px;
  margin-bottom: 30px;
}

.about-stat-box {
  background-color: #000000;
  color: #fff;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}

.about-stat-number {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  line-height: 1;
  font-weight: 400;
}

.about-stat-text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  font-weight: 700;
  opacity: 0.9;
}

.signature-font {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  color: #333;
  line-height: 1;
  transform: rotate(-5deg);
  display: inline-block;
}

.btn-hurry {
  background-color: #000000;
  color: white;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 35px;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  font-weight: 700;
}

.btn-hurry:hover {
  background-color: #333333;
  color: white;
  transform: translateY(-2px);
}

/* ===== SMOOTH ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

.animate-delay-4 {
  animation-delay: 0.8s;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-item {
  height: 85vh;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    /* #0a0a0a 25%, */ #1b1a1a 25%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.01) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 550px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ===== HERO IMAGE GRID ===== */
.hero-right-grid {
  width: 100%;
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 15px;
}

.hero-grid-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeInScale 1.2s ease-out forwards;
}

.grid-arch-left {
  border-radius: 110px 110px 0 0;
  transform: translateY(30px);
}

.grid-arch-right {
  border-radius: 110px 110px 0 0;
  transform: translateY(-20px);
}

.grid-circle-left {
  border-radius: 0 0 110px 110px;
  height: 180px;
  align-self: start;
  transform: translateY(50px);
}

.grid-circle-right {
  border-radius: 0 0 110px 110px;
  height: 200px;
  justify-self: center;
}

/* ===== BOOKING BAR ===== */
.booking-compact {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
  max-width: 650px;
  display: flex;
}

.booking-mobile {
  display: none;
}

.booking-mobile-cta {
  display: none;
}

.booking-form-wrap {
  flex: 1;
  padding: 20px 0;
}

.booking-item {
  padding: 0 25px;
  position: relative;
  text-align: center;
}

.booking-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.booking-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 5px;
  opacity: 0.8;
}

.booking-value-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: "Playfair Display", serif;
}

.booking-number {
  font-size: 3rem;
  line-height: 1;
  color: var(--text-dark);
}

.booking-month {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000000;
  margin-left: 5px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}

.booking-btn-area {
  width: 200px;
  background: #000000;
  display: flex;
}

.btn-check-glass {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-check-glass:hover {
  background: #333333;
  color: white;
}

/* ===== UTILITIES ===== */
.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.text-gold,
.text-accent {
  color: #000000 !important;
}

.bg-gold,
.bg-primary-gold {
  background-color: #000000 !important;
}

/* ===== ROOM CARDS ===== */
.room-card {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.room-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s;
}

.room-card:hover .room-img {
  transform: scale(1.1);
}

.room-price-badge {
  position: absolute;
  top: 30px;
  right: 0;
  background: #000000;
  color: #fff;
  padding: 8px 15px;
  font-weight: 600;
}

.room-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  width: 100%;
  color: #fff;
  transform: translateY(10px);
  transition: 0.4s;
}

.room-card:hover .room-content {
  transform: translateY(0);
}

/* ===== SECTION STYLING ===== */
.section-subheading {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

/* ===== PROMOTIONS SECTION ===== */
.promotion-feature-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.promotion-feature-img-wrap:hover {
  transform: translateY(-5px);
}

/* Overlapping Promotions List */
@media (min-width: 992px) {
  .promotions-overlap-col {
    margin-left: -60px;
    /* Pull list to the left */
    z-index: 10;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .promotions-overlap-col .row {
    background: #fff;
    /* Ensure contrast against image */
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
}

/* ===== BEST CITY POSITION SECTION ===== */
.city-position-section {
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Constrain content width */
.city-position-section .container {
  max-width: 1000px !important;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  50% {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.3);
  }
}

.city-position-section .font-heading {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  /* More elegant */
  font-size: 3.5rem;
}

.payment-options-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.8;
}

.payment-icon-box {
  width: 45px;
  height: 30px;
  background: white;
  border-radius: 2px;
  /* Sharper corners */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  padding: 5px;
}

.payment-icon-box:hover {
  transform: translateY(-3px);
}

.circle-promo-badge {
  width: 400px;
  height: 400px;
  background: rgba(10, 10, 10, 0.75);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  animation: floatBadge 6s ease-in-out infinite;
  /* Professional float */
}

.circle-promo-badge .display-1 {
  font-size: 5rem;
  /* Bigger number */
  font-weight: 300;
  /* Thinner weight for elegance */
  letter-spacing: -2px;
}

.pricing-card {
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.premium {
  background: #000000;
  color: white;
}

.price-display {
  font-size: 4rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1;
}

.star-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
  position: relative;
}

/* Images Wrapper - Side by Side */
.amenities-images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 550px;
}

.amenities-img-left,
.amenities-img-right {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Vertical Stats Overlay on Right Side of Left Image */
.amenities-stats-vertical {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.amenities-stat-item {
  text-align: center;
}

.amenities-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.amenities-stat-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

/* Progress Bars */
.amenities-progress-list {
  margin-top: 30px;
}

.amenities-progress-label,
.amenities-progress-percent {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.amenities-progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 0;
  overflow: hidden;
}

.amenities-progress-fill {
  height: 100%;
  transition: width 0.8s ease;
}

/* Bottom Icons Row */
.amenities-icons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.amenity-icon-item {
  text-align: center;
}

.amenity-icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: transparent;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.amenity-icon-item:hover .amenity-icon-circle {
  background: #ffffff;
  border-color: #000000;
  border-width: 2px;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.amenity-icon-circle i {
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.amenity-icon-item:hover .amenity-icon-circle i {
  color: #000000;
  transform: scale(1.1);
}

.amenity-icon-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.amenity-icon-desc {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ===== GOOGLE MAPS & CONTACT SECTION ===== */
.contact-map-section {
  background-color: #1a1a1a;
}

.map-container {
  position: relative;
  height: 300px;
  width: 100%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-info-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 15px 20px;
  max-width: 200px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-info-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.map-info-address {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.map-info-rating {
  font-size: 0.7rem;
  color: #c9a961;
  margin-bottom: 8px;
}

.map-info-rating span:last-child {
  color: var(--text-muted);
}

.map-info-link {
  font-size: 0.7rem;
  color: #0066cc;
  text-decoration: none;
  display: block;
}

.map-info-link:hover {
  text-decoration: underline;
}

/* Contact Info Box */
.contact-info-box {
  background-color: #2a2a2a;
  height: 100%;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-icon-wrap {
  color: white;
  opacity: 0.8;
}

.contact-heading {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.contact-value {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #c9a961;
}

/* Email Info Box */
.email-info-box {
  /* Glassmorphism Effect */
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
  padding: 40px;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.3);

  /* Add subtle texture background behind glass */
  background-image: url("/Assets/SPAT1/003.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.email-icon-wrap {
  color: var(--text-dark);
  opacity: 0.8;
}

.email-heading {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

.email-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.email-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-value:hover {
  color: #666666;
}

/* ===== ROOM LIST SECTION ===== */
.room-card {
  position: relative;
  overflow: hidden;
  background: white;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  margin-bottom: 0;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.room-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img {
  transform: scale(1.03);
}

.room-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 25px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    transparent 100%
  );
  color: white;
  transition: all 0.4s ease;
}

.room-title {
  color: white;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.room-price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e8d4c4;
  /* Tan/Pink color from reference */
  color: #333;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  font-weight: 600;
}

.room-price-badge.bg-gold {
  background: #e8d4c4;
  color: #333;
}

.room-info {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section .container-fluid {
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}

.gallery-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

/* Hover Effects */
.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

/* Mobile Responsive Gallery */
@media (max-width: 768px) {
  .gallery-item {
    height: 250px;
  }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: 70vh;
    padding: 110px 0 70px;
  }

  .carousel-item {
    height: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .booking-mobile {
    display: block;
    background: #fff;
    padding: 20px;
    margin: 24px auto 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 560px;
  }

  .booking-mobile .booking-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .booking-mobile .booking-item:last-child {
    border-bottom: none;
  }

  .booking-mobile .booking-label {
    margin-bottom: 0;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  .booking-mobile .booking-number {
    font-size: 1.5rem;
  }

  .booking-mobile .booking-month {
    font-size: 0.75rem;
  }

  .booking-mobile-cta {
    display: block;
    margin-top: 14px;
    padding: 12px 14px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .booking-mobile-cta:hover {
    background: #333333;
    color: #ffffff;
  }

  .hero-right-grid {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 560px;
    margin: 28px auto 0;
    padding: 0 12px;
    grid-template-rows: 160px 160px;
    gap: 12px;
    z-index: 10;
  }

  .hero-grid-item {
    opacity: 1;
    animation: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  }

  .grid-arch-left,
  .grid-arch-right,
  .grid-circle-left,
  .grid-circle-right {
    height: 100%;
    width: 100%;
    transform: none;
    justify-self: stretch;
    align-self: stretch;
    border-radius: 18px;
  }

  .about-img-container {
    margin-left: 15px;
    margin-bottom: 20px;
  }

  .about-stat-box {
    width: 120px;
    height: 120px;
    bottom: -15px;
    left: -15px;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .signature-font {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .price-display {
    font-size: 3rem;
  }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: auto;
    padding: 100px 0 40px;
  }

  .carousel-item {
    height: 100%;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(10, 10, 10, 0.85) 100%
    );
  }

  .hero-content {
    text-align: center;
    padding: 0 10px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    margin-bottom: 0.75rem;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }

  /* Hide Booking Bar on Mobile */
  .booking-compact {
    display: none !important;
  }

  .booking-mobile {
    display: none !important;
  }

  .booking-mobile-cta {
    display: none !important;
  }

  /* Image Grid on Mobile - Below Content */
  .hero-right-grid {
    max-width: 100%;
    margin: 25px auto 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 130px 130px;
    gap: 8px;
  }

  .hero-grid-item {
    opacity: 1;
    animation: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }

  .grid-arch-left,
  .grid-arch-right {
    height: 100%;
    width: 100%;
    transform: none;
    justify-self: stretch;
    align-self: stretch;
    border-radius: 50px 50px 0 0;
  }

  .grid-circle-left,
  .grid-circle-right {
    height: 100%;
    width: 100%;
    transform: none;
    justify-self: stretch;
    align-self: stretch;
    border-radius: 0 0 50px 50px;
  }

  /* Promotion Feature Image Mobile */
  .promotion-feature-img-wrap {
    height: 400px !important;
    margin-bottom: 30px;
  }

  /* Reduce Promo Badge size on mobile */
  .circle-promo-badge {
    width: 250px;
    height: 250px;
    margin-top: 30px;
  }

  .circle-promo-badge .display-1 {
    font-size: 4rem;
  }

  /* About Section Mobile */
  .about-img-container {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .about-stat-box {
    width: 100px;
    height: 100px;
    bottom: -10px;
    left: -10px;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-stat-text {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .signature-font {
    font-size: 1.5rem;
    display: block;
    margin-top: 20px;
  }

  .btn-hurry {
    padding: 15px 25px;
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
  }

  /* Room Cards Mobile */
  .room-img {
    height: 280px;
  }

  .room-content {
    padding: 20px;
  }

  .room-title {
    font-size: 1.25rem;
  }

  /* Pricing Cards Mobile */
  .pricing-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .pricing-card.premium {
    transform: none !important;
  }

  .price-display {
    font-size: 2.5rem;
  }

  /* Services Grid Mobile */
  .d-flex.align-items-center.border.p-5 {
    padding: 25px !important;
    flex-direction: column;
    text-align: center;
  }

  .d-flex.align-items-center.border.p-5 img {
    margin-bottom: 15px;
    margin-right: 0 !important;
  }

  /* Section Headings Mobile */
  .display-3 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 1.75rem;
  }

  /* Contact Map Section Tablet */
  .map-container {
    height: 250px;
  }

  .contact-info-box,
  .email-info-box {
    padding: 30px;
  }

  .contact-heading,
  .email-heading {
    font-size: 1.5rem;
  }

  /* Amenities Section Tablet */
  .amenities-images-wrapper {
    height: 450px;
  }

  .amenities-stats-vertical {
    padding: 20px 15px;
    gap: 20px;
  }

  .amenities-stat-number {
    font-size: 2rem;
  }

  .amenities-icons-row {
    gap: 30px;
  }

  .amenity-icon-circle {
    width: 60px;
    height: 60px;
  }

  .amenity-icon-circle i {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
  .hero-section {
    min-height: 50vh;
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .booking-mobile {
    padding: 16px;
    margin: 16px 12px;
  }

  .booking-mobile .booking-number {
    font-size: 1.35rem;
  }

  .booking-mobile-cta {
    display: none !important;
  }

  /* Show image grid on small mobile with compact size */
  .hero-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 110px 110px;
    gap: 8px;
    margin-top: 20px;
    padding: 0 10px;
  }

  .grid-arch-left,
  .grid-arch-right {
    border-radius: 50px 50px 0 0;
  }

  .grid-circle-left,
  .grid-circle-right {
    border-radius: 0 0 50px 50px;
  }

  .about-stat-box {
    width: 80px;
    height: 80px;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .about-stat-text {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .room-img {
    height: 220px;
  }

  /* Smaller Promo Badge for small screens */
  .circle-promo-badge {
    width: 220px;
    height: 220px;
    margin-top: 20px;
  }

  .circle-promo-badge .display-1 {
    font-size: 3.5rem;
  }

  .room-content {
    padding: 15px;
  }

  .room-price-badge {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .pricing-card {
    padding: 20px 15px;
  }

  .price-display {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .display-3 {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 1.5rem;
  }

  /* Promotions Section Mobile */
  .d-flex.align-items-center img[style*="width: 140px"] {
    width: 100px !important;
    height: 80px !important;
  }

  /* Contact Map Section Mobile */
  .map-container {
    height: 220px;
  }

  .map-info-overlay {
    padding: 10px 15px;
    max-width: 160px;
  }

  .map-info-title {
    font-size: 0.9rem;
  }

  .map-info-address,
  .map-info-rating,
  .map-info-link {
    font-size: 0.65rem;
  }

  .contact-info-box,
  .email-info-box {
    padding: 25px 20px;
    text-align: center;
  }

  .contact-heading,
  .email-heading {
    font-size: 1.25rem;
  }

  .contact-icon-wrap,
  .email-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  /* Amenities Section Mobile */
  .amenities-images-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    gap: 15px;
  }

  .amenities-img-left {
    height: 350px;
  }

  .amenities-img-right {
    height: 250px;
  }

  .amenities-stats-vertical {
    padding: 15px 15px;
    gap: 15px;
  }

  .amenities-stat-number {
    font-size: 1.5rem;
  }

  .amenities-stat-label {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .amenities-icons-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .amenity-icon-circle {
    width: 55px;
    height: 55px;
  }

  .amenity-icon-circle i {
    width: 22px !important;
    height: 22px !important;
  }

  .amenity-icon-title {
    font-size: 0.9rem;
  }

  .amenity-icon-desc {
    font-size: 0.75rem;
  }
}

/* Touch Device Enhancements */
@media (hover: none) {
  .room-card .room-img {
    transform: none;
  }

  .room-card:hover .room-img {
    transform: none;
  }

  .room-content {
    transform: translateY(0);
  }

  .hero-grid-item:hover {
    transform: none;
  }
}
