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

:root {
  --primary: #1a3332;
  --secondary: #2c5f5d;
  --tertiary: #4a8b8d;
  --accent: #d4af5a;
  --gold: #c9a24d;
  --gold-light: #e8c574;
  --gold-dark: #b8923f;
  --light: #fafbfb;
  --cream: #f8f6f0;
  --dark: #0f1f1e;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --shadow-light: 0 8px 32px rgba(26, 51, 50, 0.08);
  --shadow-medium: 0 16px 48px rgba(26, 51, 50, 0.12);
  --shadow-heavy: 0 24px 64px rgba(26, 51, 50, 0.16);
  --shadow-luxury: 0 32px 80px rgba(26, 51, 50, 0.2);
  --gradient-primary: linear-gradient(135deg, #1a3332 0%, #2c5f5d 100%);
  --gradient-gold: linear-gradient(135deg, #d4af5a 0%, #c9a24d 50%, #b8923f 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(26, 51, 50, 0.9) 0%, rgba(44, 95, 93, 0.8) 100%);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --border-radius-large: 24px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  padding-top: 90px;
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--light) 0%, var(--cream) 100%);
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.3px;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.text-main {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.text-main::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

[data-aos] {
  opacity: 0;
  transition: var(--transition);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"].aos-animate {
  animation: fadeInUp 0.8s ease forwards;
}

[data-aos="fade-left"].aos-animate {
  animation: slideInLeft 0.8s ease forwards;
}

[data-aos="fade-right"].aos-animate {
  animation: slideInRight 0.8s ease forwards;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
  background: rgba(26, 51, 50, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 90, 0.2);
}

.header.scrolled {
  background: rgba(15, 31, 30, 0.98);
  box-shadow: var(--shadow-luxury);
  border-bottom: 1px solid rgba(212, 175, 90, 0.3);
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
}

.logo-main {
  font-family: "Dancing Script", cursive;
  font-size: 52px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: -4px;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* BOOK STAY BUTTON */
.book-stay-btn {
  background: var(--gradient-gold);
  color: var(--white);
  border: 2px solid transparent;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(212, 175, 90, 0.3);
}

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

.book-stay-btn:hover::before {
  left: 100%;
}

.book-stay-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 175, 90, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.nav a {
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  text-decoration: none;
  padding: 8px 0;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

/* HERO SLIDER */
.hero {
  height: 100vh;
  min-height: 700px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}

.slider img.active {
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 51, 50, 0.4) 0%, rgba(44, 95, 93, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.2s ease 0.5s both;
  letter-spacing: -1px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease 0.8s both;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-button {
  background: var(--gradient-gold);
  color: var(--white);
  border: 2px solid transparent;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 32px rgba(212, 175, 90, 0.4);
  animation: fadeInUp 1.2s ease 1.1s both;
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212, 175, 90, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

/* SLIDER CONTROLS */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* SLIDER DOTS */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 15px;
}

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

.dot.active,
.dot:hover {
  background: var(--gold);
  transform: scale(1.2);
}

/* ABOUT */
.about {
  padding: 60px 0;
  position: relative;
}

.about-content {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  padding: 0 20px;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--gradient-gold);
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold-light);
  border-radius: var(--border-radius-large);
  z-index: -1;
  opacity: 0.6;
}

.about img:hover {
  transform: scale(1.03) rotate(0.5deg);
  box-shadow: 0 32px 80px rgba(26, 51, 50, 0.25);
}

/* SERVICES - FULL WIDTH REDESIGN */
.services {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.services-header {
  margin-bottom: 70px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.services-header h2 {
  margin-bottom: 20px;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  padding: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 51, 50, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.service-row:hover::before {
  opacity: 1;
}

.service-row.image-right {
  direction: rtl;
}

.service-row.image-right > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 51, 50, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.service-row:hover .service-image::after {
  opacity: 1;
}

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

.service-row:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 100px;
  position: relative;
  z-index: 2;
  text-align: left;
  background: var(--white);
}

.service-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.service-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  font-weight: 400;
}

.service-btn {
  background: var(--gradient-gold);
  color: var(--white);
  border: 2px solid transparent;
  padding: 16px 42px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  box-shadow: 0 4px 20px rgba(212, 175, 90, 0.2);
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

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

.service-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 175, 90, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  text-align: left;
  border: 2px solid var(--secondary);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--accent);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 25px 20px;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.card-features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  padding-left: 18px;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.card-btn {
  background: linear-gradient(45deg, var(--accent), var(--secondary));
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  width: 100%;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent);
}

/* GALLERY */
.gallery {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%);
  text-align: center;
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.gallery h2 {
  margin-bottom: 40px;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 90, 0.1);
  opacity: 1;
  transform: scale(1);
  display: block;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.1;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

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

.gallery-item:hover img {
  transform: scale(1.15) rotate(1deg);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(212, 175, 90, 0.3);
}

.gallery-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(212, 175, 90, 0.3);
}

.gallery-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 175, 90, 0.5);
}

/* LIGHTBOX */
.lightbox {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.9) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
}

.lightbox.active {
  display: flex !important;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* EVENTS */
.events {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  text-align: center;
  position: relative;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

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

.events-header h2 {
  margin-bottom: 15px;
}

.events-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 90, 0.2);
  transition: var(--transition);
  text-align: left;
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(212, 175, 90, 0.4);
}

.event-image {
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-content {
  padding: 25px;
}

.event-content h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.event-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.event-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-date,
.event-time {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.event-pricing {
  text-align: right;
}

.event-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.price-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-btn {
  background: linear-gradient(45deg, var(--accent), var(--secondary));
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  width: 100%;
}

.event-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(45deg, var(--secondary), var(--accent));
}

/* CONTACT */
.contact {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.3;
}

.contact h2 {
  text-align: center;
  margin-bottom: 60px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: auto;
}

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

.contact-form input,
.contact-form textarea {
  padding: 18px 20px;
  border: 2px solid rgba(212, 175, 90, 0.2);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 90, 0.15);
  background: var(--white);
  transform: translateY(-2px);
}

.submit-btn {
  background: var(--gradient-gold);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  z-index: 100;
  pointer-events: auto;
}

.submit-btn::before {
  display: none;
}

.submit-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 175, 90, 0.5);
  background: linear-gradient(135deg, #c9a24d, #b8923f);
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #ddd;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

.footer-section:first-child {
  max-width: 350px;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-section p {
  line-height: 1.8;
  color: #bbb;
  font-size: 15px;
}

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

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

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
  display: inline-block;
  padding: 5px 0;
}

.footer-section ul li a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* SECTION DIVIDERS */
.section-divider {
  display: none;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 20%, var(--gold) 50%, var(--gold-light) 80%, transparent 100%);
  z-index: 1;
}

.section-divider .divider-icon {
  background: var(--white);
  padding: 0 30px;
  font-size: 2rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  display: inline-block;
}

/* ENHANCED ANIMATIONS */
@keyframes luxuryFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.shimmer-effect {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
}

/* FLOATING ELEMENTS */
.floating-element {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.floating-element.gold-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.floating-element.gold-square {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--gold-light), transparent);
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* PREMIUM CARD EFFECTS */
.premium-card {
  position: relative;
  overflow: hidden;
}

.premium-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  animation: rotate 4s linear infinite;
  transition: opacity 0.3s;
}

.premium-card:hover::after {
  opacity: 0.1;
}

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

/* LUXURY TEXT EFFECTS */
.luxury-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.luxury-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

/* ENHANCED HOVER EFFECTS */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.15));
}

.hover-glow {
  transition: var(--transition);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(212, 175, 90, 0.3), var(--shadow-luxury);
}

/* SECTION BACKGROUNDS */
.section-bg-pattern {
  position: relative;
  overflow: hidden;
}

.section-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 90, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(26, 51, 50, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-pattern > * {
  position: relative;
  z-index: 1;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #c9a24d 0%, #b8923f 100%);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(255, 255, 255, 0.3);
}

/* FOOTER ENHANCEMENTS */
.footer {
  background: var(--gradient-primary);
  color: #ddd;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 90, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.social-links a:hover {
  background: var(--gradient-gold);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(212, 175, 90, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 90, 0.2);
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #d4af5a;
  transform: translateY(-3px);
}


/* MOBILE RESPONSIVENESS */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .header {
    padding: 15px 30px;
  }
  
  .about-content {
    gap: 50px;
  }
  
  .service-row {
    gap: 40px;
  }
  
  .service-content {
    padding: 40px 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1002;
    padding: 12px;
  }
  
  .hamburger-line {
    width: 28px;
    height: 3px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(36, 51, 49, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
    transform: none;
    left: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1.8rem;
    padding: 20px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .book-stay-btn {
    margin-top: 20px;
    padding: 16px 32px;
    font-size: 16px;
    z-index: 1002;
    min-height: 48px;
  }

  .header {
    padding: 15px 20px;
  }

  .logo-main {
    font-size: 38px;
  }
  
  .logo-sub {
    font-size: 12px;
  }

  .hero {
    height: 75vh;
    min-height: 550px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 2.5rem;
  }
  
  .cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
    min-height: 48px;
  }

  .slider-controls {
    padding: 0 20px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .slider-dots {
    bottom: 40px;
  }
  
  .dot {
    width: 14px;
    height: 14px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about {
    padding: 80px 0;
  }

  .about-stats {
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .stat {
    min-width: 120px;
  }

  .service-cards {
    gap: 0;
  }

  .service-row {
    grid-template-columns: 1fr !important;
    min-height: auto;
    direction: ltr !important;
  }

  .service-row.image-right {
    direction: ltr !important;
  }

  .service-image {
    min-height: 350px;
    order: 1;
  }

  .service-content {
    padding: 50px 30px;
    order: 2;
  }

  .service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .service-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .service-btn {
    padding: 16px 40px;
    font-size: 0.95rem;
    min-height: 48px;
    width: 100%;
    text-align: center;
  }

  .gallery-filter {
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .gallery-btn {
    padding: 14px 28px;
    font-size: 14px;
    min-height: 44px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 16px 20px;
    font-size: 16px;
    min-height: 48px;
  }
  
  .submit-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    min-height: 48px;
  }

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

  .text-main {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .lightbox-nav {
    padding: 0 15px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .event-btn {
    padding: 14px 28px;
    font-size: 14px;
    min-height: 44px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  body {
    padding-top: 80px;
  }
  
  .header {
    padding: 12px 15px;
  }
  
  .logo-main {
    font-size: 32px;
  }
  
  .logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
  }
  
  .book-stay-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 5vw, 1.2rem);
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  .slider-controls {
    padding: 0 10px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .slider-dots {
    bottom: 20px;
  }

  .about {
    padding: 60px 0;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .about-stats {
    gap: 25px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }

  .services,
  .gallery,
  .contact,
  .events {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }
  
  .services {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .service-cards {
    gap: 0;
  }

  .service-image {
    min-height: 300px;
  }
  
  .service-content {
    padding: 40px 20px;
  }
  
  .service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 18px;
  }

  .service-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .service-btn {
    padding: 14px 32px;
    font-size: 0.85rem;
  }
  
  .gallery-filter {
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .contact-content {
    gap: 30px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .text-main {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .facility-item {
    font-size: 14px;
    padding: 10px 0;
  }
  
  .facility-item i {
    font-size: 16px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 6vw, 1.1rem);
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .text-main {
    font-size: clamp(1.5rem, 10vw, 2rem);
  }
}



/* Header */
.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 500;
  color: #1f2d2b;
}

.modal-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #999;
}

/* Body */
.modal-body {
  padding: 30px 32px 35px;
  font-size: 14px;
  color: #444;
}

/* Sections */
.form-section {
  margin-bottom: 28px;
}

.form-section h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #1f2d2b;
  border-left: 3px solid #b89b45;
  padding-left: 10px;
}

/* Form rows */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b89b45;
}



/* Actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
}

.btn-secondary {
  background: #eee;
  color: #555;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}

.btn-primary {
  background: #b89b45;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #a3873c;
}



/* LOCATION MAP */
.location-map {
  margin-top: 60px;
  text-align: center;
}

.location-map h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  max-width: 100%;
}

.map-container:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }

  .location-map {
    margin-top: 40px;
  }

  .location-map h3 {
    font-size: 1.5rem;
  }
}

/* FACILITIES SECTION */
.facilities {
  padding: 60px 0;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.facilities-header {
  margin-bottom: 40px;
}

.facilities-header h2 {
  margin-bottom: 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.facility-item i {
  font-size: 18px;
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.facility-item span {
  line-height: 1.4;
}

@media (max-width: 768px) {
  .facilities {
    padding: 50px 0;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 30px;
  }
  
  .facility-item {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* MOBILE-SPECIFIC FIXES */
@media (max-width: 768px) {
  /* Fix iOS Safari viewport issues */
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Fix sticky header on mobile */
  .header {
    position: fixed;
    width: 100vw;
    left: 0;
    right: 0;
  }
  
  /* Improve mobile menu overlay */
  .nav.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Fix mobile form zoom issues */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    -webkit-appearance: none;
    border-radius: 8px;
  }
  
  /* Better mobile button styling */
  button {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  /* Fix mobile image loading */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Improve mobile scrolling */
  * {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix mobile modal positioning */
  .booking-modal,
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}

/* BOOKING MODAL */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal-content {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease;
}

.booking-modal-header {
  background: var(--gradient-primary);
  color: white;
  padding: 25px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-modal-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.booking-modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.booking-form {
  padding: 30px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  padding-left: 15px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 90, 0.1);
}

.booking-form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #f1f3f5;
}

.booking-form-actions .btn-secondary {
  background: #6c757d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form-actions .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.booking-form-actions .btn-primary {
  background: var(--gradient-gold);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form-actions .btn-primary:hover {
  background: linear-gradient(135deg, #c9a24d, #b8923f);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 90, 0.3);
}

.booking-form-actions .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .booking-modal {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .booking-modal-content {
    max-height: 95vh;
    width: 100%;
    margin: 0;
  }
  
  .booking-modal-header {
    padding: 20px;
  }
  
  .booking-modal-header h2 {
    font-size: 18px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .booking-form {
    padding: 20px;
  }
  
  .form-section h3 {
    font-size: 16px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
  }
  
  .booking-form-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .booking-form-actions .btn-secondary,
  .booking-form-actions .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .booking-modal {
    padding: 5px;
  }
  
  .booking-modal-content {
    border-radius: 15px;
  }
  
  .booking-modal-header {
    padding: 15px;
    border-radius: 15px 15px 0 0;
  }
  
  .booking-form {
    padding: 15px;
  }
  
  .form-section {
    margin-bottom: 25px;
  }
}
/* ENHANCED MOBILE TOUCH INTERACTIONS */
@media (max-width: 768px) {
  /* Ensure all interactive elements meet minimum touch target size */
  button, 
  .btn, 
  .filter-btn, 
  .gallery-btn, 
  .service-btn, 
  .event-btn, 
  .card-btn, 
  .submit-btn, 
  .cta-button, 
  .book-stay-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
  }
  
  /* Improve form input touch targets */
  input, 
  select, 
  textarea {
    min-height: 48px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Better spacing for touch */
  .nav a {
    padding: 20px 30px;
    margin: 5px 0;
  }
  
  /* Improve gallery item touch area */
  .gallery-item {
    min-height: 200px;
  }
  
  /* Better slider controls */
  .slider-btn {
    min-width: 48px;
    min-height: 48px;
  }
  
  .dot {
    min-width: 16px;
    min-height: 16px;
    margin: 0 8px;
  }
}

/* MOBILE PERFORMANCE OPTIMIZATIONS */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .hover-lift:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .premium-card::after {
    display: none; /* Disable heavy animations on mobile */
  }
  
  /* Optimize images for mobile */
  img {
    image-rendering: optimizeQuality;
  }
  
  /* Reduce blur effects on mobile */
  .header {
    backdrop-filter: blur(10px);
  }
  
  .nav {
    backdrop-filter: blur(8px);
  }
}

/* MOBILE ACCESSIBILITY IMPROVEMENTS */
@media (max-width: 768px) {
  /* Better focus indicators for mobile */
  button:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }
  
  /* Improve text readability */
  body {
    line-height: 1.6;
  }
  
  p {
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Better contrast for mobile */
  .nav a {
    color: rgba(255, 255, 255, 0.95);
  }
  
  .nav a:hover,
  .nav a:focus {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }
}
.toast {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border-left: 4px solid #28a745;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast.toast-success {
  border-left-color: #28a745;
}

.toast.toast-error {
  border-left-color: #dc3545;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.toast-icon {
  font-size: 18px;
}

.toast-success .toast-icon {
  color: #28a745;
}

.toast-error .toast-icon {
  color: #dc3545;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: #f8f9fa;
  color: #495057;
}

@media (max-width: 768px) {
  .toast {
    min-width: 280px;
    left: 20px;
    right: 20px;
    transform: translateY(-100px);
  }
  
  .toast.show {
    transform: translateY(0);
  }
}


/* ROOMS & VILLAS SECTION */
.rooms-villas {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
}

.rooms-header {
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.rooms-header h2 {
  margin-bottom: 20px;
}

.rooms-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.room-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 90, 0.1);
  transition: var(--transition);
  text-align: left;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(212, 175, 90, 0.3);
}

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

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

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

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 90, 0.4);
}

.room-badge.luxury {
  background: linear-gradient(135deg, #1a3332 0%, #2c5f5d 100%);
  color: var(--gold);
}

.room-content {
  padding: 35px;
}

.room-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.room-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--border-radius);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
}

.room-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 90, 0.2);
}

.room-count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.room-capacity {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.rooms-cta {
  text-align: center;
  margin-top: 50px;
}

.rooms-cta .cta-button {
  background: var(--gradient-gold);
  color: var(--white);
  border: 2px solid transparent;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 32px rgba(212, 175, 90, 0.4);
}

.rooms-cta .cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212, 175, 90, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
  .rooms-villas {
    padding: 60px 0;
  }

  .rooms-header {
    margin-bottom: 50px;
  }

  .rooms-grid {
    gap: 30px;
  }

  .room-image {
    height: 280px;
  }

  .room-content {
    padding: 30px 25px;
  }

  .room-content h3 {
    font-size: 1.75rem;
  }

  .room-features {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }

  .rooms-cta .cta-button {
    padding: 16px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .rooms-grid {
    gap: 25px;
  }

  .room-image {
    height: 250px;
  }

  .room-content {
    padding: 25px 20px;
  }

  .room-content h3 {
    font-size: 1.5rem;
  }

  .room-content p {
    font-size: 15px;
  }

  .room-stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* BOOKING INFO POPUP */
.booking-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

.booking-popup[style*="flex"] {
  display: flex;
}

.booking-popup-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(212, 175, 90, 0.2);
  margin: auto;
}

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

.booking-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.booking-popup-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 24px rgba(212, 175, 90, 0.4);
}

.booking-popup-icon i {
  font-size: 36px;
  color: var(--white);
}

.booking-popup-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.booking-popup-content > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
}

.booking-contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.booking-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.call-btn {
  background: linear-gradient(135deg, #1a3332 0%, #2c5f5d 100%);
  color: var(--white);
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 51, 50, 0.3);
  border-color: rgba(212, 175, 90, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.booking-contact-btn i {
  font-size: 28px;
}

.booking-contact-btn span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.booking-contact-btn strong {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.booking-popup-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .booking-popup {
    padding: 15px;
  }

  .booking-popup-content {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .booking-popup-content h2 {
    font-size: 1.75rem;
  }

  .booking-popup-icon {
    width: 70px;
    height: 70px;
  }

  .booking-popup-icon i {
    font-size: 32px;
  }

  .booking-contact-btn {
    padding: 18px;
  }

  .booking-contact-btn strong {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .booking-popup-content {
    padding: 35px 20px;
  }

  .booking-popup-content h2 {
    font-size: 1.5rem;
  }

  .booking-popup-content > p {
    font-size: 15px;
  }

  .booking-contact-btn {
    padding: 16px;
  }

  .booking-contact-btn i {
    font-size: 24px;
  }

  .booking-contact-btn strong {
    font-size: 17px;
  }
}
