/* Bornova Otel - Elegant & Corporate Light Theme */
:root {
  /* Color Tokens - Executive Corporate Light Palette */
  --clr-bg-dark: #F8FAFC;
  --clr-bg-card: #FFFFFF;
  --clr-surface: #F1F5F9;
  --clr-navy: #0F172A;
  --clr-gold-500: #C59B27;
  --clr-gold-400: #DFB743;
  --clr-gold-600: #9E7917;
  --clr-accent-amber: #D97706;
  --clr-text-main: #1E293B;
  --clr-text-muted: #64748B;
  --clr-whatsapp: #10B981;
  --clr-whatsapp-hover: #059669;
  --clr-glass: rgba(255, 255, 255, 0.95);
  --clr-border: rgba(197, 155, 39, 0.22);
  --clr-border-subtle: rgba(226, 232, 240, 0.8);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Corporate Shadows & Rounded Corners */
  --shadow-glow: 0 10px 30px -5px rgba(197, 155, 39, 0.2);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 0 1px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 0 2px rgba(197, 155, 39, 0.3);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--clr-surface);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

.text-gold {
  color: var(--clr-gold-500);
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-gold-400) 0%, var(--clr-gold-500) 50%, var(--clr-gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-gold-500);
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: rgba(197, 155, 39, 0.08);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 155, 39, 0.3);
}

.room-card, .feature-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-subtle);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.room-card:hover, .feature-card:hover {
  border-color: var(--clr-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

/* Header & Navigation for Light Theme */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border-bottom: 1px solid var(--clr-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--clr-text-main);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-gold-500);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--clr-text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--clr-gold-500);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--clr-gold-500);
  transition: var(--transition);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-gold {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #FF9F1C 100%);
  color: #0A0F1D;
  font-weight: 700;
  box-shadow: 0 8px 25px -4px rgba(255, 215, 0, 0.5);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFD700 0%, #FF9F1C 100%);
  box-shadow: 0 12px 35px -4px rgba(255, 215, 0, 0.7);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  color: #FFF;
  font-weight: 700;
  box-shadow: 0 8px 25px -4px rgba(0, 230, 118, 0.5);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #00C853 0%, #009624 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -4px rgba(0, 230, 118, 0.7);
}

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

.btn-outline:hover {
  border-color: var(--clr-gold-500);
  color: var(--clr-gold-500);
  background: rgba(212, 175, 55, 0.05);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--clr-text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem 0;
  background: linear-gradient(to right, rgba(11, 17, 32, 0.9) 30%, rgba(11, 17, 32, 0.4) 100%), url('../images/hero.jpg') center/cover no-repeat;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--clr-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--clr-gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Quick Search Bar */
.quick-booking-bar {
  background: #FFFFFF !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15) !important;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box !important;
  overflow: hidden;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box !important;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box !important;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-control {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  font-weight: 600 !important;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  min-height: 48px;
  transition: var(--transition);
}

input[type="date"].form-control {
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  background-color: #FFFFFF !important;
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-gold-500) !important;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.2);
}

/* Trust Badges */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--clr-bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  font-size: 1.8rem;
  color: var(--clr-gold-500);
}

.trust-title {
  font-weight: 700;
  font-size: 1rem;
}

.trust-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* Sections Global */
.section {
  padding: 6rem 0;
}

.section-dark {
  background-color: var(--clr-bg-dark);
}

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

.room-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.room-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.room-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--clr-gold-400);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border);
}

.room-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.room-desc {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.spec-item svg {
  color: var(--clr-gold-500);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.room-price {
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold-400);
  line-height: 1;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--clr-bg-card);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-border);
  background: linear-gradient(180deg, var(--clr-bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--clr-gold-500);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

/* Location & Map Section */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0 2rem 0;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--clr-surface-elevated, #f8fafc);
  border: 1px solid var(--clr-border, rgba(0,0,0,0.06));
  border-radius: var(--radius-md, 10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  color: var(--clr-gold-500, #d4a017);
  flex-shrink: 0;
}

.location-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.location-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-main, #1e293b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-distance {
  font-size: 0.82rem;
  font-weight: 7rem;
  color: var(--clr-gold-600, #b8860b);
  font-weight: 600;
}

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

.map-container {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(120%);
}

/* Room Card Clickable Gallery Styling */
.room-card-clickable {
  cursor: pointer;
}

.gallery-hint-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--clr-gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Modal Lightbox */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--clr-text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--clr-gold-500);
  color: #000;
}

.modal-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.thumb-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb-img:hover, .thumb-img.active {
  opacity: 1;
  border-color: var(--clr-gold-500);
}


.faq-item {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--clr-text-main);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--clr-gold-400);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Nav Backdrop for Mobile Drawer */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Image Wrappers */
.room-img-hero-wrapper {
  height: clamp(260px, 45vh, 420px);
}

.building-img-wrapper {
  height: clamp(260px, 45vh, 440px);
}

/* Room Specs & Buttons Responsive Helper */
.room-specs {
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.room-footer-btn {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

/* Floating WhatsApp Sticky Bar */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--clr-whatsapp);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
  background: var(--clr-whatsapp-hover);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* Ultra Modern Executive Footer Styling */
.footer {
  background: #0B1120 !important;
  color: #F8FAFC !important;
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-main-box {
  background: #151D30;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
}

.footer-brand-col .logo {
  margin-bottom: 1rem;
}

.footer-brand-col .logo-title {
  color: #FFFFFF !important;
  font-size: 1.4rem;
}

.footer-brand-col .logo-subtitle {
  color: var(--clr-gold-400) !important;
  letter-spacing: 3px;
}

.footer-desc {
  color: #94A3B8 !important;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 340px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--clr-gold-500);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li {
  color: #CBD5E1 !important;
  font-size: 0.92rem;
}

.footer-links a {
  color: #CBD5E1 !important;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--clr-gold-400) !important;
  transform: translateX(4px);
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #F8FAFC;
  font-size: 0.9rem;
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(197, 155, 39, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748B !important;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Legal Modals Styling */
.legal-modal-content {
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;
  color: var(--clr-text-main);
  line-height: 1.7;
}

.legal-modal-content h3 {
  color: var(--clr-gold-500);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-modal-content h4 {
  color: var(--clr-gold-400);
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem 0;
}

.legal-modal-content p, .legal-modal-content ul {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.legal-modal-content ul {
  padding-left: 1.25rem;
}

/* --- Multi-tier Media Queries for Full Responsiveness --- */

@media (max-width: 1080px) {
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .map-container {
    height: 350px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .room-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    text-align: center;
  }
  .room-footer-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.85rem 0;
  }
  .nav-menu {
    position: fixed;
    top: 68px;
    right: -100%;
    left: auto;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 68px);
    background: #FFFFFF;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.75rem;
    gap: 1.5rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }
  .nav-menu.active {
    right: 0;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
  }
  .nav-actions .btn-whatsapp {
    display: none;
  }
  .hero {
    padding: 7.5rem 0 3rem 0;
    min-height: auto;
  }
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
  .quick-booking-bar {
    padding: 1.25rem;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
  .footer-main-box {
    padding: 2rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    padding: 0.9rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .modal-container {
    padding: 1.25rem 1rem;
    max-height: 95vh;
  }
  .modal-main-img {
    height: clamp(200px, 40vh, 340px);
  }
  .modal-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .thumb-img {
    height: 65px;
  }
}

@media (max-width: 640px) {
  .room-content {
    padding: 1.25rem !important;
  }
  .room-specs {
    justify-content: space-between;
    gap: 0.5rem;
  }
  .spec-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo-title {
    font-size: 1.05rem;
  }
  .logo-subtitle {
    font-size: 0.55rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
