:root {
  /* Enhanced color palette */
  --primary: #1a5c3a;
  --primary-light: #2d7a52;
  --primary-dark: #0f3d26;
  --accent: #c9a227;
  --accent-light: #e0c158;
  --accent-glow: rgba(201, 162, 39, 0.3);
  --white: #ffffff;
  --cream: #f8f6f0;
  --light-gray: #f0ede6;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --text-muted: #999;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.25);
  --shadow-glow: rgba(201, 162, 39, 0.15);
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Smooth scroll with offset */
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #1a5c3a;
  overflow-x: hidden;
  line-height: 1.8;
}

/* ========== TEXT GRADIENT ========== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light), #f5d97a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== GLASSMORPHISM ========== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* ========== FLOATING ANIMATION ========== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float-slow 6s ease-in-out infinite; }

/* ========== SHIMMER/GLOW ========== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(201, 162, 39, 0.1); }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--text) 0%, var(--accent) 50%, var(--text) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f3d26 0%, #1a5c3a 30%, #1a5c3a 60%, #0f3d26 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 122, 82, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
  z-index: 1;
}

/* Hero background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hero decorative particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.8s ease-out both;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent-light), #f5d97a, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary, .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #1a1a1a;
  border: none;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(201, 162, 39, 0.1);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  animation: bounce-down 2s ease-in-out infinite;
  font-size: 20px;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ========== ANIMATION KEYFRAMES ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUpReveal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal classes for IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========== IMAGE REVEAL ========== */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal img {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
  opacity: 0;
  transform: scale(1.08);
}

.img-reveal.revealed img {
  opacity: 1;
  transform: scale(1);
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}

.img-reveal.revealed::after {
  transform: translateX(100%);
}

/* ========== PARALLAX SECTIONS ========== */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========== ENHANCED SECTION STYLES ========== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 162, 39, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== ROOM CARDS ========== */
.room-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  transform: translateY(0);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.room-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.room-info {
  padding: 24px;
}

.room-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.room-info h3 a {
  color: var(--primary-dark);
}

.room-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.room-meta span i {
  margin-right: 6px;
  color: var(--accent);
}

.room-price {
  margin-bottom: 12px;
}

.price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  font-size: 13px;
  color: var(--text-light);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.room-feature-tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--text-light);
}

.room-card-actions {
  display: flex;
  gap: 10px;
}

.btn-book {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-book:hover { background: var(--light-gray); }

.btn-book-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.btn-book-accent:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform .3s;
}

.gallery-item:hover { transform: translateY(-2px); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-hover);
  border-color: rgba(201, 162, 39, 0.2);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* ========== REVIEW CARDS ========== */
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.review-rating { color: var(--accent); margin-bottom: 12px; font-size: 14px; }

.review-text {
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 15px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.review-author h4 { font-size: 15px; font-family: 'Montserrat', sans-serif; }
.review-author span { font-size: 12px; color: var(--text-light); }

/* ========== CONTACT ========== */
.contact-info { padding: 20px 0; }

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 13px; color: var(--text-light); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; font-weight: 500; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--text); }
.contact-item a:hover { color: var(--accent); }

/* ========== LIGHTBOX ENHANCEMENTS ========== */
.lightbox-overlay {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(10px) !important;
}

#lightbox-img {
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* ========== FOOTER ========== */
footer {
  position: relative;
  overflow: hidden;
}

/* ========== EVENT FORMAT CARDS ========== */
.event-formats-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px;
}
.event-format-card {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 14px 10px; border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer; transition: all .2s;
    user-select: none; text-align: center;
}
.event-format-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.event-format-card.active {
    background: rgba(201,162,39,0.12);
    border-color: var(--accent);
    color: var(--accent);
}
.ef-icon { font-size: 1.3rem; opacity: 0.7; }
.event-format-card.active .ef-icon { opacity: 1; }
.ef-body { text-align: center; }
.ef-label { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.event-format-card.active .ef-label { color: var(--accent); }
.ef-desc { font-size: 0.65rem; color: var(--text-muted); margin-top: 1px; opacity: 0.5; }
.event-format-card.active .ef-desc { opacity: 0.7; }
.ef-prices { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.ef-price { font-size: 11px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.ef-price.ef-day { font-size: 9px; opacity: .7; }
.ef-price.ef-pp { font-size: 10px; opacity: .85; color: var(--text-secondary); }

@media (max-width: 600px) {
    .event-formats-list { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 8px; }
    .event-format-card { padding: 12px 8px; }
    .ef-icon { font-size: 18px; }
    .ef-label { font-size: 12px; }
}

/* Calculator responsive */
@media (max-width: 900px) {
    .calc-grid { grid-template-columns: 1fr; gap: 24px; }
    .calc-container { padding: 24px; }
}
@media (max-width: 480px) {
    .calc-container { padding: 16px; border-radius: 16px; }
    .calc-form-section { padding: 0; }
    .form-row { flex-direction: column; gap: 10px; }
    .mode-btn { font-size: 11px; padding: 8px 10px; }
}

/* ========== MODE BUTTONS (6h/24h toggle) ========== */
.calc-mode-group {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.mode-btn {
  flex: 1; padding: 10px 16px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.mode-btn.active {
  border-color: var(--accent); background: rgba(201,162,39,0.18);
  color: var(--accent);
}

/* ========== GALLERY PAGINATION ========== */
.gallery-pagination {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 20px 0 8px;
}
.gallery-page-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--primary); background: var(--white);
  color: var(--primary); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.gallery-page-btn:hover { background: var(--primary); color: var(--white); }
.gallery-page-info { font-size: 14px; color: var(--text-light); font-weight: 500; }

/* ========== RESPONSIVE ========== */

/* Rooms grid: 3→1 columns */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

/* About grid: side-by-side → stacked */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

/* About images overlay — secondary overlapping main */
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow);
}

.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid var(--white);
  z-index: 2;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.05),
    0 10px 20px rgba(0,0,0,0.08),
    0 20px 40px rgba(0,0,0,0.06),
    0 30px 60px rgba(0,0,0,0.04);
  transform: translateZ(12px);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
}

.about-images:hover .about-img-secondary {
  transform: translateZ(20px) translateY(-4px);
  box-shadow:
    0 6px 10px rgba(0,0,0,0.06),
    0 15px 30px rgba(0,0,0,0.1),
    0 30px 60px rgba(0,0,0,0.08),
    0 45px 80px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 350px; }
  .about-img-secondary { width: 180px; height: 180px; right: -10px; bottom: -15px; }
}

@media (max-width: 768px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .about-img-main { height: 280px; }
  .about-img-secondary { width: 130px; height: 130px; right: -8px; bottom: -10px; border-width: 4px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media(max-width:480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .room-image { height: 200px; }
}

/* Flatpickr: серые занятые даты */
.flatpickr-day.flatpickr-disabled {
    color: #b0b0b0 !important;
    background: rgba(0, 0, 0, 0.04) !important;
    cursor: not-allowed !important;
}
.flatpickr-day.flatpickr-disabled.booked-date {
    color: #888 !important;
    background: rgba(180, 40, 40, 0.06) !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
}

/* =========================================
   3D EFFECTS � �������� �������
   ========================================= */

/* ========== GALLERY 3D ========== */
.gallery-item {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover {
    transform: translateZ(30px) rotateY(-5deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 10px 20px rgba(0,0,0,0.2), inset 0 -5px 15px rgba(0,0,0,0.1);
}
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
    transform: scale(1.15) translateZ(20px);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ========== ROOM CARDS 3D ========== */
.room-card {
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.room-card:hover {
    transform: translateZ(40px) rotateX(-3deg) rotateY(2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 15px 30px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1);
}
.room-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.room-card:hover::before { opacity: 1; }
.room-card:hover .room-image img { transform: scale(1.1) translateZ(10px); }
.room-image { perspective: 800px; overflow: hidden; border-radius: 16px 16px 0 0; }
.room-image img { transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform-origin: center center; }

/* ========== NEWS CARDS 3D ========== */
.news-card {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card:hover {
    transform: translateY(-8px) translateZ(20px) rotateX(-2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 12px 24px rgba(0,0,0,0.15);
}
.news-card:hover img { transform: scale(1.08) translateZ(10px); }
.news-card img { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* ========== ABOUT IMAGES 3D ========== */
.about-images { perspective: 1000px; }

/* ========== SERVICES 3D ========== */
.service-card { perspective: 800px; transform-style: preserve-3d; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover { transform: translateZ(25px) rotateX(-2deg); box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.1); }
.service-icon { transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform-style: preserve-3d; }
.service-card:hover .service-icon { transform: translateZ(15px) scale(1.1) rotateY(10deg); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }

/* ========== BUTTONS 3D ========== */
.btn { perspective: 600px; transform-style: preserve-3d; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; }
.btn:hover { transform: translateY(-3px) translateZ(10px); box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1); }
.btn:active { transform: translateY(0) translateZ(0) scale(0.98); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 10px 20px rgba(26,92,58,0.3), 0 5px 10px rgba(26,92,58,0.2); }

/* ========== CARDS GENERAL 3D ========== */
.card { transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform-style: preserve-3d; }
.card:hover { transform: translateY(-4px) translateZ(10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1); }

/* ========== REVIEW CARDS 3D ========== */
.review-card { perspective: 800px; transform-style: preserve-3d; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.review-card:hover { transform: translateY(-5px) translateZ(15px); box-shadow: 0 15px 30px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.1); }

/* ========== STAT CARDS 3D ========== */
.stat-card { transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform-style: preserve-3d; }
.stat-card:hover { transform: translateY(-5px) translateZ(15px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.2), 0 8px 16px rgba(0,0,0,0.1); }

/* ========== ANIMATIONS ========== */
@keyframes float3d { 0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); } 25% { transform: translateY(-10px) rotateX(2deg) rotateY(-2deg); } 50% { transform: translateY(-5px) rotateX(0deg) rotateY(0deg); } 75% { transform: translateY(-10px) rotateX(-2deg) rotateY(2deg); } }
@keyframes pulse3d { 0%, 100% { transform: scale(1) translateZ(0); } 50% { transform: scale(1.05) translateZ(10px); } }
@keyframes slideIn3d { from { opacity: 0; transform: translateY(30px) translateZ(-30px) rotateX(10deg); } to { opacity: 1; transform: translateY(0) translateZ(0) rotateX(0deg); } }
.float-3d { animation: float3d 6s ease-in-out infinite; }
.pulse-3d { animation: pulse3d 2s ease-in-out infinite; }
.slide-in-3d { animation: slideIn3d 0.8s ease-out forwards; }
