/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Variables */
  --deep-green: #014421;
  --soft-gold: #c9aa71;
  --off-white: #f9f9f9;
  --white: #ffffff;
  --dark-gray: #333333;
  --light-gray: #666666;
  --transition: all 0.3s ease;

  /* Typography Variables - Desktop */
  --font-header-xl: 4rem; /* Hero H1 */
  --font-header-lg: 2.5rem; /* Section H2 */
  --font-header-md: 1.8rem; /* H3, Card titles */
  --font-header-sm: 1.5rem; /* H4, Room titles */
  --font-subheader: 1.3rem; /* Hero subtitle, large paragraphs */
  --font-body-lg: 1.1rem; /* Body text, descriptions */
  --font-body-md: 1rem; /* Standard body text */
  --font-body-sm: 0.9rem; /* Small text, captions */
  --font-button: 1.1rem; /* Button text */
  --font-nav: 1rem; /* Navigation text */

  /* Line Heights */
  --line-height-tight: 1.1; /* Headers */
  --line-height-normal: 1.4; /* Subheaders */
  --line-height-relaxed: 1.6; /* Body text */
  --line-height-loose: 1.8; /* Long paragraphs */

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--font-body-md);
  font-weight: var(--font-normal);
  line-height: var(--line-height-relaxed);
  color: var(--dark-gray);
  background-color: var(--white);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll on body */
}

/* Heading Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: var(--font-semibold);
  line-height: var(--line-height-tight);
  color: var(--deep-green);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-header-xl);
  font-weight: var(--font-bold);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: var(--font-header-lg);
  font-weight: var(--font-semibold);
  line-height: var(--line-height-tight);
}

h3 {
  font-size: var(--font-header-md);
  font-weight: var(--font-semibold);
  line-height: var(--line-height-normal);
}

h4 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-medium);
  line-height: var(--line-height-normal);
}

/* Subheader Typography */
.subheader,
.hero p,
.section-header p {
  font-size: var(--font-subheader);
  font-weight: var(--font-light);
  line-height: var(--line-height-loose);
  color: var(--light-gray);
}

/* Body Typography */
p {
  font-size: var(--font-body-lg);
  font-weight: var(--font-normal);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
  margin-bottom: 1rem;
}

/* Button Typography */
button,
.cta-button,
.book-button,
.dining-button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Navigation Typography */
.nav-link {
  font-size: var(--font-nav);
  font-weight: var(--font-medium);
}

/* Card and Feature Typography */
.room-content h3,
.wellness-card h3,
.activity-card h3 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.75rem;
}

.room-description,
.wellness-card p,
.activity-card p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
}

/* Price Typography */
.room-price {
  font-size: var(--font-subheader);
  font-weight: var(--font-semibold);
  color: var(--soft-gold);
}

/* Feature Tags Typography */
.room-features span {
  font-size: var(--font-body-sm);
  font-weight: var(--font-medium);
}

/* Testimonial Typography */
.testimonial-content p {
  font-size: var(--font-body-lg);
  font-style: italic;
  line-height: var(--line-height-loose);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-author h4 {
  font-size: var(--font-body-lg);
  font-weight: var(--font-semibold);
}

.testimonial-author span {
  font-size: var(--font-body-sm);
  color: var(--soft-gold);
}

/* Footer Typography */
.footer-section h3,
.footer-section h4 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-semibold);
}

.footer-section p {
  font-size: var(--font-body-md);
  line-height: var(--line-height-relaxed);
}

/* Stats Typography */
.stat h3 {
  font-size: var(--font-header-md);
  font-weight: var(--font-bold);
  color: var(--soft-gold);
}

.stat p {
  font-size: var(--font-body-sm);
  font-weight: var(--font-medium);
}

/* Newsletter Typography */
.newsletter-content h2 {
  font-size: var(--font-header-lg);
  font-weight: var(--font-semibold);
}

.newsletter-content p {
  font-size: var(--font-subheader);
  font-weight: var(--font-light);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

/* Icon Styles */
.nav-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--deep-green);
  margin-right: 8px;
}

.nav-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: var(--dark-gray);
  transition: var(--transition);
}

.nav-link:hover .nav-icon {
  color: var(--soft-gold);
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  color: var(--white);
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  margin-bottom: 0.5rem;
}

.feature-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: var(--deep-green);
}

.check-icon {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
  margin-right: 8px;
}

.icon-large {
  width: 32px;
  height: 32px;
}

.quote-icon {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.social-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: #ccc;
  transition: var(--transition);
}

.social-link:hover .social-icon {
  color: var(--soft-gold);
}

.contact-icon {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
  margin-right: 8px;
  vertical-align: middle;
}

.link-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: #ccc;
  transition: var(--transition);
}

.footer-section ul li a:hover .link-icon {
  color: var(--soft-gold);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(201, 170, 113, 0.1);
  overflow: visible;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  overflow: visible;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--deep-green);
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-logo-img {
  width: 136px;
  height: auto;
  margin-right: 0;
  display: block;
  position: relative;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-logo:hover .nav-logo-img {
  clip-path: inset(0 0 0 100%);
}

/* Logo overlay for smooth left-to-right fill transition */
.nav-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 136px;
  height: 100%;
  background-image: url("../images/logo-malukstay-beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  pointer-events: none;
}

.nav-logo:hover::before {
  clip-path: inset(0 0 0 0);
}

/* Logo hover effect - luxury slow transition */
.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--soft-gold) 0%,
    #f4e4a6 50%,
    var(--soft-gold) 100%
  );
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 3px rgba(201, 170, 113, 0.3);
  pointer-events: none;
}

.nav-logo:hover::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.5rem 0.25rem;
}

/* Smooth transitions for multilingual text changes */
.nav-link,
.pill-label,
.pill-submit span,
.floating-booking-btn span {
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--soft-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--deep-green);
  margin: 3px 0;
  transition: var(--transition);
}

/* ===== TABLET RESPONSIVE (768px - 1024px) ===== */
@media (max-width: 1200px) {
  .nav-container {
    padding: 0 16px;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .nav-logo-img {
    width: 120px;
  }

  .book-now-bttn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .nav-logo-img {
    width: 110px;
  }
}

/* ===== MOBILE RESPONSIVE (< 845px) ===== */
@media (max-width: 845px) {
  .nav-container {
    height: 70px;
    padding: 0 16px;
  }

  .nav-logo-img {
    width: 100px;
  }

  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: calc(100vh - 70px);
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 9999;
    justify-content: flex-start;
    align-items: start;
    gap: 0.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Prevent body scroll when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }

  .nav-menu li {
    margin: 0 0;
    width: 100%;
    text-align: left;
  }


  .nav-menu .nav-link {
    width: 100%;
    justify-content: start;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(201, 170, 113, 0.1);
  }

  /* Book Now Button Mobile */
  .desktop-book-now-item {
    display: none;
  }

  .nav-menu .book-now-bttn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 1rem;
    justify-content: center;
  }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
  }

    .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Modern Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--deep-green);
}

/* Hero Carousel Container */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image Container */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Parallax Effect on Active Slide */
.hero-slide.swiper-slide-active .hero-image {
  transform: scale(1.05);
}

/* Gradient Overlay */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 2;
}

/* Modern Navigation */
.hero-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  pointer-events: none;
}

.hero-nav-btn {
  width: 64px;
  height: 64px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: all;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.hero-nav-btn:hover {
  background: rgba(201, 170, 113, 0.2);
  border-color: rgba(201, 170, 113, 0.4);
  transform: scale(1.1);
  opacity: 1;
}

.hero-nav-btn:active {
  transform: scale(0.95);
}

.hero-nav-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.hero-nav-btn:hover svg {
  transform: translateX(2px);
}

.hero-prev:hover svg {
  transform: translateX(-2px);
}

/* Pagination removed - using only numeric counter */

/* Bottom Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;

  /* Immediate appearance animation */
  opacity: 0;
  animation: heroControlsAppear 1s ease-out 1.5s forwards;
}

@keyframes heroControlsAppear {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Modern Counter */
.hero-counter {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}

.counter-current {
  font-size: 18px;
  color: var(--soft-gold);
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.counter-separator {
  width: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  margin: 0 12px;
}

.counter-total {
  font-size: 16px;
  opacity: 0.8;
  min-width: 24px;
  text-align: center;
}

/* Modern Gallery Link */
.gallery-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.gallery-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.gallery-link-btn:hover::before {
  left: 100%;
}

.gallery-link-btn:hover {
  background: rgba(201, 170, 113, 0.15);
  border-color: rgba(201, 170, 113, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(201, 170, 113, 0.2);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn-text {
  transition: transform 0.3s ease;
}

.btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.gallery-link-btn:hover .btn-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.btn-icon svg,
.btn-arrow svg {
  width: 16px;
  height: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-navigation {
    padding: 0 20px;
  }

  .hero-nav-btn {
    width: 56px;
    height: 56px;
  }

  .hero-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .hero-controls {
    bottom: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .hero-counter {
    padding: 10px 16px;
  }

  .counter-current {
    font-size: 16px;
  }

  .counter-total {
    font-size: 14px;
  }

  .gallery-link-btn {
    padding: 12px 20px;
    font-size: 12px;
    gap: 8px;
  }

  .btn-icon svg,
  .btn-arrow svg {
    width: 14px;
    height: 14px;
  }
}

.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-size: var(--font-header-xl);
  font-weight: var(--font-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.hero p {
  font-size: var(--font-subheader);
  margin-bottom: 2rem;
  opacity: 1;
  font-weight: 300;
  line-height: 1.6;
}

.cta-button,
.book-button,
.dining-button,
.newsletter-form button {
  display: inline-flex;
  background: #c9aa71;
  color: #fff;
  border: 2.5px solid #c9aa71;
  border-radius: 999px;
  padding: 14px 36px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(201, 170, 113, 0.18),
    0 1.5px 8px rgba(1, 68, 33, 0.08),
    inset 0 1.5px 8px rgba(255, 255, 255, 0.08);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s,
    border-color 0.25s, transform 0.18s;
  cursor: pointer;
  outline: none;
  min-width: 160px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-button:hover,
.cta-button:focus {
  background: #b89a5f;
  color: #fffbe6;
  border-color: #b89a5f;
  box-shadow: 0 8px 32px rgba(201, 170, 113, 0.22), 0 0 0 2px #fffbe6;
  transform: translateY(-2px) scale(1.04);
}

.cta-button:active {
  background: #c9aa71;
  color: #fff;
  border-color: #c9aa71;
  box-shadow: 0 2px 8px rgba(201, 170, 113, 0.1);
  transform: scale(0.98);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  color: var(--soft-gold);
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin: 0;
}

.about-image {
  height: 400px;
  border-radius: 15px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--deep-green);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Rooms Section */
.rooms-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: 15px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 410px;
  height: 100%;
  padding: 0;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
  width: 100%;
  height: 210px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-content {
  padding: 1rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-content h3 {
  font-size: 1.5rem;
  color: var(--deep-green);
  margin-bottom: 1rem;
}

.room-description {
  min-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0.8rem;
}

.room-features {
  margin-bottom: 1rem;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.room-features span {
  color: var(--deep-green);
  padding-left: 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.room-price {
  font-size: 1.3rem;
  color: var(--soft-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.book-button {
  background: var(--deep-green);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 15px;
  align-self: center;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(1, 68, 33, 0.08);
  text-decoration: none !important;
}

.book-button:hover {
  background:var(--soft-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(1, 68, 33, 0.12);
  text-decoration: none !important;
}

/* Wellness Section */
.wellness-section {
  padding: 6rem 0;
  background: var(--white);
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.wellness-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(1, 68, 33, 0.1),
    0 1.5px 8px rgba(201, 170, 113, 0.08);
  border: 1.5px solid rgba(201, 170, 113, 0.13);
  overflow: visible;
  padding: 0 0 2.2rem 0;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.wellness-card:hover {
  box-shadow: 0 16px 48px rgba(1, 68, 33, 0.18),
    0 2px 16px rgba(201, 170, 113, 0.18);
  transform: translateY(-8px) scale(1.025);
  border-color: var(--soft-gold);
}

.wellness-image {
  width: 100%;
  height: 200px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.wellness-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.wellness-card:hover .wellness-image img {
  transform: scale(1.04);
}

/* Subtle overlay for image for text/icon contrast */
.wellness-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 68, 33, 0.08) 0%,
    rgba(1, 68, 33, 0.18) 100%
  );
  pointer-events: none;
}

.wellness-card h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--font-header-sm);
  color: var(--deep-green);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: var(--font-semibold);
  text-align: center;
}

.wellness-card p {
  color: var(--light-gray);
  font-size: var(--font-body-lg);
  text-align: center;
  margin: 0 1.2rem 0.5rem 1.2rem;
  line-height: var(--line-height-relaxed);
}

/* Gold accent line below icon */
.wellness-card h3::before {
  content: "";
  display: block;
  margin: 0 auto 0.7rem auto;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--soft-gold) 0%, #fffbe6 100%);
  opacity: 0.7;
}

/* Activities Section */
.activities-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(1, 68, 33, 0.1),
    0 1.5px 8px rgba(201, 170, 113, 0.08);
  border: 1.5px solid rgba(201, 170, 113, 0.13);
  overflow: visible;
  padding: 0 0 2.2rem 0;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.activity-card:hover {
  box-shadow: 0 16px 48px rgba(1, 68, 33, 0.18),
    0 2px 16px rgba(201, 170, 113, 0.18);
  transform: translateY(-8px) scale(1.025);
  border-color: var(--soft-gold);
}

.activity-image {
  width: 100%;
  height: 200px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.activity-card:hover .activity-image img {
  transform: scale(1.04);
}

/* Subtle overlay for image for text/icon contrast */
.activity-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 68, 33, 0.08) 0%,
    rgba(1, 68, 33, 0.18) 100%
  );
  pointer-events: none;
}

.activity-card h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--font-header-sm);
  color: var(--deep-green);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: var(--font-semibold);
  text-align: center;
}

.activity-card p {
  color: var(--light-gray);
  font-size: var(--font-body-lg);
  text-align: center;
  margin: 0 1.2rem 0.5rem 1.2rem;
  line-height: var(--line-height-relaxed);
}

/* Gold accent line below icon */
.activity-card h3::before {
  content: "";
  display: block;
  margin: 0 auto 0.7rem auto;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--soft-gold) 0%, #fffbe6 100%);
  opacity: 0.7;
}

/* Dining Section */
.dining-section {
  padding: 6rem 0;
  background: var(--white);
}

.dining-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dining-text h2 {
  font-size: 2.5rem;
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.dining-text p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.dining-features {
  list-style: none;
  margin-bottom: 2rem;
}

.dining-features li {
  padding: 0.5rem 0;
  color: var(--light-gray);
  position: relative;
  padding-left: 0px;
  display: flex;
  align-items: center;
}

.dining-button {
  background: var(--soft-gold);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 0.95rem;
  font-weight: var(--font-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(201, 170, 113, 0.18),
    0 1.5px 8px rgba(1, 68, 33, 0.08);
  min-width: 140px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dining-button:hover {
  background: #b89a5f;
  color: #fffbe6;
  box-shadow: 0 8px 32px rgba(201, 170, 113, 0.22), 0 0 0 2px #fffbe6;
  transform: translateY(-2px) scale(1.04);
}

.dining-button:active {
  background: var(--soft-gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(201, 170, 113, 0.1);
  transform: scale(0.98);
}

.dining-image {
  height: 400px;
  border-radius: 15px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dining-image img {
  transition: var(--transition);
}

.dining-image:hover img {
  transform: scale(1.05);
}

/* Gallery Section - Luxury Carousel */
.gallery-section {
  padding: 6rem 0;
  background: var(--off-white);
  position: relative;
}

/* Essential Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 68, 33, 0.15),
    0 8px 32px rgba(201, 170, 113, 0.12);
}

.gallery-swiper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-slide:hover .gallery-slide-content img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(1, 68, 33, 0.1) 30%,
    rgba(1, 68, 33, 0.8) 70%,
    rgba(1, 68, 33, 0.95) 100%
  );
  padding: 2rem 2rem 1.5rem;
  transform: translateY(0);
  transition: all 0.4s ease;
  opacity: 1;
}

.gallery-slide:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(1, 68, 33, 0.2) 30%,
    rgba(1, 68, 33, 0.9) 70%,
    rgba(1, 68, 33, 1) 100%
  );
}

.gallery-caption h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* Gallery Caption Responsive */
@media (max-width: 768px) {
  .gallery-overlay {
    padding: 1.5rem 1rem 1rem;
  }

  .gallery-caption h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .gallery-caption p {
    font-size: 0.9rem;
  }
}

/* Hide default Swiper navigation buttons completely */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Custom Navigation Buttons - High Priority */
.gallery-carousel-container .gallery-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 9999 !important;
  box-shadow: 0 8px 32px rgba(1, 68, 33, 0.15),
    0 4px 16px rgba(201, 170, 113, 0.1) !important;
  border: 2px solid rgba(201, 170, 113, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  text-decoration: none !important;
  color: var(--deep-green) !important;
  pointer-events: auto !important;
}

.gallery-carousel-container .gallery-nav-btn:hover {
  background: var(--white) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 12px 40px rgba(1, 68, 33, 0.25),
    0 6px 20px rgba(201, 170, 113, 0.2), 0 0 0 3px rgba(201, 170, 113, 0.1) !important;
  border-color: var(--soft-gold) !important;
  color: var(--soft-gold) !important;
}

.gallery-carousel-container .gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95) !important;
  box-shadow: 0 4px 16px rgba(1, 68, 33, 0.2) !important;
}

.gallery-carousel-container .gallery-nav-btn i {
  width: 18px !important;
  height: 18px !important;
  color: inherit !important;
  transition: all 0.3s ease !important;
  stroke-width: 2.5px !important;
}

.gallery-carousel-container .gallery-nav-btn:hover i {
  transform: scale(1.1) !important;
}

.gallery-carousel-container .gallery-next {
  right: 20px !important;
}

.gallery-carousel-container .gallery-prev {
  left: 20px !important;
}

/* Pagination - High Priority */
.gallery-carousel-container .gallery-pagination {
  position: absolute !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1000 !important;
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
}

.gallery-carousel-container .swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gallery-carousel-container .swiper-pagination-bullet::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  background: var(--soft-gold) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: all 0.3s ease !important;
}

.gallery-carousel-container .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: var(--soft-gold) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 2px 8px rgba(201, 170, 113, 0.3) !important;
}

.gallery-carousel-container .swiper-pagination-bullet-active {
  background: var(--soft-gold) !important;
  border-color: var(--soft-gold) !important;
  transform: scale(1.5) !important;
  box-shadow: 0 3px 12px rgba(201, 170, 113, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.3) !important;
}

.gallery-carousel-container .swiper-pagination-bullet-active::before {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    135deg,
    var(--soft-gold) 0%,
    #fffbe6 100%
  ) !important;
}

/* Thumbnails */
.gallery-thumbnails {
  margin-top: 2rem;
}

.gallery-thumb-swiper {
  width: 100%;
  height: 100px;
}

.gallery-thumb {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  opacity: 0.7;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: var(--soft-gold);
}

.gallery-thumb.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--soft-gold);
  box-shadow: 0 4px 16px rgba(201, 170, 113, 0.3);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

.blog-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-section,
.testimonials-section {
  padding: 6rem 0;
}

/* Share Your Reflection Section */
.share-reflection-section {
  margin-top: 3rem;
}

.share-reflection-content {
  text-align: center;
}

.share-reflection-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid var(--deep-green);
  color: var(--deep-green);
}

.share-btn .simple-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-btn .simple-icon svg {
  fill: currentColor;
}

.share-btn span {
  font-size: 1rem;
}

.google-btn:hover {
  background: #4285f4;
  border-color: #4285f4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.tripadvisor-btn:hover {
  background: #00af87;
  border-color: #00af87;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 175, 135, 0.3);
}

/* Newsletter Section - High Contrast */
.newsletter-section {
  padding: 6rem 0;
  background: var(--deep-green);
  color: #fff;
  text-align: center;
}

/* Loading state for booking pill */
.booking-pill-form.loading .pill-submit {
  pointer-events: none;
}

.booking-pill-form.loading .pill-submit span {
  opacity: 0;
}

.booking-pill-form.loading .pill-submit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success state for booking pill */
.booking-pill-form.success .pill-submit {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.booking-pill-form.success .pill-submit span {
  content: "Sent!";
}

/* Error state for form fields */
.pill-field.error input,
.pill-field.error select {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.pill-field.error .error-message {
  color: #dc3545;
  font-size: var(--font-body-sm);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* Date picker customization */
.pill-field input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  color: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.pill-field input[type="date"]::-webkit-datetime-edit {
  color: var(--dark-gray);
}

.pill-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.pill-field input[type="date"]::-webkit-datetime-edit-text {
  color: var(--light-gray);
}

.pill-field input[type="date"]::-webkit-datetime-edit-month-field,
.pill-field input[type="date"]::-webkit-datetime-edit-day-field,
.pill-field input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--dark-gray);
}

/* Pill input wrapper for icon alignment */
.pill-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Icon positioning within wrapper */
.pill-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--soft-gold);
  z-index: 2;
  pointer-events: none;
}

/* Mobile/Tablet Floating Booking Button */
.mobile-booking-trigger {
  display: none;
}

.floating-booking-btn {
  background: linear-gradient(135deg, var(--deep-green) 0%, #013318 100%);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: var(--font-body-md);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(1, 68, 33, 0.3);
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.floating-booking-btn.expanded {
  width: 44px;
  margin-left: calc(100% - 44px);
  padding: 12px;
}

.floating-booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.floating-booking-btn:hover::before {
  left: 100%;
}

.floating-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(1, 68, 33, 0.4);
  background: linear-gradient(135deg, #013318 0%, var(--deep-green) 100%);
}

.floating-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.floating-booking-btn:hover .floating-icon {
  transform: scale(1.1);
}

/* Expandable Form Animation */
.expandable-booking-form {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
  .gallery-swiper {
    height: 400px;
  }

  .gallery-nav-btn {
    width: 32px;
    height: 32px;
  }

  .gallery-nav-btn i {
    width: 16px;
    height: 16px;
  }

  .gallery-next {
    right: 18px;
  }

  .gallery-prev {
    left: 18px;
  }

  .gallery-pagination {
    bottom: 25px;
    gap: 10px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 845px) {
  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  :root {
    --font-header-xl: 3rem; /* Hero H1 */
    --font-header-lg: 2.2rem; /* Section H2 */
    --font-header-md: 1.6rem; /* H3, Card titles */
    --font-header-sm: 1.3rem; /* H4, Room titles */
    --font-subheader: 1.2rem; /* Hero subtitle, large paragraphs */
    --font-body-lg: 1rem; /* Body text, descriptions */
    --font-body-md: 0.95rem; /* Standard body text */
    --font-body-sm: 0.85rem; /* Small text, captions */
    --font-button: 1rem; /* Button text */
    --font-nav: 0.95rem; /* Navigation text */
  }

  .hero h1 {
    font-size: var(--font-header-xl);
  }

  .hero p {
    font-size: var(--font-subheader);
  }

  .about-content,
  .dining-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .wellness-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Reduced padding for mobile/tablet */
  .about-section,
  .rooms-section,
  .wellness-section,
  .activities-section,
  .dining-section,
  .gallery-section,
  .testimonials-section,
  .newsletter-section,
  .location-section,
  .newsletter-section,
  .blog-section {
    padding: 4rem 0;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .rooms-grid,
  .activities-grid,
  .testimonials-grid,
  .wellness-grid {
    padding: 32px 0;
  }

  .wellness-image,
  .activity-image {
    height: 200px;
  }
  .wellness-card h3,
  .activity-card h3 {
    margin-top: 2.5rem;
  }

  .room-card {
    min-height: 320px;
  }
  .room-image {
    height: 240px;
  }
  .room-content {
    padding: 0.7rem 0.8rem 0.8rem 0.8rem;
  }

  .newsletter-form button {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
  }

  /* Blog responsive styles */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-content {
    padding: 1.5rem;

  }

  .blog-image {
    height: 200px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-cta {
    margin-top: 3rem;
  }

  .view-all-blogs-btn {
    padding: 0.875rem 1.75rem;
    font-size: var(--font-body-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  :root {
    --font-header-xl: 2.5rem; /* Hero H1 */
    --font-header-lg: 2rem; /* Section H2 */
    --font-header-md: 1.4rem; /* H3, Card titles */
    --font-header-sm: 1.2rem; /* H4, Room titles */
    --font-subheader: 1.1rem; /* Hero subtitle, large paragraphs */
    --font-body-lg: 0.95rem; /* Body text, descriptions */
    --font-body-md: 0.9rem; /* Standard body text */
    --font-body-sm: 0.8rem; /* Small text, captions */
    --font-button: 0.95rem; /* Button text */
    --font-nav: 0.9rem; /* Navigation text */
  }

  .hero h1 {
    font-size: var(--font-header-xl);
  }

  .hero p {
    font-size: var(--font-subheader);
  }

  .section-header h2 {
    font-size: var(--font-header-lg);
  }

  .section-header p {
    font-size: var(--font-body-lg);
  }

  .room-content,
  .wellness-card,
  .activity-card {
    padding: 1.5rem;
  }

  .room-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Further reduced padding for small mobile */
  .about-section,
  .rooms-section,
  .wellness-section,
  .activities-section,
  .dining-section,
  .gallery-section,
  .testimonials-section,
  .newsletter-section,
  .location-section,
  .newsletter-section,
  .blog-section {
    padding: 3rem 0;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .wellness-image,
  .activity-image {
    height: 200px;
  }
  .wellness-card h3,
  .activity-card h3 {
    margin-top: 2.5rem;
  }

  .room-card {
    min-height: 300px;
  }
  .room-image {
    height: 220px;
  }
  .room-content {
    padding: 0.7rem 0.8rem 0.8rem 0.8rem;
  }

  .newsletter-form button {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
  }

  /* Blog responsive styles */
  .blog-grid {
    gap: 1.5rem;
  }

  .blog-content {
    padding: 1.25rem;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content h3 {
    font-size: var(--font-header-sm);
  }

  .blog-content p {
    font-size: var(--font-body-md);
  }

  .view-all-blogs-btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-body-md);
  }

  .book-button {
    width: 100%;
    display: inline-block;
    margin-bottom: 2rem;
  }
  .dining-button,
  .view-all-blogs-btn {
    width: 100%;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--soft-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b89a5f;
}

/* Hero Stats Centered Layout */
.hero-stats,
.room-stats-hero {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80px;
  padding: 1rem;
  flex: 1;
}

/* 3-column layout (with unit) */
.stat-item:has(.stat-unit) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

/* 2-column layout (no unit) - centered content */
.stat-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Smaller font for long values */
.stat-value-long {
  font-size: 1.1rem !important;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
  text-align: center;
}

.stat-unit {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-stats,
  .room-stats-hero {
    gap: 1rem;
  }

  .stat-item {
    min-height: 70px;
    padding: 0.75rem;
  }

  .stat-value {
    font-size: 1.3rem;
  }
}

/* AOS Animation Containment */
[data-aos] {
  max-width: 100%;
}

/* Keep overflow visible for elements with shadows */
.room-card,
.wellness-card,
.activity-card,
.testimonial-card,
.about-image,
.dining-image {
  overflow: visible;
}

/* Hide overflow for image containers to maintain aspect ratio */
.room-image,
.wellness-image,
.activity-image {
  overflow: hidden;
}

/* Ensure all sections and containers prevent horizontal overflow */
section {
  max-width: 100%;
}

/* Grid containers - visible for shadows */
.rooms-grid,
.wellness-grid,
.activities-grid
{
  overflow: visible;
}

/* Hero section - hidden to prevent background overflow */
.hero {
  overflow: hidden;
}

/* Button containers - visible for hover effects */
.cta-button {
  overflow: hidden; /* For shimmer effect */
}

/* Navigation - visible for dropdown menus */
.navbar {
  overflow: visible;
}

.testimonials-grid {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--soft-gold) rgba(201, 170, 113, 0.1);
}

.testimonials-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: rgba(201, 170, 113, 0.1);
  border-radius: 10px;
  margin: 0 20px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: var(--soft-gold);
  border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: var(--soft-gold);
}


.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out;
  position: relative;
  min-width: 350px;
  max-width: 400px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-content p {
  font-style: italic;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Testimonial Footer Layout */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testimonial-author h4 {
  color: var(--deep-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
}

/* Star Rating Styles */
.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.star-rating-link {
  text-decoration: none;
  display: flex;
  gap: 2px;
  transition: var(--transition);
}

.star-rating-link:hover {
  transform: scale(1.05);
}

/* Testimonial Footer Link */
.testimonial-footer-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  transition: var(--transition);
}

.testimonial-footer-link:hover {
  text-decoration: none;
  color: inherit;
}

.testimonial-footer-link:hover .testimonial-platform {
  opacity: 1;
}

.testimonial-footer-link:hover .star {
  transform: scale(1.1);
}

.star {
  font-size: 1.2rem;
  transition: var(--transition);
  cursor: pointer;
}

.star.filled {
  color: #ffd700;
  text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.star.empty {
  color: #e0e0e0;
}

.star:hover {
  transform: scale(1.1);
}

/* Platform Icons */
.testimonial-platform {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-platform {
  opacity: 1;
}

.platform-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.google-icon {
  color: #4285f4;
}

.tripadvisor-icon {
  color: #00af87;
}

.platform-icon:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
    padding: 1.5rem;
    min-width: 300px;
    max-width: 350px;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .testimonial-platform {
    align-self: flex-end;
  }

  .star {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.25rem;
    min-width: 280px;
    max-width: 320px;
  }

  .testimonial-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-author h4 {
    font-size: 1rem;
  }

  .star {
    font-size: 1rem;
  }

  .platform-icon {
    width: 20px;
    height: 20px;
  }
}

.newsletter-content h2,
.newsletter-content p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
}

.newsletter-content h2 {
  font-size: var(--font-header-lg);
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: var(--font-subheader);
  margin-bottom: 2rem;
  opacity: 1;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: var(--deep-green);
}

.newsletter-form button {
  background: var(--soft-gold);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 0.9rem;
  font-weight: var(--font-semibold);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 170, 113, 0.25);
}

.newsletter-form button:active {
  transform: scale(0.98);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--soft-gold);
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-section ul li a:hover {
  color: var(--soft-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--soft-gold);
}

.review-section {
  display: flex;
  gap: 8px;
  align-items: center;
}


.review-row {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  max-width: 180px;
  margin-bottom: -10px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

/* Room Swiper Navigation */
.room-image {
  position: relative;
  overflow: hidden;
}

.room-swiper {
  width: 100%;
  height: 100%;
}

.room-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

/* Fix for room swiper on mobile - prevent overflow */
@media (max-width: 768px) {
  .room-swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .room-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  .room-swiper .swiper-slide img {
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
  }

  .room-image {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .room-swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .room-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  .room-swiper .swiper-slide img {
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
  }

  .room-image {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }
}

.room-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(1, 68, 33, 0.15);
  border: 1px solid rgba(201, 170, 113, 0.2);
  opacity: 0;
  visibility: hidden;
}

.room-card:hover .room-nav-btn {
  opacity: 1;
  visibility: visible;
}

.room-nav-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(1, 68, 33, 0.25);
  border-color: var(--soft-gold);
}

.room-nav-btn i {
  width: 16px;
  height: 16px;
  color: var(--deep-green);
  transition: all 0.3s ease;
}

.room-nav-btn:hover i {
  color: var(--soft-gold);
}

.room-next {
  right: 12px;
}

.room-prev {
  left: 12px;
}

/* Hide room navigation on mobile for better UX */
@media (max-width: 768px) {
  .room-nav-btn {
    display: none;
  }
}

/* Hero Swiper and Facility Swiper Pagination */
.hero-swiper .swiper-pagination,
.facility-swiper .swiper-pagination {
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  gap: 6px !important;
}

.hero-swiper .swiper-pagination-bullet,
.facility-swiper .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  opacity: 1 !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.hero-swiper .swiper-pagination-bullet:hover,
.facility-swiper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.2) !important;
  border-color: var(--soft-gold) !important;
}

.hero-swiper .swiper-pagination-bullet-active,
.facility-swiper .swiper-pagination-bullet-active {
  background: var(--soft-gold) !important;
  border-color: var(--soft-gold) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 2px 8px rgba(201, 170, 113, 0.4) !important;
}

/* Room Detail Swiper Pagination */
.room-detail-swiper .swiper-pagination {
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
}

.room-detail-swiper .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 50% !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  opacity: 1 !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.room-detail-swiper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.2) !important;
  border-color: var(--soft-gold) !important;
}

.room-detail-swiper .swiper-pagination-bullet-active {
  background: var(--soft-gold) !important;
  border-color: var(--soft-gold) !important;
  transform: scale(1.4) !important;
  box-shadow: 0 3px 12px rgba(201, 170, 113, 0.5) !important;
}

/* Exclusive Offers Section */
.special-offer-section {
  padding: 6rem 0;
  background: var(--off-white);
  position: relative;
}

/* Section Title */
.special-offer-title {
  text-align: center;
  font-size: var(--font-header-lg);
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-weight: var(--font-semibold);
}

/* Header with View All Button */
.special-offer-header {
  display: flex;
  justify-content: flex-end;
  max-width: 1000px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.view-all-offerss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: var(--deep-green);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: var(--font-semibold, 600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(1, 68, 33, 0.2);
  text-decoration: none;
}

.view-all-offerss-btn:hover {
  background: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 170, 113, 0.3);
}

.view-all-offerss-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-all-offerss-btn:hover svg {
  transform: translateX(3px);
}

/* Offers Grid */
.special-offer-section .special-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 900px) {
  .special-offer-section .special-offer-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
}

/* ===== OFFER CARD STYLES  ===== */
.special-offer-section .offer-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  position: relative;
}

.special-offer-section .offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Offer Image */
.special-offer-section .offer-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.special-offer-section .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.special-offer-section .offer-card:hover .offer-image img {
  transform: scale(1.05);
}

/* Offer Badge */
.special-offer-section .offer-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep-green);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: var(--font-semibold);
  text-transform: none;
  letter-spacing: normal;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.special-offer-section .offer-badge i {
  width: 14px;
  height: 14px;
  color: var(--soft-gold);
  flex-shrink: 0;
}

/* Offer Content */
.special-offer-section .offer-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.special-offer-section .offer-content h3 {
  font-size: 1.1rem;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-weight: var(--font-semibold, 600);
  letter-spacing: -0.01em;
}

.special-offer-section .offer-content .price {
  font-weight: var(--font-semibold, 600);
  font-size: 0.95rem;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
  display: block;
}

.special-offer-section .offer-content .description {
  color: var(--light-gray);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  font-size: 0.85rem;
}

/* Offer Actions */
.special-offer-section .offer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--off-white);
}

/* Offer Button */
.special-offer-section .offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--soft-gold);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: var(--font-semibold, 600);
  text-transform: none;
  transition: var(--transition);
  margin: 0 auto;
  letter-spacing: normal;
  min-width: auto;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.special-offer-section .offer-btn:hover {
  background: var(--deep-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.special-offer-section .offer-btn.reserve-btn {
  background: var(--deep-green);
}

.special-offer-section .offer-btn.reserve-btn:hover {
  background: var(--soft-gold);
}

.special-offer-section .offer-btn i {
  width: 16px;
  height: 16px;
}

/* No Offers State */
.special-offer-section .no-offers {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.special-offer-section .no-offers h3 {
  color: var(--soft-gold);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.special-offer-section .no-offers p {
  color: var(--dark-gray);
  font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 899px) */
@media (max-width: 899px) and (min-width: 600px) {
  .special-offer-section .special-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 1.25rem;
  }
}

/* Mobile & Tablet (< 768px) */
@media (max-width: 768px) {
  .special-offer-section {
    padding: 4rem 0;
  }

  .special-offer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .special-offer-header {
    justify-content: center;
    margin-bottom: 2rem;
    text-align: center;
  }

  .special-offer-section .special-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .special-offer-section .offer-card {
    border-radius: 15px;
  }

  .special-offer-section .offer-image {
    height: 180px;
  }

  .special-offer-section .offer-content {
    padding: 1.25rem;
  }

  .special-offer-section .offer-content h3 {
    font-size: 1.05rem;
    min-height: 2.4em;
  }

  .special-offer-section .offer-content .price {
    font-size: 0.95rem;
    padding: 0.4rem;
  }

  .special-offer-section .offer-content .description {
    font-size: 0.85rem;
    min-height: 4.5em;
  }

  .special-offer-section .offer-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
  }

  .special-offer-section .offer-badge {
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    top: 0.65rem;
    right: 0.65rem;
    gap: 0.3rem;
  }

  .special-offer-section .offer-badge i {
    width: 12px;
    height: 12px;
  }

  .view-all-offerss-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Small Mobile (< 599px) */
@media (max-width: 599px) {
  .special-offer-header {
    text-align: center;
  }

  .special-offer-section .special-offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
    max-width: 320px;
  }

  .special-offer-section .offer-content {
    padding: 1rem;
  }

  .special-offer-section .offer-content h3 {
    font-size: 1rem;
  }

  .special-offer-section .offer-content .description {
    font-size: 0.8rem;
  }

  .special-offer-section .offer-badge {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.65rem;
    font-size: 0.6rem;
    gap: 0.25rem;
  }

  .special-offer-section .offer-badge i {
    width: 11px;
    height: 11px;
  }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
  .special-offer-section {
    padding: 3rem 0;
  }

  .special-offer-title {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
  }

  .special-offer-section .offer-card {
    border-radius: 12px;
  }

  .special-offer-section .offer-image {
    height: 160px;
  }

  .special-offer-section .offer-content {
    padding: 1rem;
  }

  .special-offer-section .offer-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    line-height: 1.35;
    min-height: 2.3em;
  }

  .special-offer-section .offer-content .price {
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    padding: 0.35rem;
  }

  .special-offer-section .offer-content .description {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
    min-height: 4.2em;
  }

  .special-offer-section .offer-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
    min-width: auto;
  }

  .special-offer-section .offer-actions {
    padding-top: 0.65rem;
  }

  .special-offer-section .no-offers {
    padding: 2.5rem 1rem;
    border-radius: 10px;
  }

  .special-offer-section .no-offers h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .special-offer-section .no-offers p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .view-all-offerss-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.75rem;
  }
}
/* Location Section */
.location-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info {
  padding-right: 2rem;
}

.location-details h3 {
  font-size: var(--font-header-md);
  color: var(--deep-green);
  margin-bottom: 1rem;
}

.location-details > p {
  color: var(--light-gray);
  line-height: var(--line-height-relaxed);
  margin-bottom: 2rem;
  font-size: var(--font-body-lg);
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.location-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(1, 68, 33, 0.08);
  border: 1px solid rgba(201, 170, 113, 0.1);
  transition: var(--transition);
}

.location-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 68, 33, 0.12);
  border-color: var(--soft-gold);
}

.location-icon {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.location-feature h4 {
  font-size: 1.1rem;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.location-feature p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.location-button {
  display: inline-flex;
  align-items: center;
  background: var(--deep-green);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 0.9rem;
  font-weight: var(--font-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(1, 68, 33, 0.15);
  min-width: 160px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.location-button:hover {
  background: #013a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 68, 33, 0.25);
  color: var(--white);
}

.location-button:active {
  transform: scale(0.98);
}

.location-map {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--white);
  height: 100%;
  min-height: 400px;
  max-height: 80%;
}

.location-map iframe {
  display: block;
  transition: var(--transition);
}

.location-map:hover iframe {
  transform: scale(1.02);
}

/* Responsive Design for Location Section */
@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 4rem 0;
  }

  .location-content {
    gap: 2rem;
  }

  .location-info {
    padding-right: 0;
  }

  .location-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .location-details > p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .location-features {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .location-feature {
    padding: 1.5rem;
    text-align: left;
  }

  .location-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .location-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .location-cta {
    margin-top: 2.5rem;
    text-align: center;
  }

  .location-button {
    padding: 12px 28px;
    font-size: 0.9rem;
    min-width: 160px;
  }

  .location-map {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 3rem 0;
  }

  .location-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .location-details > p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .location-features {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .location-feature {
    padding: 1.2rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .location-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .location-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .location-icon {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
  }

  .location-cta {
    margin-top: 2rem;
  }

  .location-button {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(201, 170, 113, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--soft-gold);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--soft-gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: var(--font-body-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(201, 170, 113, 0.3);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: var(--font-body-sm);
  color: var(--light-gray);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
}

.blog-content h3 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 1rem;
  color: var(--deep-green);
  transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
  color: var(--soft-gold);
}

.blog-content p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.read-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--soft-gold);
  font-size: var(--font-body-lg);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-gold);
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--deep-green);
}

.read-more-btn:hover::after {
  width: 100%;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.read-more-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
  margin-top: 4rem;
}

.view-all-blogs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(1, 68, 33, 0.3);
  border: 2px solid transparent;
}

.view-all-blogs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 68, 33, 0.4);
  background: linear-gradient(135deg, var(--soft-gold) 0%, #b89a5f 100%);
  color: var(--white);
}

.view-all-blogs-btn:active {
  transform: translateY(-1px);
}

.external-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.view-all-blogs-btn:hover .external-icon {
  transform: translateX(3px) translateY(-2px);
}

/* Responsive Design for Blog Section */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-image {
    height: 220px;
  }
}

/* Blog section now uses the main responsive rules for padding consistency */

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 0.5rem;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-gray);
  font-size: var(--font-nav);
  font-weight: var(--font-medium);
  text-decoration: none;
  position: relative;
}

.language-btn:hover {
  color: var(--soft-gold);
}

.language-btn::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-gold);
  transition: var(--transition);
}

.language-btn:hover::after {
  width: 100%;
}

.language-icon {
  width: 16px;
  height: 16px;
  color: var(--dark-gray);
  transition: var(--transition);
}

.language-btn:hover .language-icon {
  color: var(--soft-gold);
}

.dropdown-icon {
  width: 14px;
  height: 14px;
  color: var(--dark-gray);
  transition: var(--transition);
}

.language-btn:hover .dropdown-icon {
  color: var(--soft-gold);
}

.language-btn.active .dropdown-icon {
  transform: rotate(180deg);
}

.current-language {
  font-weight: var(--font-medium);
  color: var(--dark-gray);
  transition: var(--transition);
}

.language-btn:hover .current-language {
  color: var(--soft-gold);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid rgba(201, 170, 113, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(1, 68, 33, 0.15);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  margin-top: 0.5rem;
  display: none;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(201, 170, 113, 0.1);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(201, 170, 113, 0.05);
}

.language-option.active {
  background: rgba(201, 170, 113, 0.1);
}

.flag {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.lang-name {
  flex: 1;
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: var(--font-medium);
}

.lang-code {
  font-size: 0.8rem;
  color: var(--soft-gold);
  font-weight: var(--font-semibold);
}

/* Desktop language switcher always visible on desktop */
.language-switcher.desktop {
  display: flex;
  align-items: center;
}

/* Mobile language switcher hidden by default */
.language-switcher.mobile {
  display: none;
}

.mobile-language-item {
  display: none;
}

@media (max-width: 845px) {
  /* Hide desktop switcher on mobile */
  .language-switcher.desktop {
    display: none;
  }
  /* Show mobile switcher in hamburger menu */
  .language-switcher.mobile {
    display: block;
    margin: 0;
    width: 100%;
  }
  .mobile-language-item {
    display: flex;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 170, 113, 0.2);
  }
  .language-switcher.mobile .language-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201, 170, 113, 0.2);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    color: var(--dark-gray);
  }
  .language-switcher.mobile .language-btn:hover {
    background: rgba(201, 170, 113, 0.05);
    border-color: var(--soft-gold);
  }
  .language-switcher.mobile .language-btn::after {
    display: none;
  }
  .language-switcher.mobile .language-dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(201, 170, 113, 0.2);
    margin-top: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    min-width: auto;
    width: 100%;
  }
  .language-switcher.mobile .language-dropdown.active {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .language-switcher.mobile .language-option {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(201, 170, 113, 0.1);
  }
  .language-switcher.mobile .language-option:last-child {
    border-bottom: none;
  }
  .language-switcher.mobile .language-option:hover {
    background: rgba(201, 170, 113, 0.05);
  }
}

/* Luxury Booking Widget Styles */
.booking-widget {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  z-index: 10;
}

.booking-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 68, 33, 0.05) 0%,
    rgba(201, 170, 113, 0.05) 100%
  );
  border-radius: 20px;
  z-index: -1;
}

.booking-widget-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-widget-header h3 {
  font-size: 1.8rem;
  font-weight: var(--font-semibold);
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
}

.booking-widget-header p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  margin: 0;
  font-weight: var(--font-light);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-field label {
  font-size: var(--font-body-md);
  font-weight: var(--font-medium);
  color: var(--deep-green);
  margin-bottom: 0.25rem;
}

.date-input-wrapper,
.select-wrapper,
.discount-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.date-icon,
.select-icon,
.discount-icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: var(--soft-gold);
  z-index: 2;
  pointer-events: none;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid rgba(1, 68, 33, 0.1);
  border-radius: 12px;
  font-size: var(--font-body-md);
  font-weight: var(--font-normal);
  color: var(--dark-gray);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--soft-gold);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 4px rgba(201, 170, 113, 0.1);
  transform: translateY(-1px);
}

.booking-field input::placeholder {
  color: var(--light-gray);
  font-weight: var(--font-light);
}

.booking-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c9aa71' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
}

.booking-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.booking-submit-btn {
  background: linear-gradient(135deg, var(--deep-green) 0%, #013318 100%);
  color: var(--white);
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(1, 68, 33, 0.3);
}

.booking-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.booking-submit-btn:hover::before {
  left: 100%;
}

.booking-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 68, 33, 0.4);
  background: linear-gradient(135deg, #013318 0%, var(--deep-green) 100%);
}

.booking-submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(1, 68, 33, 0.3);
}

.booking-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.booking-submit-btn:hover .submit-icon {
  transform: translateX(3px);
}

/* Responsive Design for Booking Widget */
@media (max-width: 768px) {
  .booking-widget {
    padding: 2rem 1.5rem;
    margin: 1.5rem 1rem 0;
    border-radius: 16px;
  }

  .booking-widget-header h3 {
    font-size: 1.5rem;
  }

  .booking-widget-header p {
    font-size: var(--font-body-md);
  }

  .booking-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-field input,
  .booking-field select {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: var(--font-body-md);
  }

  .date-icon,
  .select-icon,
  .discount-icon {
    left: 0.875rem;
    width: 16px;
    height: 16px;
  }

  .booking-submit-btn {
    padding: 1rem 2.5rem;
    font-size: var(--font-body-md);
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .booking-widget {
    padding: 1.5rem 1rem;
    margin: 1rem 0.5rem 0;
    border-radius: 12px;
  }

  .booking-widget-header h3 {
    font-size: 1.3rem;
  }

  .booking-widget-header p {
    font-size: var(--font-body-sm);
  }

  .booking-field label {
    font-size: var(--font-body-sm);
  }

  .booking-field input,
  .booking-field select {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    font-size: var(--font-body-sm);
    border-radius: 8px;
  }

  .date-icon,
  .select-icon,
  .discount-icon {
    left: 0.75rem;
    width: 14px;
    height: 14px;
  }

  .booking-submit-btn {
    padding: 0.875rem 2rem;
    font-size: var(--font-body-sm);
    border-radius: 25px;
  }

  .submit-icon {
    width: 16px;
    height: 16px;
  }
}

/* Loading state for booking form */
.booking-form.loading .booking-submit-btn {
  pointer-events: none;
}

.booking-form.loading .booking-submit-btn span {
  opacity: 0;
}

.booking-form.loading .booking-submit-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success state for booking form */
.booking-form.success .booking-submit-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.booking-form.success .booking-submit-btn span {
  content: "Booking Submitted!";
}

/* Error state for form fields */
.booking-field.error input,
.booking-field.error select {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.booking-field.error .error-message {
  color: #dc3545;
  font-size: var(--font-body-sm);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Date picker customization */
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  color: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.booking-field input[type="date"]::-webkit-datetime-edit {
  color: var(--dark-gray);
}

.booking-field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.booking-field input[type="date"]::-webkit-datetime-edit-text {
  color: var(--light-gray);
}

.booking-field input[type="date"]::-webkit-datetime-edit-month-field,
.booking-field input[type="date"]::-webkit-datetime-edit-day-field,
.booking-field input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--dark-gray);
}

/* Compact Booking Pill Styles */
.booking-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 24px 38px;
  border-radius: 84px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 999;
  position: fixed;
  transition: all 0.3s ease;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) !important;
  max-width: min(95%, 1200px);
  width: 100%;
}

.booking-pill.expanded {
  z-index: 1001;
  padding: 1rem;
}

.booking-pill-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-field {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 120px;
}

.pill-label {
  font-size: 0.75rem;
  font-weight: var(--font-medium);
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

.pill-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
  z-index: 2;
  pointer-events: none;
}

.pill-field input,
.pill-field select {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid rgba(1, 68, 33, 0.1);
  border-radius: 25px;
  font-size: var(--font-body-sm);
  font-weight: var(--font-normal);
  color: var(--dark-gray);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.pill-field input:focus,
.pill-field select:focus {
  outline: none;
  border-color: var(--soft-gold);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(201, 170, 113, 0.1);
}

.pill-field input::placeholder {
  color: var(--light-gray);
  font-weight: var(--font-light);
}

.pill-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c9aa71' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.pill-submit {
  background: linear-gradient(135deg, var(--deep-green) 0%, #013318 100%);
  color: var(--white);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 25px;
  font-size: var(--font-body-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-top: auto;
}

.pill-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #013318 0%, var(--deep-green) 100%);
}

.pill-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(1, 68, 33, 0.3);
}

.pill-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.pill-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.pill-submit:hover .pill-arrow {
  transform: translateX(2px);
}

/* Responsive Design for Booking Pill */
@media (max-width: 768px) {
  .booking-pill {
    padding: 0;
    border-radius: 48px;
    border: none;
  }

  .mobile-booking-trigger {
    display: block;
  }

  .expandable-booking-form {
    max-height: 0;
    opacity: 0;
    transform: scale(0.95);
    margin-top: 0;
  }

  .expandable-booking-form.expanded {
    max-height: 600px;
    opacity: 1;
    transform: scale(1);
    margin-top: 1rem;
  }

  .booking-pill-form {
    gap: 0.25rem;
  }

  .pill-field {
    min-width: 100px;
  }

  .pill-field input,
  .pill-field select {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    font-size: var(--font-body-md);
    border-radius: 20px;
  }

  .pill-label {
    font-size: 0.75rem;
    font-weight: var(--font-medium);
    color: var(--deep-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
  }

  .pill-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--soft-gold);
    z-index: 2;
    pointer-events: none;
  }

  .pill-submit {
    padding: 0.75rem 1.25rem;
    font-size: var(--font-body-md);
    border-radius: 20px;
    width: 100%;
    margin-top: 8px;
    text-align: center;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pill-arrow {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .booking-pill {
    margin: 0px;
    border: none;
  }

  .floating-booking-btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--font-body-sm);
  }

  .floating-icon {
    width: 18px;
    height: 18px;
  }

  .expandable-booking-form.expanded {
    margin-top: 0.75rem;
  }

  .booking-pill-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pill-field {
    min-width: 100%;
  }

  .pill-field input,
  .pill-field select {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: var(--font-body-sm);
    border-radius: 25px;
  }

  .pill-label {
    font-size: 0.75rem;
    font-weight: var(--font-medium);
    color: var(--deep-green);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
  }

  .pill-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--soft-gold);
    z-index: 2;
    pointer-events: none;
  }

  .pill-submit {
    padding: 0.875rem 2rem;
    font-size: var(--font-body-sm);
    border-radius: 25px;
    width: 100%;
    justify-content: center;
  }

  .pill-arrow {
    width: 14px;
    height: 14px;
  }
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  background: white;
}

.whatsapp-link:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.whatsapp-link:hover .whatsapp-icon {
  transform: rotate(5deg);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
}

/* Tablet and small desktop responsive adjustments */
@media (max-width: 1440px) and (min-width: 769px) {
  .whatsapp-fab {
    bottom: 160px; /* Higher positioning to avoid overlap with booking pill */
    right: 30px;
    transition: bottom 0.3s ease;
  }

  /* Additional spacing when booking form is expanded on tablet/small desktop */
  body.booking-form-expanded .whatsapp-fab {
    bottom: 200px; /* More space when booking form is expanded */
  }
}

@media (max-width: 864px) and (min-width: 768px) {
  .whatsapp-fab {
    bottom: 200px; /* Higher positioning to avoid overlap with booking pill */
    right: 30px;
    transition: bottom 0.3s ease;
  }

  /* Additional spacing when booking form is expanded on tablet/small desktop */
  body.booking-form-expanded .whatsapp-fab {
    bottom: 200px; /* More space when booking form is expanded */
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 100px; /* Increased to avoid overlap with booking pill */
    right: 20px;
    transition: bottom 0.3s ease; /* Smooth transition when booking form expands */
  }

  .whatsapp-link {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  /* Additional spacing when booking form is expanded */
  body.booking-form-expanded .whatsapp-fab {
    bottom: 180px; /* More space when booking form is expanded */
  }
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 90px; /* Increased to avoid overlap with booking pill on small screens */
    right: 15px;
    transition: bottom 0.3s ease; /* Smooth transition when booking form expands */
  }

  .whatsapp-link {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  /* Additional spacing when booking form is expanded on small screens */
  body.booking-form-expanded .whatsapp-fab {
    bottom: 160px; /* More space when booking form is expanded on small screens */
  }
}

/* CTA Button Container Styles */
.cta-button-container {
  text-align: center;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0a5a2e 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(1, 68, 33, 0.25),
    0 4px 16px rgba(201, 170, 113, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--soft-gold) 0%, #d4b87a 100%);
  transition: var(--transition);
  z-index: -1;
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(1, 68, 33, 0.35),
    0 6px 20px rgba(201, 170, 113, 0.25);
  color: var(--deep-green);
  color: var(--white);
}

.hero-cta-button:hover::before {
  left: 0;
}

.hero-cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(1, 68, 33, 0.3),
    0 3px 12px rgba(201, 170, 113, 0.2);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.hero-cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-cta-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .cta-arrow {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }

  .cta-arrow {
    width: 16px;
    height: 16px;
  }
}

/* Offers Section */
.offers-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.offers-header h2 {
  font-family: "Playfair Display", serif;
  font-size: var(--font-header-lg);
  color: var(--deep-green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.all-offers-link {
  font-family: "Inter", sans-serif;
  font-size: var(--font-body-md);
  font-weight: var(--font-semibold);
  background-color: var(--deep-green);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(1, 68, 33, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.all-offers-link:hover {
  background-color: var(--deep-green);
  color: var(--white);
  border-color: var(--deep-green);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.offer-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 1.5px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 2px 16px rgba(0, 0, 0, 0.1);
}

.offer-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: filter 0.5s ease;
}

.offer-card:hover .offer-image {
  filter: blur(3px) brightness(0.7);
}

.offer-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 120px;
  transition: background 0.3s ease;
}

.offer-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--deep-green);
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.offer-card:hover .offer-content h3 {
  opacity: 1;
}

.view-offer-link {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: var(--font-semibold);
  color: var(--soft-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: color 0.3s ease;
}

.offer-card:hover .view-offer-link {
  opacity: 1;
  transform: translateY(0);
}

.view-offer-link .arrow-icon {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.view-offer-link:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .offers-section {
    padding: 4rem 0;
  }

  .offers-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }

  .offers-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .offer-image {
    height: 300px;
  }
}

/* Contact Form 7 Newsletter - Clean Layout */
.newsletter-section .wpcf7-form {
  display: grid !important;
  grid-template-columns: 1fr min-content !important;
  grid-template-rows: auto auto !important;
  max-width: 600px;
  margin: 0 auto !important;
  gap: 1rem 1rem !important;
  align-items: start !important;
}

.newsletter-section .wpcf7-form p {
  display: contents !important;
  margin: 0 !important;
}

.newsletter-section .wpcf7-form-control-wrap {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  display: block !important;
  min-width: 300px !important;
}

.newsletter-section .wpcf7-form input[type="email"] {
  padding: 15px 20px !important;
  border: none !important;
  border-radius: 25px !important;
  font-size: 1rem !important;
  outline: none !important;
  background: #fff !important;
  color: #2c5530 !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 300px !important;
  height: auto !important;
  min-height: 48px !important;
  line-height: 1.4 !important;
  overflow: visible !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}

.newsletter-section .wpcf7-form input[type="email"]:focus {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-1px) !important;
}

.newsletter-section .wpcf7-form input[type="email"]::placeholder {
  color: rgba(44, 85, 48, 0.6) !important;
  font-style: italic !important;
}

.newsletter-section .wpcf7-form input[type="submit"] {
  grid-column: 2 !important;
  grid-row: 1 !important;
  background: #c9aa71 !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 40px !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  min-width: 220px !important;
  width: fit-content !important;
  max-width: none !important;
  height: auto !important;
  min-height: 48px !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  white-space: nowrap !important;
  text-overflow: visible !important;
  align-self: start !important;
  box-shadow: 0 4px 24px rgba(201, 170, 113, 0.18) !important;
  line-height: 1.4 !important;
  overflow: visible !important;
}

.newsletter-section .wpcf7-form input[type="submit"]:hover {
  background: #b89a5f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(201, 170, 113, 0.25) !important;
}

.newsletter-section .wpcf7-form input[type="submit"]:active {
  transform: scale(0.98) !important;
}

/* CF7 Response Messages - Hide All Global Messages */
.newsletter-section .wpcf7-response-output {
  display: none !important;
}

.newsletter-section .wpcf7-mail-sent-ok {
  display: none !important;
}

.newsletter-section .wpcf7-validation-errors {
  display: none !important;
}

/* CF7 Field Validation Errors */
.newsletter-section .wpcf7-form .wpcf7-not-valid-tip {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  color: #ff6b6b !important;
  font-size: 0.85rem !important;
  margin: 0.5rem 0 0 0 !important;
  padding: 0.5rem 1rem !important;
  background: rgba(255, 107, 107, 0.1) !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 107, 107, 0.3) !important;
  display: block !important;
  text-align: center !important;
  align-self: start !important;
}

/* CF7 Invalid Input Styling */
.newsletter-section .wpcf7-form input.wpcf7-not-valid {
  border: 2px solid #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .newsletter-section .wpcf7-form {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 1rem !important;
  }

  .newsletter-section .wpcf7-form-control-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: auto !important;
    width: 100% !important;
  }

  .newsletter-section .wpcf7-form input[type="email"] {
    min-width: auto !important;
    width: 100% !important;
    text-align: center !important;
  }

  .newsletter-section .wpcf7-form input[type="submit"] {
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    min-width: auto !important;
    padding: 15px 20px !important;
    min-height: 48px !important;
    line-height: 1.4 !important;
    font-size: 1rem !important;
  }

  .newsletter-section .wpcf7-form .wpcf7-not-valid-tip {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin: 0.5rem 0 0 0 !important;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .newsletter-section .wpcf7-form {
    max-width: 400px !important;
  }

  .newsletter-section .wpcf7-form input[type="email"] {
    min-width: 250px !important;
  }
}

/* Tablet Responsive - 1015px to 769px (Centered with proper text width) */
@media (max-width: 1015px) and (min-width: 769px) {
  .newsletter-section .wpcf7-form {
    max-width: 650px !important;
    margin: 0 auto !important;
    justify-items: center !important;
  }

  .newsletter-section .wpcf7-form-control-wrap {
    min-width: 350px !important;
  }

  .newsletter-section .wpcf7-form input[type="email"] {
    min-width: 350px !important;
    width: 100% !important;
  }

  .newsletter-section .wpcf7-form input[type="submit"] {
    min-width: 240px !important;
    width: auto !important;
    padding: 15px 50px !important;
  }
}
/* Overview & USP Section */
.overview-section {
  padding: 6rem 0;
  background: var(--white);
}

.overview-content {
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.overview-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.overview-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

/* Icon */
.overview-icon {
  width: 40px;
  height: 40px;
  color: var(--soft-gold) !important;
  margin-bottom: 1rem;
}

.overview-stat h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.overview-stat p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
  .overview-stats {
    grid-template-columns: 1fr;
  }

  .overview-content {
    padding: 0 1rem;
  }
}
/* thoughtful comforts section */
.thoughtful-comforts-section {
  padding: 6rem 0;
  background: var(--white);
}

.thoughtful-comforts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.thoughtful-comforts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thoughtful-comforts-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-body-lg);
  color: #000000;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.thoughtful-comforts-list li:hover {
  transform: translateX(5px);
}

.thoughtful-comforts-list .feature-icon {
  color: var(--soft-gold);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Discover Section */
.discover-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-title.center {
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--font-header-lg);
  color: var(--deep-green);
}

.discover-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: sstart;
  margin-bottom: 3rem;
}
.discover-list {
  padding-left: 0;
  list-style: none;
}
.discover-list li {
  margin-bottom: 0.8rem;
  font-size: 1;
  color: var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}
.discover-list li i {
  color: var(--soft-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.discover-list li a {
  color: var(--deep-green);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: var(--transition);
  word-break: break-word;
}

.discover-list li a:hover {
  color: var(--soft-gold);
  text-decoration: underline;
}

.discover-list li span {
  color: var(--light-gray);
  font-weight: var(--font-normal);
}

.cta-button.discover {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  margin-top: 1rem;
  background: #014421;
  background: linear-gradient(
    135deg,
    var(--deep-green, #014421) 0%,
    #0a2e1a 100%
  );
  color: var(--off-white);
  padding: 12px 24px;
  border-radius: px;
  font-size: 0.95rem;
  font-weight: var(--font-bold);
  text-decoration: none;
  transition: all 0.3s ease;
  transition: var(--transition, all 0.3s ease);
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--deep-green, #014421) 0%,
    #0a2e1a 100%
  );
  margin-top: 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
}

.cta-button.discover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 68, 33, 0.4);
  background: linear-gradient(135deg, var(--soft-gold) 0%, #b89a5f 100%);
  color: var(--white);
}

.cta-button.discover:active,
.cta-button.discover.active {
  background: linear-gradient(135deg, var(--soft-gold) 0%, #b89a5f 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.discover-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.discover-box {
  padding: 1.5rem 1rem;
}

.discover-box h4 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  margin: 1rem 0 0.5rem;
  color: var(--deep-green);
  padding: 1.5rem 1rem;
  margin-bottom: 0.75rem;
}

.discover-box p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.discover-icon {
  width: 32px;
  height: 32px;
  color: var(--soft-gold);
  margin: 0 auto 1rem;
}
/* Responsif untuk mobile */
@media (max-width: 1024px) {
  .discover-section {
    padding: 5rem 0;
  }
  
  .discover-content {
    gap: 2.5rem;
  }
  
  .discover-list li {
    font-size: 0.95rem;
  }
  
  .discover-bottom {
    gap: 1.5rem;
  }
  
  .discover-box {
    padding: 1.25rem 0.75rem;
  }
}

/* ===== MOBILE RESPONSIVE (< 768px) ===== */
@media (max-width: 768px) {
  .discover-section {
    padding: 4rem 0;
  }
  
  /* Stack content vertically */
  .discover-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Map takes full width */
  .discover-map {
    order: -1; /* Move map to top */
  }
  
  .discover-map iframe {
    height: 350px;
    border-radius: 12px;
  }
  
  /* Text content */
  .discover-text {
    padding: 0 1rem;
  }
  
  .discover-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* List styling for mobile */
  .discover-list {
    padding-left: 0;
  }
  
  .discover-list li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .discover-list li i {
    width: 16px;
    height: 16px;
    margin-top: 0.25rem;
  }
  
  .discover-list li a {
    flex: 1;
    word-break: break-word;
  }
  
  /* CTA Button - Full width on mobile */
  .cta-button.discover {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
    justify-content: center;
    margin-left: 0;
    margin-top: 1.5rem;
  }
  
  /* Bottom info boxes - Stack vertically */
  .discover-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
  }
  
  .discover-box {
    padding: 1.5rem 1rem;
    background: rgba(201, 170, 113, 0.05);
    border-radius: 12px;
  }
  
  .discover-icon {
    width: 28px;
    height: 28px;
  }
  
  .discover-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .discover-box p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media (max-width: 480px) {
  .discover-section {
    padding: 3rem 0;
  }
  
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .section-title.center {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .discover-map iframe {
    height: 280px;
  }
  
  .discover-text h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .discover-list li {
    font-size: 0.85rem;
    margin-bottom: 0.875rem;
    padding: 0.375rem 0;
    gap: 0.5rem;
  }
  
  .discover-list li i {
    width: 14px;
    height: 14px;
  }
  
  .cta-button.discover {
    padding: 12px 18px;
    font-size: 0.85rem;
    gap: 0.375rem;
  }
  
  .discover-bottom {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .discover-box {
    padding: 1.25rem 0.875rem;
  }
  
  .discover-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.75rem;
  }
  
  .discover-box h4 {
    font-size: 1rem;
  }
  
  .discover-box p {
    font-size: 0.85rem;
  }
}

/* ===== EXTRA IMPROVEMENTS ===== */

/* Prevent text overflow */
.discover-list li a,
.discover-box p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* Smooth transitions */
.discover-list li,
.cta-button.discover,
.discover-box {
  transition: all 0.3s ease;
}

/* Hover effects remain on desktop only */
@media (min-width: 769px) {
  .discover-list li:hover {
    transform: translateX(5px);
  }
  
  .discover-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 170, 113, 0.15);
  }
}

/* Ensure proper spacing */
.discover-text h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.discover-text h3 i {
  color: var(--soft-gold);
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .discover-text h3 i {
    width: 20px;
    height: 20px;
  }
}

/* ===== THOUGHTFUL COMFORTS SECTION ===== */
.thoughtful-comforts-section {
  padding: 6rem 0;
  background-color: var(--off-white);
}

.thoughtful-comforts-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.thoughtful-comforts-section .section-header h2 {
  font-size: var(--font-header-lg);
  color: var(--deep-green);
  margin-bottom: 16px;
  font-weight: var(--font-semibold);
}

.thoughtful-comforts-section .section-header p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

/* Amenities Tabs */
.amenities-tabs {
  margin-bottom: 40px;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--white);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--light-gray);
  font-size: var(--font-body-md);
  font-weight: var(--font-medium);
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--deep-green);
  background-color: rgba(1, 68, 33, 0.05);
}

.tab-btn.active {
  background-color: var(--deep-green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(1, 68, 33, 0.2);
}

/* Amenities Content */
.amenities-content {
  min-height: 300px;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

/* Thoughtful Comforts Grid */
.thoughtful-comforts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.amenity-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  width: 24px;
  height: 24px;
  color: var(--soft-gold);
  flex-shrink: 0;
}

.amenity-item span {
  font-size: var(--font-body-md);
  color: var(--dark-gray);
  font-weight: var(--font-medium);
  line-height: var(--line-height-normal);
}

/* Responsive Design for Thoughtful Comforts */
@media (max-width: 768px) {
  .thoughtful-comforts-section {
    padding: 60px 0;
  }

  .tabs-wrapper {
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    border-radius: 16px;
  }

  .tab-btn {
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
  }

  .thoughtful-comforts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .amenity-item {
    padding: 16px;
  }

  .thoughtful-comforts-section .section-header h2 {
    font-size: var(--font-header-md);
  }
}

@media (max-width: 480px) {
  .thoughtful-comforts-section {
    padding: 40px 0;
  }

  .thoughtful-comforts-section .section-header {
    margin-bottom: 40px;
  }

  .tab-btn {
    padding: 14px 16px;
    font-size: var(--font-body-sm);
  }

  .amenity-item {
    gap: 12px;
    padding: 14px;
  }

  .amenity-item span {
    font-size: var(--font-body-sm);
  }
}

/* ===== ROOMS DISPLAY SECTION ===== */
.rooms-display-section {
  padding: 80px 0;
  background-color: var(--white);
}

.rooms-display-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.rooms-display-section .section-header h2 {
  font-size: var(--font-header-lg);
  color: var(--deep-green);
  margin-bottom: 16px;
  font-weight: var(--font-semibold);
}

/* Room Cards Hover Effects */
.hero-card {
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-card .room-image-full {
  transition: var(--transition);
}

.hero-card:hover .room-image-full {
  transform: scale(1.02);
}

.hero-card .room-content-section {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-card .room-content-section h3 {
  margin-bottom: 12px;
  color: var(--deep-green);
}

.hero-card .room-content-section .room-description {
  margin-bottom: 20px;
  color: var(--light-gray);
  line-height: var(--line-height-relaxed);
}

.hero-card .room-features {
  margin-bottom: 24px;
}

.hero-card .book-button {
  transition: var(--transition);
  background: var(--deep-green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: var(--font-semibold);
  border: 2px solid var(--deep-green);
}

.hero-card .book-button:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 170, 113, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rooms-display-section {
    padding: 60px 0;
  }

  .hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 480px) {
  .rooms-display-section {
    padding: 40px 0;
  }

  .hero-card .room-content-section {
    padding: 20px;
  }
}

/* ===== RESTAURANT SHOWCASE SECTION ===== */
.restaurant-showcase-section {
  padding: 100px 0;
  background: var(--white);
}

.restaurant-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

/* Left Column - Text Content */
.restaurant-text-content {
  padding-right: 40px;
}

.restaurant-name {
  font-size: 3.5rem;
  font-weight: var(--font-bold);
  color: var(--deep-green);
  margin-bottom: 32px;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.restaurant-description-1,
.restaurant-description-2 {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  line-height: var(--line-height-loose);
  margin-bottom: 24px;
}

.restaurant-description-1 {
  font-weight: var(--font-medium);
}

.restaurant-cta-button {
  display: table;
  margin: 20px auto 0;
  gap: 12px;
  background: var(--deep-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  transition: var(--transition);
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(1, 68, 33, 0.2);
}

.restaurant-cta-button:hover {
  background: var(--soft-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 170, 113, 0.3);
}

.restaurant-cta-button .cta-arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.restaurant-cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Right Column - Image Content */
.restaurant-image-content {
  position: relative;
}

.restaurant-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.restaurant-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.restaurant-showcase-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.restaurant-image-container:hover .restaurant-showcase-image {
  transform: scale(1.05);
}

/* Floating Gallery Button */
.restaurant-gallery-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: var(--font-body-sm);
  font-weight: var(--font-medium);
  color: var(--deep-green);
}

.restaurant-gallery-btn:hover {
  background: var(--deep-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(1, 68, 33, 0.2);
}

.restaurant-gallery-btn .gallery-icon {
  width: 16px;
  height: 16px;
}

.restaurant-gallery-btn .gallery-text {
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .restaurant-showcase-content {
    gap: 60px;
  }

  .restaurant-text-content {
    padding-right: 20px;
  }

  .restaurant-name {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .restaurant-showcase-section {
    padding: 80px 0;
  }

  .restaurant-showcase-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .restaurant-text-content {
    padding-right: 0;
    text-align: center;
  }

  .restaurant-name {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }

  .restaurant-showcase-image {
    height: 400px;
  }

  .restaurant-image-content {
    order: -1; 
  }

  .restaurant-gallery-btn {
    top: 20px;
    right: 20px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .restaurant-showcase-section {
    padding: 60px 0;
  }

  .restaurant-showcase-content {
    gap: 40px;
  }

  .restaurant-name {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .restaurant-description-1,
  .restaurant-description-2 {
    font-size: var(--font-body-md);
    margin-bottom: 20px;
  }

  .restaurant-cta-button {
    padding: 14px 28px;
    font-size: var(--font-body-md);
  }

  .restaurant-showcase-image {
    height: 300px;
  }

  .restaurant-image-container {
    border-radius: 16px;
  }

  .restaurant-gallery-btn {
    top: 16px;
    right: 16px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .restaurant-gallery-btn .gallery-icon {
    width: 14px;
    height: 14px;
  }
}

/* Book Button Navbar */
.book-now-bttn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--deep-green);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 0.85rem;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(1, 68, 33, 0.2);
  border: 2px solid var(--deep-green);
  white-space: nowrap;
  margin-left: 0.5rem;
}

.book-now-bttn:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 170, 113, 0.3);
}

.book-now-bttn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(1, 68, 33, 0.3);
}

.desktop-book-now-item {
  display: flex;
  align-items: center;
}

.desktop-book-now-item .book-now-bttn {
  margin-left: 0;
}

.desktop-book-now-item .book-now-bttn::after {
  display: none;
}

@media (max-width: 845px) {
  .desktop-book-now-item {
    display: none;
  }

  .nav-menu .mobile-book-now {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }

  .nav-menu .mobile-book-now .book-now-bttn {
    display: inline-flex;
    margin-left: 0;
    width: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .nav-menu .mobile-book-now {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-menu .mobile-book-now .book-now-bttn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}