/* Gate67 Hotel - Main Stylesheet */

/* CSS Variables - Design System */
:root {
  --background: hsl(40, 20%, 97%);
  --foreground: hsl(30, 10%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(30, 10%, 20%);
  --primary: hsl(45, 80%, 55%);
  --primary-foreground: hsl(30, 10%, 15%);
  --secondary: hsl(40, 15%, 90%);
  --secondary-foreground: hsl(30, 10%, 20%);
  --muted: hsl(40, 15%, 92%);
  --muted-foreground: hsl(30, 8%, 45%);
  --accent: hsl(180, 65%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(40, 15%, 88%);
  --radius: 0.75rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

/* Navbar always has white text */
.logo {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: white;
}

.nav-links a {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
  color: hsl(45, 100%, 70%);
}

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.logo-img { height: 28px; width: auto; display: inline-block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

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

.nav-links a {
  font-weight: 500;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-links a:hover {
  color: hsl(45, 100%, 70%);
}

.nav-links a.active {
  color: white;
  font-weight: 700;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(45, 80%, 55%, 0.3);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-option {
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.lang-option.active {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.lang-toggle {
  position: relative;
  width: 2.5rem;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle-slider {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lang-toggle.active .lang-toggle-slider {
  transform: translateX(1.25rem);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(0,0,0,0.5), 
    rgba(0,0,0,0.3), 
    rgba(0,0,0,0.4),
    var(--background)
  );
  z-index: -1;
}

.hero-content {
  max-width: 56rem;
  padding: 0 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.3),
    0 4px 8px rgba(0,0,0,0.3),
    0 8px 16px rgba(0,0,0,0.4),
    0 16px 32px rgba(0,0,0,0.5);
  font-weight: 700;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.4),
    0 4px 8px rgba(0,0,0,0.5),
    0 8px 16px rgba(0,0,0,0.6);
}

.hero .btn {
  font-size: 1.125rem;
  padding: 1.5rem 3rem;
  animation: pulse 2s infinite;
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.3),
    0 8px 16px rgba(0,0,0,0.3),
    0 16px 32px rgba(0,0,0,0.4);
  font-weight: 700;
  border: 2px solid rgba(0,0,0,0.1);
}

.hero .btn:hover {
  box-shadow: 
    0 6px 12px rgba(0,0,0,0.4),
    0 12px 24px rgba(0,0,0,0.4),
    0 24px 48px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  animation: bounce 1.5s infinite;
}

.scroll-indicator::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: white;
  border-radius: 50%;
  animation: scrollDot 1.5s infinite;
}

/* Sections */
section {
  padding: 6rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(45, 80%, 55%, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--foreground), hsl(30, 10%, 40%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Rooms Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.room-card {
  background: var(--card);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 30px -8px rgba(0,0,0,0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.room-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(45, 80%, 55%, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.room-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.2);
  border-color: var(--primary);
}

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

.room-image {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  box-shadow: 0 0 30px hsla(45, 80%, 55%, 0.3);
}

.room-content {
  padding: 2rem;
}

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

.room-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* About Hero */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

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

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.about-hero-content {
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.about-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 1rem 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.about-hero-content p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* About Story */
.about-story {
  padding: 6rem 1.5rem;
  background: var(--background);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--foreground), hsl(30, 10%, 40%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.feature-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Apartment Section */
.apartment-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, hsl(40, 20%, 98%), hsl(40, 20%, 95%));
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.apartment-description p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.distance-item i {
  color: var(--primary);
}

/* Comparison Section */
.comparison-section {
  padding: 4rem 1.5rem 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.comparison-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.08);
}

.comparison-card h3 {
  margin-bottom: 0.75rem;
}

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.comparison-card li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Amenities Section */
.amenities-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, hsl(40, 20%, 98%), hsl(40, 20%, 95%));
}

.amenities-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.amenity-card-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(45, 80%, 55%, 0.4);
}

.amenity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.amenity-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .story-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(45, 80%, 55%, 0.1);
  transform: translateY(-2px);
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-group label i {
  color: var(--primary);
}

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

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.1);
  height: 16rem;
  margin-bottom: 1.5rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.contact-info-item:hover {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}

.contact-icon {
  padding: 0.75rem;
  background: rgba(45, 80%, 55%, 0.1);
  border-radius: 0.5rem;
  color: var(--primary);
}

.contact-info-item .info-text p:first-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-info-item .info-text p:last-child {
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--background), hsl(40, 20%, 95%));
  position: relative;
}

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

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

.review-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

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

.review-stars {
  color: hsl(45, 80%, 55%);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.review-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Reviews Marquee (Google Reviews auto-scroll) */
.reviews-marquee {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}
.reviews-marquee::-webkit-scrollbar { /* Chrome/Safari */
  display: none;
}
.reviews-marquee .review-card {
  flex: 0 0 360px;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .reviews-marquee .review-card { flex-basis: 280px; }
}

/* Offers Section */
.offers-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.02), var(--background));
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.offer-card {
  background: linear-gradient(135deg, var(--card), hsl(40, 20%, 99%));
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -8px rgba(0,0,0,0.12);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(45, 80%, 55%, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.2);
  border-color: var(--primary);
}

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

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  color: var(--primary-foreground);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.offer-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(45, 80%, 55%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.offer-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.offer-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Attractions Section */
.attractions-section {
  padding: 6rem 1.5rem;
  background: var(--background);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.attraction-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.attraction-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
}

.attraction-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.attraction-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.attraction-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.attraction-distance {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
}

.attraction-distance i {
  font-size: 1rem;
}

/* Room Details Modal */
.room-modal-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.room-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.room-modal {
  background: var(--card);
  border-radius: 2rem;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5);
  overflow: hidden;
  border: 1px solid var(--border);
}

.room-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.35);
  color: var(--foreground);
}

.room-modal-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.room-modal-content > .room-modal-gallery {
  border-right: 1px solid var(--border);
}

.room-modal-gallery {
  background: var(--card);
  position: relative;
}

.room-gallery-main {
  position: relative;
  height: clamp(360px, 60vh, 560px);
  overflow: hidden;
}

.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: white;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.room-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  border-top: 1px solid var(--border);
}

.room-gallery-thumbs img {
  width: 76px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.room-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.35);
}

.room-modal-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.room-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}

.room-modal-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.room-modal-price {
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  white-space: nowrap;
}

.room-modal-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.room-modal-features h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.room-modal-features h3 i {
  color: var(--primary);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.125rem;
}

/* Responsive Room Modal */
@media (max-width: 968px) {
  .room-modal-content {
    grid-template-columns: 1fr;
  }
  
  .room-gallery-main {
    height: 400px;
  }
  
  .room-modal-info {
    padding: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, var(--background), rgba(0,0,0,0.02));
  padding: 4rem 1.5rem 2rem;
}

/* Footer should not animate anything - remove all animations and transitions */
.footer * { 
  animation: none !important; 
  transition: none !important;
}
.footer .social-links a {
  transform: none !important;
}
.footer .social-links a:hover {
  transform: none !important;
}

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

.footer-section h3 {
  font-size: 1.875rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--muted-foreground);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: hsl(40, 15%, 25%);
  border-radius: 50%;
  color: hsl(40, 20%, 95%);
  transition: background-color 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.social-link:hover { background: var(--primary); color: var(--primary-foreground); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  color: var(--muted-foreground);
}

/* Nav user dropdown */
.nav-user {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.3);
}
.nav-user-label { font-weight: 600; color: #ffffff; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.nav-user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: all 0.2s ease;
  min-width: 180px;
  z-index: 50;
}
.nav-user.open .nav-user-menu {
  opacity: 1;
  transform: translateY(8px);
  pointer-events: auto;
}
/* open only on click (via .open class); no hover open */
.nav-user:hover .nav-user-menu { }
.nav-user-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  text-decoration: none;
}
.nav-user-menu a:hover { background: var(--secondary); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal {
  background: linear-gradient(135deg, var(--card), hsl(40, 20%, 99%));
  border-radius: 2rem;
  box-shadow: 
    0 20px 60px -10px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 34rem;
  width: 100%;
  padding: 3rem 3rem;
  position: relative;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%), hsl(180, 65%, 50%));
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--foreground);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal h2 {
  font-size: 2.25rem;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.modal-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.modal-divider span {
  padding: 0 1rem;
}

.modal-toggle {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.modal-toggle button {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.modal-toggle button:hover {
  background: rgba(45, 80%, 55%, 0.1);
  transform: translateY(-2px);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background), var(--background), var(--secondary));
  animation: fadeOut 0.5s ease 2s forwards;
  pointer-events: none;
}

.loading-screen.hidden {
  display: none;
}

/* Hide navbar during loading */
body:has(.loading-screen:not(.hidden)) .navbar {
  opacity: 0;
  pointer-events: none;
}

/* Alternative for browsers that don't support :has() */
.navbar {
  opacity: 0;
  animation: navbarFadeIn 0.5s ease 2.5s forwards;
}

@keyframes navbarFadeIn {
  to {
    opacity: 1;
  }
}

.loading-content {
  text-align: center;
  animation: scaleIn 0.5s ease;
}

.loading-logo {
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-bar {
  width: 0;
  height: 4px;
  background: linear-gradient(135deg, hsl(45, 80%, 55%), hsl(40, 75%, 50%));
  margin: 1.5rem auto 0;
  border-radius: 2rem;
  animation: loadingBar 1.5s ease 0.5s forwards;
}

.loading-text {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 0.5s ease 1s forwards;
}

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

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes logoFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.05) rotate(2deg);
  }
  50% {
    transform: scale(1.1) rotate(0deg);
  }
  75% {
    transform: scale(1.05) rotate(-2deg);
  }
}

@keyframes loadingBar {
  to {
    width: 200px;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 hsla(45, 80%, 55%, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px hsla(45, 80%, 55%, 0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .about-rating {
    bottom: 1rem;
    right: 1rem;
  }

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

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

  /* Mobile user menu layout */
  .mobile-menu .nav-user { 
    padding: 0.5rem 0; 
    align-items: flex-start; 
    gap: 0.75rem;
    flex-direction: column;
  }
  .mobile-menu .nav-user > div:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }
  .mobile-menu .nav-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
  .mobile-menu .nav-user-menu {
    position: relative;
    top: auto; right: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0;
    width: 100%;
  }
  .mobile-menu .nav-user-menu a {
    background: rgba(255,255,255,0.1);
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mobile-menu .nav-user-menu a:hover {
    background: rgba(255,255,255,0.15);
  }
}

/* Account page responsiveness */
@media (max-width: 1024px) {
  .account-layout { 
    grid-template-columns: 1fr !important; 
    gap: 1rem !important;
  }
  .account-sidebar { 
    position: relative !important; 
    top: auto !important; 
    width: 100% !important;
  }
  .account-sidebar nav { 
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
  .account-sidebar nav .btn { 
    width: 100%; 
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
  }
  
  /* Profile panel grid fix for tablet */
  #panel-profile > div:first-of-type {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  #panel-profile > div:first-of-type > div:first-child {
    display: flex;
    justify-content: center;
  }
  #panel-settings > div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .account-sidebar {
    padding: 0.75rem !important;
  }
  .account-sidebar > div:first-child {
    flex-direction: column;
    text-align: center;
  }
  .account-sidebar nav { 
    grid-template-columns: 1fr !important;
  }
  .account-sidebar nav .btn { 
    font-size: 0.95rem; 
    padding: 0.85rem 1rem;
    justify-content: center;
  }
  
  /* Profile forms stacked */
  #usernameForm {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #usernameForm input,
  #usernameForm button {
    width: 100% !important;
  }
  
  #panel-profile > div:first-of-type img {
    width: 120px !important;
    height: 120px !important;
  }
  
  /* Settings panel adjustments */
  .account-panel {
    padding: 1rem !important;
  }
  .account-panel h3 {
    font-size: 1.25rem;
  }
  .account-panel h4 {
    font-size: 1rem;
  }
  
  /* Section header for account page */
  .section-header h2 {
    font-size: 1.75rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
}
