/* ===== CSS Variables ===== */
:root {
  --primary-color: #1a4a3a;
  --primary-dark: #0f2f25;
  --primary-light: #2c6b54;
  --secondary-color: #c9a227;
  --secondary-light: #e6c04a;
  --accent-gold: #b8860b;
  --text-dark: #1a1a1a;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;
  --text-white: #ffffff;
  --bg-light: #faf9f7;
  --bg-cream: #f5f3ef;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --max-width: 1200px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.9rem;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(26, 74, 58, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 74, 58, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  border-color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.header.scrolled .logo-text {
  color: var(--text-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-white);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-white);
}

.header.scrolled .nav-phone {
  color: var(--primary-color);
}

.nav-social {
  display: flex;
  gap: 12px;
}

.nav-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transition: var(--transition);
}

.header.scrolled .nav-social a {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.nav-social a:hover {
  background-color: var(--secondary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
  background-color: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  text-align: center;
  color: var(--text-white);
  padding: 0 24px;
  max-width: 800px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-backgrounds {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.slider-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-bg.active {
  opacity: 1;
}

.slider-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.5) 100%);
}

.hero-slider .hero-content {
  text-align: center;
  color: var(--text-white);
  padding: 0 40px;
  max-width: 1400px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-slider .hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.9), rgba(184, 134, 11, 0.9));
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-gold);
}

.slider-texts {
  position: relative;
  width: 100%;
  min-height: 150px;
}

.slider-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}

.slider-text.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.slider-text h1 {
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.slider-text .hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  max-width: 900px;
  line-height: 1.6;
}

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

.slider-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* ===== Features Section ===== */
.features {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.features-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--bg-white);
  padding: 48px 36px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--primary-color);
  border: 1px solid rgba(201, 162, 39, 0.1);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-white);
  border-color: transparent;
  transform: scale(1.05);
}

.feature-card h4 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== About Section ===== */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-white);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ===== Rooms Section ===== */
.rooms {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.room-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.room-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.room-card:hover .room-image::after {
  opacity: 1;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-gold);
}

.room-content {
  padding: 28px;
}

.room-content h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.room-content p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.room-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--bg-light);
}

.room-capacity {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== Activities Section ===== */
.activities {
  padding: 100px 0;
  background-color: var(--bg-cream);
}

/* ===== Gallery Section ===== */
.gallery {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

/* ===== CTA Section ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-white);
  text-align: center;
}

.cta h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info>p {
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border-radius: 50%;
  color: var(--primary-color);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 78, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== Map Section ===== */
.map {
  height: 400px;
  width: 100%;
}

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

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0a1f18 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-top {
  padding: 80px 0 60px;
  position: relative;
}

.footer-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.footer-brand>p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
  border-color: transparent;
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.footer h4 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact p svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary-color);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

/* ===== Page Header ===== */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-align: center;
  color: var(--text-white);
}

.page-header h1 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--text-white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Room Detail Page ===== */
.room-detail {
  padding: 100px 0;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.room-gallery {
  display: grid;
  gap: 16px;
}

.room-gallery-main {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.room-gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.room-gallery-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.room-gallery-thumbs img:hover,
.room-gallery-thumbs img.active {
  opacity: 1;
}

.room-info h2 {
  margin-bottom: 16px;
}

.room-info>p {
  margin-bottom: 24px;
}

.room-amenities {
  margin-bottom: 30px;
}

.room-amenities h4 {
  margin-bottom: 16px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.amenity svg {
  color: var(--primary-color);
}

.room-booking {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
}

.room-booking h4 {
  margin-bottom: 20px;
}

/* ===== Gallery Page ===== */
.gallery-page {
  padding: 100px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--bg-light);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--text-white);
}

.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  aspect-ratio: auto;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--border-radius);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===== Room Modal ===== */
.room-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.room-modal.active {
  display: flex;
}

.room-modal-content {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.room-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.room-modal-gallery {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.room-modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.room-modal-gallery-nav:hover {
  background: var(--text-white);
  transform: translateY(-50%) scale(1.1);
}

.room-modal-gallery-prev {
  left: 16px;
}

.room-modal-gallery-next {
  right: 16px;
}

.room-modal-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.room-modal-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.room-modal-gallery-dot.active {
  background: var(--text-white);
  transform: scale(1.2);
}

.room-modal-body {
  padding: 32px;
}

.room-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.room-modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.room-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.room-modal-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.room-modal-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.room-modal-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

.room-modal-feature svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.room-modal-feature span {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.room-modal-amenities {
  margin-bottom: 32px;
}

.room-modal-amenities h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.room-modal-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.room-modal-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-cream);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.room-modal-amenity svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.room-modal-footer {
  display: flex;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-light);
}

.room-modal-footer .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .room-modal {
    padding: 10px;
  }

  .room-modal-gallery {
    height: 280px;
  }

  .room-modal-body {
    padding: 24px 20px;
  }

  .room-modal-title {
    font-size: 1.5rem;
  }

  .room-modal-features {
    grid-template-columns: 1fr;
  }

  .room-modal-footer {
    flex-direction: column;
  }
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid,
  .contact-grid,
  .room-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-secondary {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-masonry {
    columns: 3;
  }

  .features-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 12px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: rgba(255, 255, 255, 1);
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .features-grid,
  .features-grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    color: var(--text-dark);
    font-size: 1.2rem;
  }

  .nav-contact {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1003;
    position: fixed;
    right: 20px;
    top: 16px;
  }

  .mobile-menu-btn.active span {
    background-color: var(--text-dark);
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .slider-texts {
    min-height: 200px;
  }

  .slider-text h1 {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    margin-bottom: 12px;
  }

  .slider-text .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-slider .hero-content {
    gap: 16px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-masonry {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-masonry {
    columns: 1;
  }

  .contact-form {
    padding: 24px;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Header Social Icons */
@media (max-width: 768px) {
  .nav-contact {
    display: flex !important;
    position: fixed;
    top: 14px;
    right: 80px;
    z-index: 1001;
    gap: 8px;
  }

  .nav-contact .nav-phone {
    display: none;
  }

  .nav-contact .nav-social {
    display: flex;
    gap: 8px;
  }

  .nav-contact .nav-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
  }

  .nav-contact .nav-social a svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Booking Widget ===== */
rc-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 997;
}