:root {
    --primary-gold: #f79240;
    --primary-navy: #0a1929;
    --secondary-navy: #1a2332;
    --dark-navy: #050b14;
    --light-gold: #f4e5c2;
    --accent-gold: #c9a961;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-600: #757575;
    --gray-800: #424242;
    --font-primary: "Poppins", sans-serif;
    --font-display: "Playfair Display", serif;
    --font-accent: "Cormorant Garamond", serif;
    --section-padding: 100px 0;
    --card-padding: 30px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

body.dark-mode {
  --primary-navy: #f8f9fa;
  --secondary-navy: #e5e5e5;
  --dark-navy: #ffffff;
  --white: #0a1929;
  --light-bg: #1a2332;
  --gray-100: #2a3342;
  --gray-200: #3a4352;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-teal-dark) 0, var(--bs-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.luxury-spinner {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: var(--accent-gold);
  animation-duration: 2s;
  animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: var(--light-gold);
  animation-duration: 2.5s;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.preloader-subtext {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--light-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-smooth);
  background: 0 0;
}

.header.scrolled {
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1.5rem 0;
  transition: var(--transition-fast);
}

.header.scrolled .navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.brand-icon {
  color: var(--primary-gold);
  margin-right: 10px;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-gold);
}

.btn-book-now {
  background: var(--primary-gold);
  color: var(--white) !important;
  padding: 0.6rem 1.8rem !important;
  border-radius: 30px;
  margin-left: 10px;
}

.btn-book-now::after {
  display: none;
}

.btn-book-now:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.navbar-toggler {
  border: 2px solid var(--primary-gold);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1929 0, #1a2f45 100%);
    background-image: url(../images/aerial3.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 142, 41, 0.85) 0,
      rgba(255, 153, 0, 0.7) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%,
      rgba(212, 175, 55, 0.05) 0,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(212, 175, 55, 0.05) 0,
      transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}


.hero-subtitle {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--primary-gold);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
  background: 0 0;
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline-custom {
  background: 0 0;
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scroll-indicator span {
  width: 3px;
  height: 15px;
  background: var(--primary-gold);
  border-radius: 3px;
  animation: scrollAnimation 1.5s infinite;
}

.scroll-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollAnimation {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

.booking-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.booking-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-form .form-label {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form .form-control,
.booking-form .form-select {
  padding: 12px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

.btn-search {
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-search:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
  letter-spacing: 1px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
  margin: 20px auto 0;
  position: relative;
}

.section-divider::after,
.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
}

.section-divider::before {
  left: -15px;
}

.section-divider::after {
  right: -15px;
}

.featured-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.room-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.booking-card .price-label {
  color: #fff;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.room-badge.luxury {
  background: linear-gradient(135deg, #c9a961 0, #d4af37 100%);
}

.room-badge.exclusive {
  background: linear-gradient(135deg, #1a2332 0, #0a1929 100%);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 41, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.btn-view {
  background: var(--primary-gold);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.room-card:hover .btn-view {
  transform: translateY(0);
}

.btn-view:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.room-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-rating {
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.room-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.room-description {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--gray-200);
}

.room-amenities span {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-amenities i {
  color: var(--primary-gold);
}

.room-footer {
    position: relative !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

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

.price-label {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.price-period {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.navbar-brand:focus,
.navbar-brand:hover {
  color: #fff;
}

.btn-book-room {
  background: var(--primary-navy);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  margin-top: 20px;
}

.btn-book-room:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateX(5px);
}

.about-section {
  padding: var(--section-padding);
  background: var(--white);
}

.about-images {
  position: relative;
}

.about-image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-image-float img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.experience-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.about-content {
  padding-left: 40px;
}

.about-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      var(--light-gold) 0,
      var(--primary-gold) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.feature-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--gray-600);
  margin: 0;
}

.amenities-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.amenity-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg,
      var(--white) 0,
      rgba(212, 175, 55, 0.05) 100%);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,
      var(--primary-gold) 0,
      var(--accent-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
  transform: rotateY(360deg);
}

.amenity-icon i {
  font-size: 2rem;
  color: var(--white);
}

.amenity-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.amenity-description {
  color: var(--gray-600);
  line-height: 1.7;
}

.testimonials-section {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonial-card {
  background: var(--light-bg);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 30px;
  left: 40px;
  font-size: 3rem;
  color: var(--primary-gold);
  opacity: 0.2;
}

.testimonial-stars {
  color: var(--primary-gold);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.carousel-control-next,
.carousel-control-prev {
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition-smooth);
  margin-left: 5%;
  margin-right: 5%;
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-next i,
.carousel-control-prev i {
  font-size: 1.2rem;
  color: var(--white);
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background: var(--primary-gold);
  width: 30px;
  border-radius: 6px;
}

.offers-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.offer-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.offer-ribbon {
  position: absolute;
  top: 20px;
  left: -35px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 8px 40px;
  font-weight: 700;
  font-size: 0.9rem;
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-image {
  height: 250px;
  overflow: hidden;
}

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

.offer-card:hover .offer-image img {
  transform: scale(1.1);
}

.offer-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.offer-description {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.offer-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.offer-includes li {
  padding: 8px 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-includes i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-top: 20px;
  border-top: 2px solid var(--gray-200);
  margin-top: auto;
}

.old-price {
  font-size: 1.2rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.new-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.btn-offer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
}

.btn-offer:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.gallery-section {
  padding: var(--section-padding);
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 300px;
}

.gallery-item-large {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 41, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: var(--primary-gold);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.dark-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg,
      var(--primary-navy) 0,
      var(--secondary-navy) 100%);
  position: relative;
  overflow: hidden;
}

    .dark-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0, transparent 50%);
    }

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.newsletter-wrapper {
  background: linear-gradient(135deg,
      var(--primary-navy) 0,
      var(--secondary-navy) 100%);
  padding: 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.newsletter-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.1) 0,
      transparent 70%);
}

.newsletter-subtitle {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .input-group {
  position: relative;
}

.newsletter-form .form-control {
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
  color: var(--white);
}

.btn-subscribe {
  position: absolute !important;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-subscribe:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) translateX(3px);
  box-shadow: var(--shadow-gold);
}

.newsletter-note {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer {
  background: linear-gradient(135deg,
      var(--dark-navy) 0,
      var(--primary-navy) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand i {
  color: var(--primary-gold);
  margin-right: 10px;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: start;
}

.footer-contact i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  background: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.scroll-top i {
  font-size: 1.2rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85%;
  animation: zoom 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: var(--white);
  padding: 20px 0;
  font-size: 1.1rem;
}

@media (max-width: 1199px) {
  .carousel-control-prev {
    left: -20px;
  }

  .carousel-control-next {
    right: -20px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-image-float {
    bottom: -20px;
    right: -20px;
  }

  .about-experience {
    left: -20px;
  }

  .newsletter-wrapper {
    padding: 40px;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }

  .gallery-item-large {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .booking-card {
    padding: 25px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .about-experience,
  .about-image-float {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 20px;
  }

  .newsletter-wrapper {
    padding: 30px 20px;
  }

  .btn-subscribe {
    position: relative;
    width: 100%;
    margin-top: 15px;
    transform: none !important;
  }

  .newsletter-form .form-control {
    padding-right: 25px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  .theme-toggle {
    top: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .preloader-text {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .offer-ribbon {
    left: -40px;
    padding: 6px 35px;
    font-size: 0.75rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }
}

.py-5 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.text-gold {
  color: var(--primary-gold);
}

.bg-gold {
  background-color: var(--primary-gold);
}

.bg-navy {
  background-color: var(--primary-navy);
}

header {
  background-color: #091929 !important;
}

.contact-section {
  padding: 200px 0 100px;
  min-height: 100vh;
  background: #f8f9fa;
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.contact-card i {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  color: #0a1929;
  margin-bottom: 15px;
}

.contact-card p {
  color: #757575;
}

.contact-back-btn {
  margin-top: 50px;
  text-align: center;
}

.room-details-section {
  padding: 200px 0 100px;
  min-height: 100vh;
  background: #f8f9fa;
}

.room-stars {
  color: #d4af37;
  margin: 20px 0;
}

.room-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.room-image {
  width: 100%;
  border-radius: 10px;
}

.room-heading {
  font-family: "Playfair Display", serif;
  color: #0a1929;
  margin-bottom: 20px;
}

.room-description {
  color: #757575;
  line-height: 1.8;
  margin-bottom: 30px;
}

.amenity-item i {
  color: #d4af37;
  margin-right: 10px;
}

.booking-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}

.price-box {
  background: linear-gradient(135deg, #d4af37 0, #c9a961 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

.price-box .price-label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.price-box .price {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.price-box .per-night {
  font-size: 0.9rem;
  opacity: 0.9;
}

.booking-card .btn-outline-custom {
  color: var(--primary-gold) !important;
  border: 2px solid var(--primary-gold);
}

.hero-subtitle-events {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
}

.event-intro {
  background: linear-gradient(145deg, #fff9f5, #fff);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.venue-card {
  background: var(--bg-white, #fff);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.venue-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.venue-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.venue-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #c4a05b;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(196, 160, 91, 0.3);
}

.venue-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

.venue-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.venue-capacity {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #5a5a5a;
}

.venue-capacity i {
  color: #c4a05b;
  width: 22px;
}

.venue-description {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.venue-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.btn-venue {
  background: 0 0;
  border: 2px solid #c4a05b;
  color: #c4a05b;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.btn-venue:hover {
  background: #c4a05b;
  color: #fff;
}

.wedding-package-card {
  background: linear-gradient(135deg, #fefcf8, #fff);
  border-radius: 30px;
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 20px 35px rgba(196, 160, 91, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 160, 91, 0.2);
  text-align: center;
  height: 100%;
}

.wedding-package-card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
  border-color: #c4a05b;
}

.package-icon {
  font-size: 3.2rem;
  color: #c4a05b;
  margin-bottom: 1.5rem;
}

.package-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #c4a05b;
  margin-bottom: 1.5rem;
  font-family: Poppins, sans-serif;
}

.package-price span {
  font-size: 1rem;
  color: #7a7a7a;
  font-weight: 400;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.package-features li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.package-features i {
  color: #c4a05b;
  width: 22px;
}

.event-inquiry-form {
  background: #faf7f2;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.form-control-elegant {
  border: none;
  border-bottom: 2px solid #e0d6cc;
  border-radius: 0;
  background: 0 0;
  padding: 0.8rem 0.5rem;
  font-family: Poppins, sans-serif;
  transition: border-color 0.3s ease;
}

.form-control-elegant:focus {
  border-bottom-color: #c4a05b;
  box-shadow: none;
  background: 0 0;
}

.btn-inquiry {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-inquiry:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
}

body.dark-mode .event-intro {
  background: #2a2a2a;
  color: #eee;
}

body.dark-mode .event-inquiry-form,
body.dark-mode .venue-card,
body.dark-mode .wedding-package-card {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

body.dark-mode .package-title,
body.dark-mode .venue-title {
  color: #f0f0f0;
}

body.dark-mode .venue-description {
  color: #b5b5b5;
}

body.dark-mode .form-control-elegant {
  border-bottom-color: #5a4e42;
  color: #f0f0f0;
}

.state-box {
  background: var(--bg-white, #fff);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 20px;
  margin: auto;
}

.spa-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.spa-intro {
  background: linear-gradient(135deg, #f3efe9, #fffcf8);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(156, 126, 88, 0.08);
  border: 1px solid rgba(196, 160, 91, 0.15);
}

.treatment-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.15);
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(156, 126, 88, 0.15);
}

.treatment-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.treatment-card:hover .treatment-image img {
  transform: scale(1.1);
}

.treatment-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #c4a05b;
  border: 1px solid rgba(196, 160, 91, 0.3);
}

.treatment-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

.treatment-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.treatment-desc {
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.treatment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  margin-bottom: 1.2rem;
}

.treatment-duration {
  color: #7a7a7a;
  font-size: 0.95rem;
}

.treatment-duration i {
  color: #c4a05b;
  margin-right: 6px;
}

.treatment-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c4a05b;
  font-family: Poppins, sans-serif;
}

.treatment-price span {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
}

.btn-treatment {
  background: 0 0;
  border: 2px solid #c4a05b;
  color: #c4a05b;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  width: 100%;
}

.btn-treatment:hover {
  background: #c4a05b;
  color: #fff;
}

.spa-facility-card {
  background: #fbf9f5;
  border-radius: 30px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.1);
}

.spa-facility-card:hover {
  background: #fff;
  box-shadow: 0 15px 35px rgba(196, 160, 91, 0.1);
  transform: translateY(-6px);
}

.facility-icon {
  font-size: 3.5rem;
  color: #c4a05b;
  margin-bottom: 1.5rem;
}

.facility-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.facility-desc {
  color: #6a6a6a;
  line-height: 1.7;
}

.wellness-package-card {
  background: linear-gradient(145deg, #fff, #fcf9f5);
  border-radius: 30px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 35px rgba(156, 126, 88, 0.05);
  border: 1px solid rgba(196, 160, 91, 0.2);
  text-align: center;
  height: 100%;
}

.wellness-package-card:hover {
  border-color: #c4a05b;
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.12);
}

.package-icon {
  font-size: 3rem;
  color: #c4a05b;
  margin-bottom: 1.5rem;
}

.package-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-duration {
  color: #b28b5e;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.package-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.package-features i {
  color: #c4a05b;
  width: 22px;
}

.spa-booking-form {
  background: #f6f0e9;
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
}

.form-control-spa {
  border: none;
  border-bottom: 2px solid #d9cdbf;
  border-radius: 0;
  background: 0 0;
  padding: 0.9rem 0.5rem;
  font-family: Poppins, sans-serif;
  transition: border-color 0.3s ease;
}

.form-control-spa:focus {
  border-bottom-color: #c4a05b;
  box-shadow: none;
  background: 0 0;
}

.btn-spa {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-spa:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
}

body.dark-mode .spa-booking-form,
body.dark-mode .spa-facility-card,
body.dark-mode .spa-intro,
body.dark-mode .treatment-card,
body.dark-mode .wellness-package-card {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #eee;
}

body.dark-mode .facility-title,
body.dark-mode .package-name,
body.dark-mode .treatment-title {
  color: #f0f0f0;
}

body.dark-mode .facility-desc,
body.dark-mode .treatment-desc {
  color: #b5b5b5;
}

body.dark-mode .form-control-spa {
  border-bottom-color: #5e5348;
  color: #eee;
}

.dining-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dining-intro {
  background: linear-gradient(145deg, #fffaf5, #fff);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(196, 160, 91, 0.08);
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.restaurant-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.restaurant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
}

.restaurant-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.restaurant-card:hover .restaurant-image img {
  transform: scale(1.1);
}

.restaurant-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #c4a05b;
  border: 1px solid rgba(196, 160, 91, 0.3);
}

.restaurant-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

.restaurant-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.restaurant-cuisine {
  color: #c4a05b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.restaurant-desc {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.restaurant-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  margin-bottom: 1.2rem;
}

.restaurant-hours {
  color: #7a7a7a;
  font-size: 0.95rem;
}

.restaurant-hours i {
  color: #c4a05b;
  margin-right: 6px;
}

.btn-reserve {
  background: 0 0;
  border: 2px solid #c4a05b;
  color: #c4a05b;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  width: 100%;
}

.btn-reserve:hover {
  background: #c4a05b;
  color: #fff;
}

.chef-card {
  background: #faf7f2;
  border-radius: 30px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.1);
}

.chef-card:hover {
  background: #fff;
  box-shadow: 0 15px 35px rgba(196, 160, 91, 0.1);
  transform: translateY(-6px);
}

.chef-image {
  width: 150px;
  height: 150px;
  margin: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #c4a05b;
  margin-bottom: 1.5rem;
}

.chef-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.chef-title {
  color: #c4a05b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.chef-bio {
  color: #6a6a6a;
  line-height: 1.7;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(196, 160, 91, 0.3);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-dish {
  font-weight: 500;
  font-size: 1.2rem;
}

.menu-dish small {
  display: block;
  font-weight: 300;
  color: #7a7a7a;
  font-size: 0.9rem;
}

.menu-price {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: #c4a05b;
  font-size: 1.3rem;
}

.wine-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(196, 160, 91, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.wine-card:hover {
  background: #fcf8f3;
}

.wine-icon {
  font-size: 3rem;
  color: #c4a05b;
  margin-bottom: 1rem;
}

.wine-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.wine-origin {
  color: #c4a05b;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.wine-desc {
  color: #6a6a6a;
  font-size: 0.95rem;
}

.dining-reserve-form {
  background: #faf7f2;
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
}

.form-control-dining {
  border: none;
  border-bottom: 2px solid #d9cdbf;
  border-radius: 0;
  background: 0 0;
  padding: 0.9rem 0.5rem;
  font-family: Poppins, sans-serif;
  transition: border-color 0.3s ease;
}

.form-control-dining:focus {
  border-bottom-color: #c4a05b;
  box-shadow: none;
  background: 0 0;
}

.btn-reserve-dining {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-reserve-dining:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
}

body.dark-mode .chef-card,
body.dark-mode .dining-intro,
body.dark-mode .dining-reserve-form,
body.dark-mode .restaurant-card,
body.dark-mode .wine-card {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #eee;
}

body.dark-mode .chef-name,
body.dark-mode .restaurant-title,
body.dark-mode .wine-name {
  color: #f0f0f0;
}

body.dark-mode .chef-bio,
body.dark-mode .restaurant-desc,
body.dark-mode .wine-desc {
  color: #b5b5b5;
}

body.dark-mode .form-control-dining {
  border-bottom-color: #5e5348;
  color: #eee;
}

.concierge-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.concierge-intro {
  background: linear-gradient(145deg, #fffaf5, #fff);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(196, 160, 91, 0.08);
  border: 1px solid rgba(196, 160, 91, 0.2);
  margin-bottom: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  color: #c4a05b;
  margin-bottom: 1.8rem;
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-desc {
  color: #5a5a5a;
  line-height: 1.7;
  font-weight: 300;
}

.experience-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
}

.experience-image {
  height: 240px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-card:hover .experience-image img {
  transform: scale(1.1);
}

.experience-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

.experience-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.experience-desc {
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.experience-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.experience-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c4a05b;
  font-family: Poppins, sans-serif;
}

.experience-price span {
  font-size: 0.9rem;
  color: #999;
  font-weight: 400;
}

.btn-experience {
  background: 0 0;
  border: 2px solid #c4a05b;
  color: #c4a05b;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.btn-experience:hover {
  background: #c4a05b;
  color: #fff;
}

.concierge-form {
  background: #faf7f2;
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
}

.form-control-concierge {
  border: none;
  border-bottom: 2px solid #d9cdbf;
  border-radius: 0;
  background: 0 0;
  padding: 0.9rem 0.5rem;
  font-family: Poppins, sans-serif;
  transition: border-color 0.3s ease;
}

.form-control-concierge:focus {
  border-bottom-color: #c4a05b;
  box-shadow: none;
  background: 0 0;
}

.btn-concierge {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-concierge:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
}

body.dark-mode .concierge-form,
body.dark-mode .concierge-intro,
body.dark-mode .experience-card,
body.dark-mode .service-card {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #eee;
}

body.dark-mode .experience-title,
body.dark-mode .service-title {
  color: #f0f0f0;
}

body.dark-mode .experience-desc,
body.dark-mode .service-desc {
  color: #b5b5b5;
}

body.dark-mode .form-control-concierge {
  border-bottom-color: #5e5348;
  color: #eee;
}

.transfer-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.transfer-intro {
  background: linear-gradient(145deg, #fffaf5, #fff);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(196, 160, 91, 0.08);
  border: 1px solid rgba(196, 160, 91, 0.2);
  margin-bottom: 2rem;
}

.transfer-option-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
  text-align: center;
}

.transfer-option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
}

.transfer-icon {
  font-size: 3.5rem;
  color: #c4a05b;
  margin-bottom: 1.8rem;
}

.transfer-option-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.transfer-option-desc {
  color: #5a5a5a;
  line-height: 1.7;
  font-weight: 300;
}

.fleet-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
}

.fleet-image {
  height: 240px;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

.fleet-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.fleet-capacity {
  color: #c4a05b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.fleet-capacity i {
  margin-right: 5px;
}

.fleet-desc {
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.fleet-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c4a05b;
  font-family: Poppins, sans-serif;
}

.fleet-price span {
  font-size: 0.9rem;
  color: #999;
  font-weight: 400;
}

.btn-fleet {
  background: 0 0;
  border: 2px solid #c4a05b;
  color: #c4a05b;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.btn-fleet:hover {
  background: #c4a05b;
  color: #fff;
}

.transfer-booking-form {
  background: #faf7f2;
  border-radius: 40px;
  padding: 3rem;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
}

.form-control-transfer {
  border: none;
  border-bottom: 2px solid #d9cdbf;
  border-radius: 0;
  background: 0 0;
  padding: 0.9rem 0.5rem;
  font-family: Poppins, sans-serif;
  transition: border-color 0.3s ease;
}

.form-control-transfer:focus {
  border-bottom-color: #c4a05b;
  box-shadow: none;
  background: 0 0;
}

.btn-transfer {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-transfer:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
}

body.dark-mode .fleet-card,
body.dark-mode .transfer-booking-form,
body.dark-mode .transfer-intro,
body.dark-mode .transfer-option-card {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #eee;
}

body.dark-mode .fleet-title,
body.dark-mode .transfer-option-title {
  color: #f0f0f0;
}

body.dark-mode .fleet-desc,
body.dark-mode .transfer-option-desc {
  color: #b5b5b5;
}

body.dark-mode .form-control-transfer {
  border-bottom-color: #5e5348;
  color: #eee;
}

.blog-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.blog-post-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.blog-post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(196, 160, 91, 0.15);
}

.blog-post-image {
  height: 240px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.1);
}

.blog-post-content {
  padding: 2rem 1.8rem 2rem 1.8rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #7a7a7a;
  font-size: 0.9rem;
}

.blog-post-meta i {
  color: #c4a05b;
  margin-right: 4px;
}

.blog-post-category,
.blog-post-date {
  display: flex;
  align-items: center;
}

.blog-post-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.blog-post-excerpt {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.blog-post-link {
  font-weight: 600;
  color: #c4a05b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.blog-post-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.blog-post-link:hover {
  color: #a8884a;
}

.blog-post-link:hover i {
  transform: translateX(5px);
}

.blog-sidebar {
  background: #faf7f2;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.sidebar-widget {
  margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 0.8rem;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #c4a05b;
}

.search-form {
  display: flex;
  border-bottom: 2px solid #d9cdbf;
}

.search-input {
  border: none;
  background: 0 0;
  padding: 0.7rem 0;
  flex: 1;
  font-family: Poppins, sans-serif;
}

.search-input:focus {
  outline: 0;
}

.search-btn {
  background: 0 0;
  border: none;
  color: #c4a05b;
  font-size: 1.2rem;
}

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

.category-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(196, 160, 91, 0.3);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: #5a5a5a;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #c4a05b;
}

.category-list span {
  color: #c4a05b;
}

.recent-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: center;
}

.recent-post-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.recent-post-title a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1rem;
}

.recent-post-title a:hover {
  color: #c4a05b;
}

.recent-post-date {
  font-size: 0.8rem;
  color: #7a7a7a;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: #fff;
  border: 1px solid rgba(196, 160, 91, 0.3);
  color: #5a5a5a;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #c4a05b;
  border-color: #c4a05b;
  color: #fff;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-link-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(196, 160, 91, 0.3);
  color: #5a5a5a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-link-custom.active,
.page-link-custom:hover {
  background: #c4a05b;
  border-color: #c4a05b;
  color: #fff;
}

body.dark-mode .blog-post-card,
body.dark-mode .blog-sidebar {
  background: #2a2a2a;
  border-color: #3a3a3a;
  color: #eee;
}

body.dark-mode .blog-post-title,
body.dark-mode .recent-post-title a,
body.dark-mode .widget-title {
  color: #f0f0f0;
}

body.dark-mode .blog-post-excerpt,
body.dark-mode .category-list a {
  color: #b5b5b5;
}

body.dark-mode .search-input {
  color: #eee;
}

body.dark-mode .tag {
  background: #3a3a3a;
  color: #ccc;
  border-color: #5a5a5a;
}

.blog-detail-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
  margin-top: 4rem;
}

.breadcrumb-custom {
  background: 0 0;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-custom a {
  color: #c4a05b;
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  text-decoration: underline;
}

.breadcrumb-custom .separator {
  margin: 0 0.5rem;
  color: #aaa;
}

.article-content {
  font-family: Poppins, sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4a4a;
}

.article-content h2,
.article-content h3 {
  font-family: "Playfair Display", serif;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  border-left: 4px solid #c4a05b;
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: #faf7f2;
  border-radius: 0 20px 20px 0;
}

.article-content img {
  border-radius: 20px;
  margin: 2rem 0;
}

.article-content ol,
.article-content ul {
  margin-bottom: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.post-meta-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(196, 160, 91, 0.2);
  border-bottom: 1px solid rgba(196, 160, 91, 0.2);
}

.post-meta-item {
  display: flex;
  align-items: center;
  color: #7a7a7a;
}

.post-meta-item i {
  color: #c4a05b;
  margin-right: 0.6rem;
  font-size: 1.1rem;
}

.post-meta-item a {
  color: #7a7a7a;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.post-meta-item a:hover {
  color: #c4a05b;
  border-bottom-color: #c4a05b;
}

.post-tags {
  margin: 2rem 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: #f0ece6;
  border: 1px solid rgba(196, 160, 91, 0.3);
  color: #5a5a5a;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #c4a05b;
  border-color: #c4a05b;
  color: #fff;
}

.share-buttons {
  display: flex;
  gap: 0.8rem;
  margin: 2rem 0;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0ece6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c4a05b;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.share-btn:hover {
  background: #c4a05b;
  color: #fff;
  transform: translateY(-3px);
}

.author-bio {
  display: flex;
  gap: 2rem;
  background: #faf7f2;
  border-radius: 30px;
  padding: 2rem;
  margin: 3rem 0;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c4a05b;
}

.author-info h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.author-info p {
  margin-bottom: 1rem;
  color: #5a5a5a;
}

.author-social a {
  color: #c4a05b;
  margin-right: 1rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.author-social a:hover {
  color: #a8884a;
}

.comments-section {
  margin: 3rem 0;
}

.comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(196, 160, 91, 0.2);
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-meta {
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 600;
  color: #1a1a1a;
  margin-right: 1rem;
}

.comment-date {
  color: #7a7a7a;
  font-size: 0.9rem;
}

.comment-text {
  color: #5a5a5a;
  line-height: 1.6;
}

.comment-reply {
  margin-top: 0.8rem;
  display: inline-block;
  color: #c4a05b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.comment-reply i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.comment-reply:hover i {
  transform: translateX(5px);
}

.comment-form {
  background: #faf7f2;
  border-radius: 30px;
  padding: 2rem;
  margin-top: 2rem;
}

.form-control-comment {
  border: none;
  border-bottom: 2px solid #d9cdbf;
  border-radius: 0;
  background: 0 0;
  padding: 0.8rem 0;
  font-family: Poppins, sans-serif;
  transition: border-color 0.3s ease;
}

.form-control-comment:focus {
  border-bottom-color: #c4a05b;
  box-shadow: none;
  background: 0 0;
}

.btn-comment {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-comment:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
}

.related-posts {
  margin: 4rem 0;
}

.related-post-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease;
  height: 100%;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.related-post-card:hover {
  transform: translateY(-8px);
}

.related-post-image {
  height: 180px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.1);
}

.related-post-content {
  padding: 1.5rem;
}

.related-post-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.related-post-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.related-post-title a:hover {
  color: #c4a05b;
}

.related-post-date {
  font-size: 0.85rem;
  color: #7a7a7a;
}

body.dark-mode .article-content {
  color: #b5b5b5;
}

body.dark-mode .article-content h2,
body.dark-mode .article-content h3 {
  color: #f0f0f0;
}

body.dark-mode .comment-date,
body.dark-mode .post-meta-item,
body.dark-mode .related-post-date {
  color: #aaa;
}

body.dark-mode .author-bio,
body.dark-mode .comment-form {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

body.dark-mode .tag {
  background: #3a3a3a;
  color: #ccc;
}

body.dark-mode .share-btn {
  background: #3a3a3a;
  color: #c4a05b;
}

.policy-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1600&h=600&fit=crop) center/cover no-repeat;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.policy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.policy-hero-content {
  position: relative;
  z-index: 2;
}

.policy-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.policy-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-container {
  margin: -4rem auto 3rem;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.policy-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #1a1a1a;
}

.policy-section li,
.policy-section p {
  color: #5a5a5a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.policy-section ol,
.policy-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: #c4a05b;
  font-weight: 600;
}

.last-updated {
  font-style: italic;
  color: #7a7a7a;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 160, 91, 0.3);
}

body.dark-mode .policy-container {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

body.dark-mode .policy-section h2,
body.dark-mode .policy-section h3 {
  color: #f0f0f0;
}

body.dark-mode .policy-section li,
body.dark-mode .policy-section p {
  color: #b5b5b5;
}

body.dark-mode .last-updated {
  color: #aaa;
  border-bottom-color: #3a3a3a;
}

@media (max-width: 768px) {
  .policy-hero-title {
    font-size: 2.5rem;
  }

  .policy-container {
    padding: 2rem;
    margin-top: -3rem;
  }
}

.faq-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&h=600&fit=crop) center/cover no-repeat;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.faq-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.faq-hero-content {
  position: relative;
  z-index: 2;
}

.faq-hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.faq-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-container {
  margin: -4rem auto 3rem;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(196, 160, 91, 0.2);
  background: 0 0;
}

.accordion-button {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  background: 0 0;
  box-shadow: none;
  padding: 1.5rem 1rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: #c4a05b;
  background: 0 0;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(196, 160, 91, 0.5);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c4a05b' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c4a05b' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
  color: #5a5a5a;
  line-height: 1.8;
  font-weight: 300;
  padding: 0.5rem 1rem 2rem 1rem;
}

.faq-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c4a05b;
  margin-bottom: 0.5rem;
}

.contact-box {
  background: #faf7f2;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  border: 1px solid rgba(196, 160, 91, 0.2);
}

.contact-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-box p {
  color: #5a5a5a;
  margin-bottom: 2rem;
}

.btn-contact {
  background: #c4a05b;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-contact:hover {
  background: #a8884a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(196, 160, 91, 0.3);
  color: #fff;
}

body.dark-mode .faq-container {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

body.dark-mode .accordion-button {
  color: #f0f0f0;
}

body.dark-mode .accordion-button:not(.collapsed) {
  color: #c4a05b;
}

body.dark-mode .accordion-body {
  color: #b5b5b5;
}

body.dark-mode .contact-box {
  background: #2a2a2a;
  border-color: #3a3a3a;
}

body.dark-mode .contact-box p {
  color: #b5b5b5;
}

@media (max-width: 768px) {
  .faq-hero-title {
    font-size: 2.5rem;
  }

  .faq-container {
    padding: 2rem;
    margin-top: -3rem;
  }
}

/* ===== NEW CLASSES FOR ADDED CONTENT (Add these to your style.css) ===== */

/* Gallery Section */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.room-gallery .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 250px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.room-gallery .gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.room-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.85), transparent);
  color: #fff;
  padding: 20px 15px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.room-gallery .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Guest Reviews */
.guest-reviews {
  margin-top: 60px;
}

.review-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(196, 160, 91, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.12);
}

.review-stars {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #424242;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(212, 175, 55, 0.4);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.author-info h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #0a1929;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.85rem;
  color: #757575;
  font-weight: 500;
}

/* Similar Rooms */
.similar-rooms {
  margin-top: 60px;
}

.similar-rooms .room-card-sm {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.similar-rooms .room-card-sm:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.room-card-sm .room-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.room-card-sm .room-badge-sm {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.room-card-sm .room-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-card-sm .room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #0a1929;
  margin-bottom: 8px;
}

.room-card-sm .room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #757575;
}

.room-card-sm .room-features i {
  color: #d4af37;
  margin-right: 5px;
}

.room-card-sm .room-price-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-top: auto;
}

.room-card-sm .room-price-sm small {
  font-size: 0.9rem;
  color: #757575;
  font-weight: 400;
}

.room-card-sm .btn-sm-outline {
  display: inline-block;
  margin-top: 15px;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.3s;
  text-align: center;
}

.room-card-sm .btn-sm-outline:hover {
  background: #d4af37;
  color: #fff;
}

/* Special Offer Banner */
.special-offer {
  margin-top: 60px;
  background: linear-gradient(105deg, #0a1929 0%, #1a2f45 100%);
  border-radius: 20px;
  padding: 45px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.special-offer::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
}

.offer-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.special-offer h3{color: #fff;}
.special-offer p{color: #fff;}

.offer-timer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 25px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.timer-block {
  text-align: center;
}

.timer-block span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.timer-block small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-btn {
  background: #d4af37;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.offer-btn:hover {
  background: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Gallery Section */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 0;
}

.room-gallery .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 250px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.room-gallery .gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.room-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 25, 41, 0.85), transparent);
  color: #fff;
  padding: 20px 15px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.room-gallery .gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Guest Reviews */
.guest-reviews {
  margin-top: 0;
}

.review-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(196, 160, 91, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.12);
}

.review-stars {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #424242;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(212, 175, 55, 0.4);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.author-info h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #0a1929;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.85rem;
  color: #757575;
  font-weight: 500;
}

/* Similar Rooms */
.similar-rooms {
  margin-top: 0;
}

.similar-rooms .room-card-sm {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.similar-rooms .room-card-sm:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.room-card-sm .room-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.room-card-sm .room-badge-sm {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d4af37;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.room-card-sm .room-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-card-sm .room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #0a1929;
  margin-bottom: 8px;
}

.room-card-sm .room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #757575;
}

.room-card-sm .room-features i {
  color: #d4af37;
  margin-right: 5px;
}

.room-card-sm .room-price-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-top: auto;
}

.room-card-sm .room-price-sm small {
  font-size: 0.9rem;
  color: #757575;
  font-weight: 400;
}

.room-card-sm .btn-sm-outline {
  display: inline-block;
  margin-top: 15px;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.3s;
  text-align: center;
}

.room-card-sm .btn-sm-outline:hover {
  background: #d4af37;
  color: #fff;
}

/* Special Offer Banner */
.special-offer {
  margin-top: 0;
  background: linear-gradient(105deg, #0a1929 0%, #1a2f45 100%);
  border-radius: 20px;
  padding: 45px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.special-offer::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
}

.offer-content p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.offer-timer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 25px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.timer-block {
  text-align: center;
}

.timer-block span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

.timer-block small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-btn {
  background: #d4af37;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.offer-btn:hover {
  background: #c9a961;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  color: #fff;
}

.border-gold-light {
  border-color: rgba(212, 175, 55, 0.2) !important;
}

@media (max-width: 768px) {
  .special-offer {
    flex-direction: column;
    text-align: center;
  }

  .offer-timer {
    justify-content: center;
  }
}