/* Modern Elegant Theme */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e67e22;
  --text-color: #2c3e50;
  --background-color: #f9f6f1;
  --accent-color: #3498db;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);

  /* Icon Color Mode: 0 = colored (default), 1 = grayscale (black/white) */
  --icon-grayscale: 1;
}

/* Apply grayscale filter to all emoji icons based on --icon-grayscale setting
   Note: transition removed to reduce GPU load on Intel Macs */
.capacity-icon,
.usp-icon,
.feature-icon,
.neighborhood-icon,
.facility-icon,
.facility-list-icon,
.audience-icon,
.contact-icon,
.event-icon {
  filter: grayscale(var(--icon-grayscale));
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.5;
}

.text-light {
  font-weight: 300;
}

.hero-wrapper {
  position: relative;
}

.hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* GPU-accelerated Ken Burns effect using transform instead of background-size
   This prevents repaint storms on Intel Macs that can crash Chrome */
.hero::before {
  content: '';
  position: absolute;
  inset: -5%; /* Slightly larger to allow for scale animation */
  background: url('../images/image-0183.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  /* GPU-accelerated properties only */
  animation: kenBurns 20s ease-in-out infinite;
  will-change: transform;
}

/* Dark overlay as separate layer (avoids re-compositing image) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* GPU-friendly Ken Burns: uses transform (GPU-accelerated) instead of background-size (CPU) */
@keyframes kenBurns {
  0% {
    transform: scale(1.05) translate(-1%, -1%);
  }
  50% {
    transform: scale(1.08) translate(1%, 1%);
  }
  100% {
    transform: scale(1.05) translate(-1%, -1%);
  }
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-light {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  font-size: 1.4em;
  display: inline-block;
  transform: rotate(-5deg);
}

.hero p {
  font-size: 1.4rem;
  margin-top: 1rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-geo-breadcrumb {
  font-size: 0.85rem;
  font-weight: 300;
  margin-top: 0.5rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

.hero-geo-breadcrumb .geo-separator {
  margin: 0 0.5em;
  opacity: 0.7;
}

/* Hero Room Thumbnails - 2x2 grid aligned with booking box */
.hero-thumbnails {
  position: absolute;
  right: 2rem;
  bottom: 5.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  z-index: 5;
  width: 275px;
}

.hero-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-thumb:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
}

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

section {
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section + section {
  padding-top: 0.5rem;
}

/* Ensure article elements have same styling as section elements */
article {
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

article + section,
section + article {
  padding-top: 0.5rem;
}


section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.3rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--secondary-color);
}

/* Ensure article header h2 has same styling as section h2 */
article header h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.3rem;
}

article header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: var(--secondary-color);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.image-grid figure:hover {
  transform: translateY(-5px);
}

.image-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

ul:not(.nav-links) li {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

ul:not(.nav-links) li::before {
  content: "";
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #fff;
}

.btn:active {
  transform: translateY(0);
  color: #fff;
}

.btn span:first-child {
  font-size: 1.2em;
  color: #fff;
  font-weight: 600;
}

.hero-btn {
  margin-top: 30px;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* ============================================================================
   FOOTER - Warm & Elegant Style
   ============================================================================ */
footer {
  background: linear-gradient(180deg, #f5f0e8 0%, #ebe4d8 100%);
  color: var(--text-color);
  padding: 0;
  margin-top: 4rem;
  border-top: 3px solid var(--secondary-color);
}

/* Footer Trust Banner - Booking.com rating highlight */
.footer-trust-banner {
  background: linear-gradient(135deg, #003580 0%, #00224f 100%);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-trust-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.footer-rating-score {
  background: white;
  color: #003580;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  line-height: 1;
}

.footer-rating-info {
  text-align: left;
}

.footer-rating-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.footer-rating-source {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-testimonial {
  max-width: 400px;
  color: white;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-cta-btn {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.5);
}

/* Footer Main Content */
.footer-main {
  padding: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 0;
}

.footer-section h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  opacity: 0.8;
}

.contact-item div p:first-child {
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: var(--primary-color);
  font-size: 0.85rem;
}

.contact-item div p:last-child {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

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

/* Footer features list (non-clickable items) */
.footer-features span {
  color: #555;
  font-size: 0.95rem;
  display: block;
  padding: 0.2rem 0;
}

.footer-btn {
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #888;
  font-size: 0.85rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 100%;
}

.feature-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

/* Hover shadow using pseudo-element to avoid paint flashing */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.feature-card h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 0 0 0.4rem 0;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.15s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.25s; }
.feature-card:nth-child(5) { transition-delay: 0.3s; }
.feature-card:nth-child(6) { transition-delay: 0.35s; }
.feature-card:nth-child(7) { transition-delay: 0.4s; }
.feature-card:nth-child(8) { transition-delay: 0.45s; }

.hero-top-bar {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.hero-capacity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* Solid background instead of backdrop-filter (GPU-intensive on Intel Macs) */
  background: rgba(40, 40, 40, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.capacity-icon {
  font-size: 1rem;
  filter: brightness(0) invert(1);  /* Make icon white for dark hero background */
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  /* Solid background instead of backdrop-filter (GPU-intensive on Intel Macs) */
  background: rgba(40, 40, 40, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  overflow: visible;
  touch-action: pan-y pinch-zoom;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  position: relative;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  max-height: 70vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Active image (main) */
.carousel-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  position: relative;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Solid background instead of backdrop-filter (GPU-intensive on Intel Macs) */
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  left: 100%;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  padding: 0.4rem 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.carousel-dot.dot-edge {
  width: 6px;
  height: 6px;
  opacity: 0.6;
}

/* Thumbnails Styles */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.thumbnail {
  text-align: center;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  border: 2px solid transparent;
}

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

.thumbnail.active {
  border-color: var(--secondary-color);
  background: rgba(230, 126, 34, 0.1);
}

.thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.thumbnail span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Facilities Styles */
.facilities-section {
  margin-bottom: 2rem;
}

.facilities-section h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.3rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.facility-item span {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.3;
}

/* Facilities List (Three Columns) */
.facilities-text-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.facilities-text-column h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 0.3rem;
}

.facilities-text-column h4:first-child {
  margin-top: 0;
}

.facilities-text-column p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

/* Navigation Menu - Tab Style */
.nav-menu {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  position: relative;
  z-index: 20;
  background: transparent;
}

.nav-menu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-menu.sticky .nav-links {
  max-width: 1200px;
  width: calc(100% - 288px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #e5e7eb;
  width: calc(100% - 288px);
}

.nav-links li {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(44, 62, 80, 0.05);
}

.nav-link.active,
.nav-link:focus {
  color: var(--primary-color);
  border-bottom-color: var(--secondary-color);
  font-weight: 600;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
}

.go-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.go-to-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 35vh;
    min-height: 210px;
  }

  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-geo-breadcrumb {
    font-size: 0.75rem;
  }

  .hero-thumbnails {
    right: 1rem;
    width: 225px;
    bottom: 5rem;
    gap: 0.3rem;
  }

  section {
    padding: 1rem;
  }
  
  section + section {
    padding-top: 0.25rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-top-bar {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }

  .hero-capacity {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .capacity-icon {
    font-size: 0.85rem;
  }
  
  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .carousel-container {
    max-width: 100%;
    padding: 0;
  }

  .carousel {
    padding: 0;
  }

  .carousel-item.active {
    aspect-ratio: 4 / 3;
    max-height: 60vh;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
  }
  
  .thumbnail img {
    height: 60px;
  }
  
  .thumbnail span {
    font-size: 0.7rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.2rem 0.8rem;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .feature-card p {
    font-size: 0.8rem;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
  }
  
  .facility-item {
    padding: 0.6rem;
    gap: 0.6rem;
  }
  
  .facility-icon {
    font-size: 1.3rem;
  }
  
  .facility-item span {
    font-size: 0.85rem;
  }
  
  .facilities-section h3 {
    font-size: 1.1rem;
  }
  
  .facilities-text-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .facilities-text-column h4 {
    font-size: 0.95rem;
    margin-top: 0.8rem;
  }
  
  .facilities-text-column p {
    font-size: 0.8rem;
    margin: 0.2rem 0;
  }
  
  .nav-menu {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .nav-links {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.6rem 0.75rem;
  }
  
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  /* Footer responsive - 768px */
  .footer-trust-banner {
    padding: 1.2rem 1rem;
  }

  .footer-trust-content {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

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

  .footer-testimonial {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 1rem;
    max-width: 100%;
  }

  .footer-main {
    padding: 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
  }

  .contact-item {
    gap: 0.6rem;
  }

  .contact-icon {
    font-size: 1rem;
  }

  .rating-source {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .hero-thumbnails {
    display: none;
  }

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

  .feature-card {
    padding: 1rem 0.8rem;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.75rem;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .facility-item {
    padding: 0.8rem;
  }

  .facility-icon {
    font-size: 1.2rem;
  }

  .facility-item span {
    font-size: 0.85rem;
  }

  .facilities-text-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .facilities-text-column h4 {
    font-size: 0.9rem;
    margin-top: 0.6rem;
  }

  .facilities-text-column p {
    font-size: 0.75rem;
    margin: 0.15rem 0;
  }

  .nav-menu {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
  }

  .go-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  /* Footer responsive - 480px */
  .footer-trust-banner {
    padding: 1rem;
  }

  .footer-rating-score {
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
  }

  .footer-rating-label {
    font-size: 1rem;
  }

  .footer-rating-source {
    font-size: 0.75rem;
  }

  .footer-testimonial {
    font-size: 0.85rem;
  }

  .footer-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .footer-main {
    padding: 1.5rem 1rem;
  }

  .footer-content {
    gap: 1.2rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }
  
  .contact-item {
    gap: 0.5rem;
  }
  
  .contact-icon {
    font-size: 1rem;
  }
  
}

.facilities-section h3 {
  font-size: 1.2rem;
}

/* Hero Booking Box with Rating */
.hero-booking-box {
  position: absolute;
  bottom: 0;
  right: 2rem;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  padding: 1rem;
  z-index: 25;
  border: 1px solid #e6e6e6;
  gap: 0.8rem;
  min-width: 275px;
  transition: box-shadow 0.3s ease;
}

.hero-booking-box.sticky {
  position: fixed;
  top: 1rem;
  right: 2rem;
  bottom: auto;
  transform: none;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
  z-index: 1001;
}

.hero-booking-box .rating-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hero-booking-box .rating-section:hover {
  background: #f5f5f5;
}

.hero-booking-box .rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-booking-box .rating-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}

.hero-booking-box .rating-reviews {
  font-size: 0.9rem;
  color: #6b6b6b;
  font-weight: 400;
  margin-top: 0.1rem;
}

.hero-booking-box .rating-score-box {
  background: #003580;
  border-radius: 7px;
  padding: 0.2em 0.7em 0.18em 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2em;
  min-height: 2.2em;
}

.hero-booking-box .rating-score {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-booking-box .hero-btn {
  margin-top: 0;
  padding: 10px 16px;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-booking-box {
    right: 1rem;
    padding: 0.8rem;
    min-width: 225px;
    width: 225px;
  }
  .hero-booking-box.sticky {
    right: 1rem;
    top: 0.5rem;
    width: auto;
    min-width: 225px;
  }
  .hero-booking-box .rating-label {
    font-size: 1rem;
  }
  .hero-booking-box .rating-reviews {
    font-size: 0.8rem;
  }
  .hero-booking-box .rating-score-box {
    min-width: 1.7em;
    min-height: 1.7em;
    padding: 0.15em 0.5em 0.13em 0.5em;
  }
  .hero-booking-box .rating-score {
    font-size: 1.05rem;
  }
  .hero-booking-box .hero-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.review-card {
  position: relative;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 0 0 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Speech bubble tail */
.review-card::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 2rem;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #f8f9fa;
  /* Removed filter: drop-shadow (GPU-intensive on Intel Macs)
     Shadow effect handled by parent .review-card box-shadow instead */
}

.review-quote-icon {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--secondary-color);
  opacity: 0.25;
  line-height: 1;
}

.review-card p {
  margin: 0;
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-quote-icon {
    font-size: 2.5rem;
  }

  .review-card p {
    font-size: 0.95rem;
  }
}

/* USP Grid - 2x3 layout */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.usp-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.usp-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
}

@media (max-width: 600px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .usp-item {
    padding: 0.7rem 0.9rem;
  }

  .usp-icon {
    font-size: 1.2rem;
  }

  .usp-text {
    font-size: 0.9rem;
  }
}

/* Contact Section */
.contact-intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-icon {
  flex-shrink: 0;
}

/* Phone button - Blue style */
.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 220px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-phone:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* WhatsApp button - Green style (same as main CTA) */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 220px;
}

@media (max-width: 480px) {
  .contact-methods {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-methods .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Location Section - 2 Column Layout */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
}

.location-map iframe {
  display: block;
  border-radius: 8px;
}

.neighborhood-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.neighborhood-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.neighborhood-intro {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d8 100%);
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

.neighborhood-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.neighborhood-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.neighborhood-list li:last-child {
  border-bottom: none;
}

.neighborhood-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

.neighborhood-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.neighborhood-info strong {
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.neighborhood-info span {
  color: #666;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-map iframe {
    height: 250px;
  }

  .location-card {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .location-card {
    padding: 1rem;
  }

  .location-card h3 {
    font-size: 1.1rem;
  }

  .neighborhood-card {
    padding: 1rem;
  }

  .neighborhood-card h3 {
    font-size: 1.1rem;
  }

  .neighborhood-icon {
    font-size: 1.3rem;
    width: 2rem;
  }

  .neighborhood-info strong {
    font-size: 0.9rem;
  }

  .neighborhood-info span {
    font-size: 0.8rem;
  }
}

/* FAQ Styles */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-item.active {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-item.active::before {
  transform: scaleX(1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
  position: relative;
  width: 100%;
  border: none;
  font-family: inherit;
  text-align: left;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-bottom-color: rgba(52, 152, 219, 0.2);
}

.faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
  padding-right: 1.5rem;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--accent-color);
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--secondary-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 40px;
  text-align: center;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(230, 126, 34, 0.2);
}

.faq-item.active .faq-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotate(180deg);
  border-color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 2rem 2rem 2rem;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1rem;
  transform: translateY(-10px);
  transition: transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
  transform: translateY(0);
}

/* ===========================================
   FAQ Chat Style (WhatsApp-like)
   To switch back to accordion: remove "faq-chat-style" class from .faq-container
   =========================================== */
.faq-chat-style {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #e8e0d5 0%, #d9d0c4 100%);
  border-radius: 16px;
}

.faq-chat-style .faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: transparent;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
  border-radius: 0;
}

.faq-chat-style .faq-item::before {
  display: none;
}

.faq-chat-style .faq-item:hover {
  transform: none;
  box-shadow: none;
}

/* Question bubble - left aligned (received message style) */
.faq-chat-style .faq-question {
  align-self: flex-start;
  width: fit-content;
  max-width: 85%;
  background: #fff;
  border-radius: 18px 18px 18px 4px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  cursor: default;
  pointer-events: none;
  border: none;
  position: relative;
}

.faq-chat-style .faq-question:hover {
  background: #fff;
}

.faq-chat-style .faq-question h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  padding-right: 0;
  line-height: 1.4;
}

.faq-chat-style .faq-icon {
  display: none;
}

/* Answer bubble - right aligned (sent message style) */
.faq-chat-style .faq-answer {
  align-self: flex-end;
  max-width: 85%;
  max-height: none;
  opacity: 1;
  overflow: visible;
  background: #dcf8c6;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-chat-style .faq-answer p {
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.5;
  transform: none;
}

.faq-chat-style .faq-item.active .faq-answer {
  max-height: none;
}

.faq-chat-style .faq-item.active .faq-question {
  background: #fff;
  border-bottom: none;
}

.faq-chat-style .faq-item.active .faq-question h3 {
  color: #1a1a1a;
}

/* Chat style responsive */
@media (max-width: 768px) {
  .faq-chat-style {
    padding: 1rem;
    border-radius: 12px;
  }

  .faq-chat-style .faq-question,
  .faq-chat-style .faq-answer {
    max-width: 90%;
  }

  .faq-chat-style .faq-question h3,
  .faq-chat-style .faq-answer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-chat-style .faq-question,
  .faq-chat-style .faq-answer {
    max-width: 95%;
  }

  .faq-chat-style .faq-question {
    padding: 0.75rem 1rem;
    border-radius: 14px 14px 14px 4px;
  }

  .faq-chat-style .faq-answer {
    border-radius: 14px 14px 4px 14px;
  }

  .faq-chat-style .faq-answer p {
    padding: 0.75rem 1rem;
  }
}
/* END FAQ Chat Style */

/* FAQ Responsive Design */
@media (max-width: 768px) {
  .faq-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 1rem;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 0.5rem;
  }
  
  .faq-item {
    margin-bottom: 0.8rem;
    border-radius: 10px;
  }
  
  .faq-question {
    padding: 1.2rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 0.8rem;
    line-height: 1.4;
  }
  
  .faq-icon {
    font-size: 1.3rem;
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  
  .faq-answer p {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Sticky Sidebar Navigation */
.sticky-nav {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none !important; /* Disable sidebar navigation */
}

.sticky-nav.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-nav-content {
  padding: 1rem;
}

.sticky-nav h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.8rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sticky-nav-links li {
  margin-bottom: 0.3rem;
}

.sticky-nav-links a {
  display: block;
  padding: 0.4rem 0;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.7rem;
  font-weight: 400;
  transition: color 0.2s ease;
  line-height: 1.3;
  text-align: center;
}

.sticky-nav-links a:hover {
  color: var(--primary-color);
  font-weight: 500;
}

.sticky-nav-links a.active {
  color: var(--accent-color);
  font-weight: 600;
}

/* Hide sticky nav on mobile */
@media (max-width: 768px) {
  .sticky-nav {
    display: none;
  }
}

/* Perfect For Section Styles */
.perfect-for-heading {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.perfect-for-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.audience-item {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.audience-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.audience-icon {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.audience-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

.audience-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
  margin: 0;
  text-align: left;
}

/* Medium screens (md breakpoint - 768px) */
@media (min-width: 768px) {
  .perfect-for-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Large screens (lg breakpoint - 1024px) */
@media (min-width: 1024px) {
  .perfect-for-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Responsive Design for Perfect For Section */
@media (max-width: 768px) {
  .perfect-for-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem 0 1rem 0;
  }

  .audience-item {
    padding: 1rem;
  }

  .audience-icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }

  .audience-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .audience-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .perfect-for-container {
    gap: 0.75rem;
    padding: 0.25rem 0 0.75rem 0;
  }

  .audience-item {
    padding: 0.9rem;
  }

  .audience-icon {
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
  }

  .audience-item h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .audience-item p {
    font-size: 0.8rem;
  }
}

/* Events Section Styles */
.events-container {
  max-width: 1000px;
  margin: 0 auto;
}

.year-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 2.5rem 0 1.5rem 0;
}

.year-divider::before,
.year-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.year-divider::after {
  background: linear-gradient(90deg, transparent, var(--secondary-color));
}

.year-divider:first-child {
  margin-top: 0;
}

.event-item {
  display: flex;
  gap: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  /* TEMPORARILY DISABLED: Expensive transition causing crashes */
  /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
  position: relative;
}

.event-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  /* TEMPORARILY DISABLED: Expensive transition */
  /* transition: transform 0.3s ease; */
}

/* TEMPORARILY DISABLED: Hover effects causing browser crashes */
/*
.event-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.event-item:hover::before {
  transform: scaleX(1);
}
*/

.event-date {
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d8 100%);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-width: 110px;
  text-align: center;
  border-right: 3px solid var(--secondary-color);
  color: var(--primary-color);
}

.event-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.event-day-range {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.event-year {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* TBD events - hide day, show only month and year */
.event-date.event-tbd .event-day {
  display: none;
}

.event-date.event-tbd .event-year {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.event-content {
  padding: 1.5rem;
  flex: 1;
}

.event-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.event-location {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-icon {
  font-size: 0.9rem;
  margin-right: 0.3rem;
}

.event-content p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(52, 152, 219, 0.08);
  /* TEMPORARILY DISABLED: Transition causing performance issues */
  /* transition: all 0.3s ease; */
  border: 1px solid transparent;
}

.event-link::after {
  content: '→';
  font-size: 1.1rem;
  /* TEMPORARILY DISABLED: Transition */
  /* transition: transform 0.3s ease; */
}

/* TEMPORARILY DISABLED: Hover effects */
/*
.event-link:hover {
  background: rgba(52, 152, 219, 0.12);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateX(2px);
}

.event-link:hover::after {
  transform: translateX(3px);
}
*/

/* Events Responsive Design */
@media (max-width: 768px) {
  .event-item {
    flex-direction: column;
    gap: 0;
  }
  
  .event-date {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    width: auto;
    min-width: auto;
    border-right: none;
    border-bottom: 3px solid var(--secondary-color);
  }

  .event-month {
    font-size: 0.85rem;
  }

  .event-day {
    font-size: 1.1rem;
    margin-top: 0;
  }

  .event-day-range {
    font-size: 0.9rem;
    margin-top: 0;
  }

  .event-year {
    font-size: 0.85rem;
    margin-top: 0;
  }

  .event-date.event-tbd .event-year {
    font-size: 0.85rem;
  }
  
  .event-content {
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
  }
  
  .event-content h3 {
    font-size: 1.2rem;
  }
  
  .event-location {
    font-size: 0.9rem;
  }
  
  .event-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .event-item {
    margin-bottom: 1.5rem;
    border-radius: 12px;
  }
  
  .event-date {
    padding: 0.6rem 0.8rem;
    gap: 0.4rem;
  }

  .event-month {
    font-size: 0.75rem;
  }

  .event-day {
    font-size: 1rem;
  }

  .event-day-range {
    font-size: 0.8rem;
  }

  .event-year {
    font-size: 0.75rem;
  }
  
  .event-content {
    padding: 1rem 1.2rem 1.2rem 1.2rem;
  }
  
  .event-content h3 {
    font-size: 1.1rem;
  }
  
  .event-location {
    font-size: 0.85rem;
  }
  
  .event-content p {
    font-size: 0.85rem;
  }
}

/* Top 10 Restaurants Section Styles */
.restaurants-intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.restaurants-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

a.restaurant-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

a.restaurant-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.restaurant-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--secondary-color), #d35400);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.restaurant-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.restaurant-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.restaurant-category {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

.restaurant-desc {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-style: italic;
  margin-top: 0.15rem;
}

/* Responsive Design for Restaurants Section */
@media (max-width: 768px) {
  .restaurants-intro {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .restaurants-container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  a.restaurant-item {
    padding: 0.6rem 0.9rem;
  }

  .restaurant-rank {
    min-width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
  }

  .restaurant-info h3 {
    font-size: 0.95rem;
  }

  .restaurant-category {
    font-size: 0.75rem;
  }

  .restaurant-desc {
    font-size: 0.7rem;
  }
}

/* ============================================================================
   REDUCED MOTION SUPPORT
   Respects user preference for reduced motion (accessibility)
   Also helps users on Intel Macs who may experience GPU-related crashes
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Disable Ken Burns hero animation */
  .hero::before {
    animation: none;
    transform: scale(1.05);
    will-change: auto;
  }

  /* Disable all CSS transitions */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Disable carousel transitions */
  .carousel-item {
    transition: none;
  }

  /* Disable hover transforms */
  .feature-card:hover,
  .facility-item:hover,
  .thumbnail:hover,
  .image-grid figure:hover,
  .btn:hover,
  .lang-btn:hover,
  .hero-thumb:hover,
  a.restaurant-item:hover,
  .audience-item:hover,
  .faq-item:hover {
    transform: none;
  }

  /* Simplify go-to-top button */
  .go-to-top {
    transition: none;
  }

  .go-to-top.show {
    opacity: 1;
    transform: none;
  }
}