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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.header.scrolled .nav-desktop a {
  color: #374151;
}

.nav-desktop a:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
  color: #374151;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.nav-mobile a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: #3b82f6;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.header.scrolled .btn-outline {
  border-color: #3b82f6;
  color: #3b82f6;
}

.btn-outline:hover {
  background: white;
  color: #3b82f6;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

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

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hero-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-stars i {
  color: #fbbf24;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.stat-label {
  color: #bfdbfe;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.3s ease;
}

.scroll-mouse:hover {
  border-color: #bfdbfe;
}

.scroll-wheel {
  width: 4px;
  height: 12px;
  background: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

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

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.badge:hover {
  background: #bfdbfe;
  transform: translateY(-2px);
}

.section-header h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1f2937, #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Facilities Section */
.facilities {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

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

.facility-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.facility-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.8),
    rgba(16, 185, 129, 0.8)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0.9;
}

.facility-card:hover .facility-overlay {
  opacity: 0.95;
}

.facility-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  align-self: flex-start;
  transition: transform 0.3s ease;
}

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

.facility-overlay h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.facility-content {
  padding: 2rem;
}

.facility-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
}

.feature-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

.facility-card:hover .feature-tag {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
  font-size: 3rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1);
  color: #1d4ed8;
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-item p {
  color: #6b7280;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
}

.gallery .section-header h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.gallery .section-header p {
  color: #d1d5db;
}

.gallery .badge {
  background: #3b82f6;
  color: white;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-overlay p {
  color: #d1d5db;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.gallery-overlay i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: white;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p,
.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #3b82f6;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

.lightbox-info {
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 0.5rem;
  color: white;
}

.lightbox-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  color: #d1d5db;
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.reviews .badge {
  background: #dcfce7;
  color: #166534;
}

.reviews .section-header h2 {
  background: linear-gradient(135deg, #1f2937, #166534);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-summary {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

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

.rating-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
}

.rating-stars {
  color: #fbbf24;
  margin: 0.5rem 0;
}

.rating-label {
  color: #6b7280;
  font-size: 0.9rem;
}

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

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.review-card:hover .review-header img {
  transform: scale(1.1);
}

.review-info h4 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.review-card:hover .review-info h4 {
  color: #3b82f6;
}

.review-info p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-stars {
  color: #fbbf24;
}

.review-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  color: #bfdbfe;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.review-card:hover .quote-icon {
  color: #93c5fd;
}

.review-content p {
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  padding-left: 1.5rem;
  transition: color 0.3s ease;
}

.review-card:hover .review-content p {
  color: #1f2937;
}

.reviews-cta {
  background: linear-gradient(135deg, #3b82f6, #10b981);
  padding: 3rem;
  border-radius: 2rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
}

.reviews-cta:hover {
  transform: scale(1.02);
}

.reviews-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.reviews-cta p {
  color: #bfdbfe;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: white;
  color: #3b82f6;
}

.cta-buttons .btn:hover {
  background: #f8fafc;
  transform: translateY(-3px) scale(1.05);
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: #3b82f6;
}

/* Booking Section */
.booking {
  background: linear-gradient(135deg, #1e3a8a, #1f2937);
  color: white;
}

.booking .section-header h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.booking .section-header p {
  color: #bfdbfe;
}

.booking .badge {
  background: #3b82f6;
  color: white;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-card h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-card p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #93c5fd;
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.booking-summary {
  background: #dbeafe;
  border: 1px solid #93c5fd;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1e40af;
}

.success-message {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  animation: slideInDown 0.3s ease;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

.price-list,
.contact-list,
.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item,
.contact-item,
.amenity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-item:hover,
.contact-item:hover,
.amenity-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #bfdbfe;
}

.price-item.special {
  background: rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.5);
}

.contact-item i,
.amenity-item i {
  color: #60a5fa;
  margin-right: 0.5rem;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.amenity-item {
  justify-content: flex-start;
  gap: 0.5rem;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
}

.contact .badge {
  background: #dbeafe;
  color: #1e40af;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Right side map + info cards layout */
.contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  height: 100%; /* let it expand to the grid row height (matches the form) */
}

.map-and-cards {
  display: flex;
  gap: 1.5rem;
}
#contact-content{
    margin-top: 100px;
}
#Location-info{
  margin-top: 150px;
}
.price-item span{
  color: black;
}
.contact-item{
  color: black;
}
.amenity-item{
  color: black;
}
.map {
  flex: 1 1 60%;
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  height: 800px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

/* Make the map match the height of the left contact form by stretching to container height */
.contact-info > .map {
  flex: 1 1 auto;
  height: 100%;
  align-self: stretch;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 320px;
}

/* Ensure info-cards fill available width and look consistent */
.info-column .info-card {
  width: 100%;
}

.contact-form-container .form-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-form-container .form-card h3 i {
  color: #3b82f6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-detail:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon {
  background: #bfdbfe;
}

.contact-icon i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.contact-text h5 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.contact-detail:hover .contact-text h5 {
  color: #3b82f6;
}

.contact-text p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.transport-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.transport-item:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.transport-item i {
  color: #3b82f6;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.transport-item:hover i {
  transform: scale(1.1);
}

.map-placeholder {
  max-width: 100%;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.map-placeholder:hover::before {
  opacity: 0.4;
}

.map-placeholder:hover {
  transform: scale(1.02);
}

.map-content {
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease;
}

.map-placeholder:hover .map-content {
  transform: scale(1.05);
}

.map-content i {
  color: #3b82f6;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.map-content p {
  color: #1f2937;
  font-weight: 600;
}

.map-content p:last-child {
  color: #6b7280;
  font-weight: normal;
  font-size: 0.9rem;
}

.emergency-contact {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.emergency-card {
  background: linear-gradient(135deg, #fef2f2, #fef7ed);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.emergency-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.emergency-card h3 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.emergency-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.emergency-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.emergency-btn {
  border-color: #ef4444;
  color: #ef4444;
}

.emergency-btn:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-2px) scale(1.05);
}

.emergency-btn:last-child {
  border-color: #3b82f6;
  color: #3b82f6;
}

.emergency-btn:last-child:hover {
  background: #3b82f6;
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #1d4ed8;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .booking-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-info,
  .contact-info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .nav-cta {
    display: none;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .rating-summary {
    flex-direction: column;
    gap: 1rem;
  }

  .emergency-buttons {
    flex-direction: column;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-info {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
  }
}

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

  .hero-content {
    padding: 0 1rem;
  }

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

  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }

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

/* Print Styles */
@media print {
  .header,
  .scroll-progress,
  .back-to-top,
  .lightbox {
    display: none !important;
  }

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

  .hero-background {
    position: relative;
    height: 200px;
  }

  section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .facility-card,
  .review-card,
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
  }
}
/* ================================
   MOBILE RESPONSIVE FIXES
   ================================ */
@media (max-width: 768px) {

  /* Prevent horizontal overflow */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  /* Disable desktop nav on mobile */
  .nav-desktop,
  .nav-cta {
    display: none !important;
  }

  /* Enable mobile menu button */
  .mobile-menu-btn {
    display: block;
  }

  /* Fix hero background issue on mobile */
  .hero-background {
    background-attachment: scroll;
  }

  /* Responsive hero typography */
  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* Stack hero stats */
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Fix facilities grid breaking mobile */
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  /* Fix reviews cards width */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Fix contact layout */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map {
    min-height: 300px;
    margin-top: 0;
  }

  /* Reduce section padding */
  section {
    padding: 4rem 0;
  }

  /* Prevent images from breaking layout */
  img {
    max-width: 100%;
    height: auto;
  }
}
