/* 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;
}

.nav-logo {
  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;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.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);
}

/* Hero Section - Fixed and Visible */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #012a1a 0%, #014421 40%, #0a1a16 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 30, 20, 0.6); /* Slightly deeper overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  opacity: 1;
  transform: translateY(0);
}

.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-block;
  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: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0.8rem;
}

.room-features {
  margin-bottom: 1rem;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.room-features span {
  background: var(--off-white);
  color: var(--deep-green);
  padding: 0.5rem 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: auto;
  align-self: flex-start;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(1, 68, 33, 0.08);
}

.book-button:hover {
  background: #013a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(1, 68, 33, 0.12);
}

/* 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: 3rem 2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-slide:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-caption h3 {
  color: var(--white);
  font-size: var(--font-header-md);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-body-lg);
  font-weight: var(--font-light);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* 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;
}

/* 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: 768px) {
  .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 */
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: calc(100vh - 80px); /* Full height minus navbar height */
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 0 0;
    overflow-y: auto; /* Allow scrolling if content is too long */
    z-index: 9999; /* Ensure it's above other content */
    justify-content: flex-start;
    align-items: start;
    padding: 0 2rem;
    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: 1rem 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);
  }

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

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .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,
  .testimonial-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,
  .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;
}

/* 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,
.testimonials-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: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

.testimonial-content p {
  font-style: italic;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  color: var(--deep-green);
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: var(--soft-gold);
  font-size: 0.9rem;
}

.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);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

.rooms-grid,
.activities-grid,
.testimonials-grid,
.wellness-grid {
  overflow: visible;
}

/* 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;
  }
}

/* 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;
}

.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: 1rem;
}

.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: 768px) {
  /* 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: relative;
  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);
  margin-right: auto;
  position: relative;
  z-index: 10;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) !important;
  max-width: min(95%, 1200px);
  width: 100%;
}

.booking-pill.expanded {
  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);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-link {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-link {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* 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;
  }
}
