* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

.menu-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 30px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: #fff;
  margin: 20px auto;
  padding: 20px;
  width: 95%;
  max-width: 1200px;
  border-radius: 10px;
}

.close-modal {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  background: #eee;
  border: none;
  cursor: pointer;
}

.tab-btn.active {
  background: #ff6b35;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active-tab {
  display: block;
}
.ameer {
  background: #000;
}

.big-btn {
  font-size: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  margin-top: 40px;
}

.view-menu-btn {
  margin-top: 20px;
  padding: 25px 25px;
  background: #ff6b35;
  /* width: 100%; */
  /* justify-self: center; */
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 7px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  position: relative;
}

.customer {
  position: fixed;
  bottom: 7rem;
  z-index: 5000;
  right: 30px;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #e74c3c;
  cursor: pointer;
  color: white;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
  font-size: 18px;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
  margin-bottom: 10px;
}

.modal-buttons {
  text-align: right;
}

button {
  padding: 8px 14px;
  margin-left: 8px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-close {
  background: #ccc;
}

.btn-send {
  background: #28a745;
  color: #fff;
}
.customer:hover {
  background-color: #c0392b;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

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

/* Enhanced Navigation */
.navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  padding: 0.3rem 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  padding: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.logo-img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.nav-logo h2 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 750;
  background: linear-gradient(45deg, #e74c3c, #c0392b, #8e44ad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  position: relative;
  white-space: nowrap;
}

.nav-logo h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  transition: width 0.3s ease;
}

.nav-logo:hover h2::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: 25px;
  background: transparent;
  overflow: hidden;
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
  transition: width 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 60%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(231, 76, 60, 0.1);
}

.bar {
  width: 25px;
  height: 3px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.3)),
    url('/images/Hero1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-btn {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  animation: fadeInUp 1s ease 0.4s both;
  min-height: 50px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Sections */
.section {
  padding: clamp(60px, 8vw, 80px) 0;
}

.bg-light {
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding: 0 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  border-radius: 2px;
}

/* Kitchen Overview Styles */
.kitchen-overview {
  margin-bottom: 4rem;
}

.kitchen-showcase {
  display: grid;
  grid-template-columns: fr fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kitchen-showcase .image-gallery {
  height: 400px;
  border-radius: 0.5rem;
}

.kitchen-info {
  padding: 2rem;
}

.kitchen-info h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.kitchen-info h3 i {
  color: #e74c3c;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.kitchen-info p {
  color: #7f8c8d;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.kitchen-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.kitchen-features .feature-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.kitchen-features .feature-item i {
  color: #e74c3c;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.kitchen-features .feature-item span {
  font-weight: 600;
  color: #2c3e50;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Image Gallery Styles */
.image-gallery {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.image-gallery:hover .gallery-btn {
  opacity: 1;
}

.gallery-btn:hover {
  background: rgba(231, 76, 60, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.gallery-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #e74c3c;
  transform: scale(1.2);
}

.gallery-counter {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.image-description {
  position: absolute;
  bottom: 50px;
  left: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-gallery:hover .image-description {
  opacity: 1;
}

.description-text {
  display: block;
  line-height: 1.4;
}

/* Grids */
.rooms-grid,
.dining-grid,
.sports-grid,
.services-grid,
.nightclub-grid,
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gate-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

/* Card Styles */
.room-card,
.food-card,
.sport-card,
.service-card,
.nightclub-card,
.amenity-card,
.gate-ticket-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  max-width: 100%;
}

.room-card::before,
.service-card::before,
.nightclub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-card:hover::before,
.sport-card:hover::before,
.service-card:hover::before,
.nightclub-card:hover::before {
  opacity: 1;
}

.room-card:hover,
.food-card:hover,
.sport-card:hover,
.service-card:hover,
.nightclub-card:hover,
.amenity-card:hover,
.gate-ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-info,
.food-info,
.service-info,
.nightclub-info,
.amenity-info {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.room-info h3,
.food-info h3,
.service-info h3,
.nightclub-info h3,
.amenity-info h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.room-info p,
.food-info p,
.service-info p,
.nightclub-info p,
.amenity-info p {
  color: #7f8c8d;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

.price {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.price span {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #7f8c8d;
  font-weight: 400;
}

/* Sport Cards */
.sport-card {
  padding: 2rem;
  text-align: center;
}

.sport-icon {
  /* font-size: clamp(2.5rem, 5vw, 3rem); */
  color: #e74c3c;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.sport-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.sport-card:hover .sport-icon {
  transform: scale(1.1);
}

.sport-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  z-index: 2;
}

.sport-card p {
  color: #7f8c8d;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Gate Tickets */
.gate-notice {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.notice-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.notice-icon {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: #ecf0f1;
  flex-shrink: 0;
}

.notice-text h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.notice-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #bdc3c7;
}

.gate-ticket-card {
  padding: 2rem;
  border: 2px solid transparent;
  max-width: 500px;
  width: 100%;
}

.gate-ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #e74c3c;
}

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

.ticket-icon {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: #e74c3c;
  margin-bottom: 1rem;
}

.ticket-header h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  color: #2c3e50;
  font-weight: 700;
}

.ticket-info p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.access-includes {
  margin-bottom: 2rem;
}

.access-includes h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.access-includes ul {
  list-style: none;
  padding: 0;
}

.access-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  color: #7f8c8d;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.access-includes li i {
  color: #27ae60;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.special-price {
  position: relative;
}

.special-price small {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #27ae60;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Buttons */
/* Force pointer on all buttons and role=button */
button {
  cursor: pointer;
}
.book-btn,
.order-btn,
.submit-btn {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer; /* Keep only this */
  transition: all 0.3s ease;
  width: 100%;
  font-size: clamp(0.9rem, 2vw, 1rem);
  min-height: 48px;
  position: relative;
  z-index: 10;
}

.book-btn:hover,
.order-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* About Section */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
  padding: 3rem 2rem 2.5rem 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(231, 76, 60, 0.06), rgba(142, 68, 173, 0.04));
  z-index: -1;
  border-radius: 18px;
}

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  background: linear-gradient(45deg, #e74c3c, #8e44ad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: #555;
  margin-bottom: 2.2rem;
  line-height: 1.85;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-item {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.07);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.1);
}

.feature-item i {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: #e74c3c;
  margin-bottom: 0.7rem;
}

.feature-item span {
  font-weight: 600;
  color: #2c3e50;
  font-size: clamp(1rem, 2vw, 1.08rem);
  margin-top: 0.3rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: white;
  padding: 25px;
  margin: 10% auto;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

.modal-content input[type='text'],
.modal-content input[type='tel'],
.modal-content input[type='number'] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.modal-content button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.modal-content button:hover {
  background-color: #218838;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* Enhanced 24/7 Service Status */
.service-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
}

.service-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(39, 174, 96, 0.1) 0%, transparent 70%);
  animation: pulse-bg 3s infinite;
}

@keyframes pulse-bg {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.service-status h4 {
  color: #ecf0f1;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin: 0;
  z-index: 2;
  position: relative;
}

.service-light {
  width: 20px;
  height: 20px;
  background: #27ae60;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: pulse-light 2s infinite;
  box-shadow: 0 0 20px #27ae60, 0 0 40px rgba(39, 174, 96, 0.5), 0 0 60px rgba(39, 174, 96, 0.3);
}

@keyframes pulse-light {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 20px #27ae60, 0 0 40px rgba(39, 174, 96, 0.5), 0 0 60px rgba(39, 174, 96, 0.3);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
    box-shadow: 0 0 30px #27ae60, 0 0 60px rgba(39, 174, 96, 0.7), 0 0 90px rgba(39, 174, 96, 0.5);
  }
}

.service-status p {
  color: #bdc3c7;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin: 0;
  text-align: center;
  z-index: 2;
  position: relative;
  font-weight: 500;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.location-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.location-details h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.address-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.address-item i {
  color: #e74c3c;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.address-item span {
  color: #2c3e50;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.4;
}

.directions-btn {
  margin-top: 2rem;
}

.get-directions {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.get-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.map-container {
  position: relative;
}

.interactive-map {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.interactive-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 15px;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.hotel-marker {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-marker i {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.map-features {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-tag {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 500;
  color: #2c3e50;
  transition: transform 0.3s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
}

.feature-tag i {
  color: #e74c3c;
  font-size: 1rem;
}

/* Contact Section */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  padding: 1rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item i {
  color: #e74c3c;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e74c3c;
}

.footer-section h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
}

.footer-section h4 {
  color: #ecf0f1;
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

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

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

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section ul li a:hover {
  color: #e74c3c;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #34495e;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e74c3c;
  transform: translateY(-2px);
}

.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #bdc3c7;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-details i {
  color: #e74c3c;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  transition: color 0.3s ease;
  z-index: 10;
}

.close:hover {
  color: #000;
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: #2c3e50;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  padding-right: 40px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

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

.form-group small {
  color: #7f8c8d;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  margin-left: 5px;
}

.total-price {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin: 1rem 0;
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  color: #e74c3c;
  border: 2px solid #e74c3c;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    gap: 0.3rem;
  }

  .nav-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }

  .logo-img {
    width: 45px;
    height: 45px;
  }

  .nav-logo h2 {
    font-size: 1rem;
  }

  .rooms-grid,
  .dining-grid,
  .services-grid,
  .nightclub-grid,
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .sports-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 40px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.8);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 249, 250, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 1rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 15px;
    display: block;
    width: calc(100% - 2rem);
  }

  .container {
    padding: 0 15px;
  }

  .rooms-grid,
  .dining-grid,
  .sports-grid,
  .services-grid,
  .nightclub-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gate-tickets-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kitchen-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kitchen-showcase .image-gallery {
    height: 300px;
    border-radius: 15px 15px 0 0;
  }

  .kitchen-features {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 1.5rem;
    max-height: 85vh;
  }

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

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

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-features {
    justify-content: center;
    gap: 0.5rem;
  }

  .notice-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .address-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }

  .address-item i {
    align-self: flex-start;
  }

  .gallery-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .gallery-counter {
    font-size: 11px;
    padding: 4px 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .image-description {
    font-size: 12px;
    padding: 8px 12px;
    bottom: 45px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
    min-height: 60px;
  }

  .nav-menu {
    top: 70px;
    padding: 1.5rem 0;
  }

  .nav-logo h2 {
    font-size: 0.9rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .container {
    padding: 0 10px;
  }

  .section {
    padding: clamp(40px, 6vw, 60px) 0;
  }

  .room-card,
  .food-card,
  .sport-card,
  .service-card,
  .nightclub-card,
  .amenity-card,
  .gate-ticket-card {
    margin: 0 5px;
  }

  .room-info,
  .food-info,
  .service-info,
  .nightclub-info,
  .amenity-info {
    padding: 1.5rem;
  }

  .sport-card {
    padding: 1.5rem;
  }

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

  .image-gallery {
    height: 200px;
  }

  .food-card .image-gallery {
    height: 180px;
  }

  .kitchen-showcase .image-gallery {
    height: 250px;
  }

  .gallery-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .gallery-dots {
    bottom: 10px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .gallery-counter {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 3px 6px;
  }

  .image-description {
    font-size: 11px;
    padding: 6px 10px;
    bottom: 35px;
  }

  .gate-ticket-card {
    padding: 1.5rem;
  }

  .kitchen-info {
    padding: 1.5rem;
  }

  .service-status {
    padding: 1.5rem;
  }

  .service-light {
    width: 16px;
    height: 16px;
  }

  .about-content {
    padding: 2rem 1.5rem;
  }

  .location-info {
    padding: 1.5rem;
  }

  .modal-content {
    padding: 1rem;
    margin: 10% auto;
  }

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

  .close {
    right: 15px;
    top: 10px;
    font-size: 24px;
  }

  .interactive-map iframe {
    height: 300px;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .contact-item {
    padding: 0.8rem 1.5rem;
    min-width: 180px;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .nav-logo h2 {
    font-size: 0.8rem;
  }

  .logo-img {
    width: 35px;
    height: 35px;
  }

  .container {
    padding: 0 8px;
  }

  .modal-content {
    padding: 0.8rem;
    width: 98%;
  }

  .room-info,
  .food-info,
  .service-info,
  .nightclub-info,
  .amenity-info,
  .sport-card {
    padding: 1rem;
  }

  .gate-ticket-card {
    padding: 1rem;
  }

  .about-content {
    padding: 1.5rem 1rem;
  }

  .kitchen-info,
  .location-info {
    padding: 1rem;
  }

  .service-status {
    padding: 1rem;
  }

  .contact-item {
    padding: 0.6rem 1rem;
    min-width: 160px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .gallery-btn {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
  }

  .nav-link:hover {
    transform: none;
  }

  .card:hover,
  .room-card:hover,
  .food-card:hover,
  .sport-card:hover,
  .service-card:hover,
  .nightclub-card:hover,
  .amenity-card:hover,
  .gate-ticket-card:hover {
    transform: none;
  }

  .feature-item:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-link {
    border: 2px solid transparent;
  }

  .nav-link:hover {
    border-color: #e74c3c;
  }

  .gallery-btn {
    border: 2px solid white;
  }

  .dot {
    border: 2px solid white;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-content h1,
  .hero-content p,
  .cta-btn {
    animation: none;
  }

  .service-light {
    animation: none;
  }

  .hotel-marker i {
    animation: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hamburger,
  .gallery-btn,
  .book-btn,
  .order-btn,
  .submit-btn,
  .cta-btn {
    display: none !important;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
  }

  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }

  .modal {
    display: none !important;
  }
}
@layer base {
  button:not([disabled]),
  [role='button']:not([disabled]) {
    cursor: pointer !important;
  }
}
