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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  background: #fafafa;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Enhanced Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

/* Enhanced Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
}

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

.logo h1 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

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

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

.nav-desktop a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

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

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

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

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

/* Enhanced Buttons */
.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

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

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5b21b6, #6366f1);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.header.scrolled .btn-outline {
  border-color: #6366f1;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.05);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #6366f1;
  border-color: transparent;
}

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

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

/* Enhanced 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(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.7), rgba(99, 102, 241, 0.1)),
    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-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.2), transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.2), transparent 50%);
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

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

.hero-stars i {
  color: #fbbf24;
  font-size: 1.75rem;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #e0e7ff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: #e0e7ff;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.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(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

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

.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;
}

/* Enhanced Sections */
section {
  padding: 7rem 0;
  position: relative;
}

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

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
  color: #1e40af;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.2);
  letter-spacing: 0.02em;
}

.badge:hover {
  background: linear-gradient(135deg, #ddd6fe, #e0f2fe);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1f2937, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Enhanced Facilities Section */
.facilities {
  background: linear-gradient(135deg, #f8fafc, #f0f9ff, #faf5ff);
  position: relative;
}

.facilities::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05), transparent 50%);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.facility-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.facility-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

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

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.85), rgba(139, 92, 246, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0.95;
}

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

.facility-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

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

.facility-overlay h3 {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.facility-content {
  padding: 2.5rem;
}

.facility-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f8fafc, #f0f9ff);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.facility-card:hover .feature-tag {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Enhanced Contact Section with Fixed Map */
.contact {
  background: linear-gradient(135deg, #f8fafc, #f0f9ff);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.03), transparent 50%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
}

.form-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: fit-content;
}

.form-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.form-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.form-card h3 i {
  color: #6366f1;
  font-size: 1.5rem;
}

.form-card p {
  color: #6b7280;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Enhanced Contact Info with Fixed Map Layout */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

/* Map Container - Fixed Alignment */
.map {
  flex: 1;
  min-height: 450px;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  margin-top: 50px;
}

.map:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

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

/* Info Cards Grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.info-card:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

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

.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8fafc, #f0f9ff);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-detail:hover {
  background: linear-gradient(135deg, #f1f5f9, #e0f2fe);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.contact-detail:hover .contact-icon {
  background: linear-gradient(135deg, #ddd6fe, #e0f2fe);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.contact-icon i {
  color: #6366f1;
  font-size: 1.3rem;
}

.contact-text h5 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.contact-detail:hover .contact-text h5 {
  color: #6366f1;
}

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

.contact-text a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

/* Transport Options */
.transport-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8fafc, #f0f9ff);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.transport-item:hover {
  background: linear-gradient(135deg, #f1f5f9, #e0f2fe);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.transport-item i {
  color: #6366f1;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}

.transport-item:hover i {
  transform: scale(1.1);
  color: #8b5cf6;
}

.transport-item div {
  flex: 1;
}

.transport-item strong {
  color: #1f2937;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.transport-item span {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Enhanced Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

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

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

/* Emergency Contact */
.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;
}

/* Enhanced Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 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: linear-gradient(135deg, #5b21b6, #6366f1);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Mobile Navigation */
.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.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 20px 20px;
}

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

.nav-mobile a {
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  padding: 1rem 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-mobile a:hover {
  color: #6366f1;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Performance Optimizations */
.facility-card,
.review-card,
.gallery-item,
.feature-item {
  will-change: transform, opacity;
}

/* Preload content visibility */
@media (prefers-reduced-motion: no-preference) {
  .facility-card,
  .review-card,
  .gallery-item,
  .feature-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

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

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

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

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

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    order: -1;
  }
  
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

  .contact-content {
    gap: 2rem;
  }

  .map {
    min-height: 350px;
  }

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

  .feature-card {
    margin-bottom: 1rem;
  }

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

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

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

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

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

  .form-card {
    padding: 2rem;
  }

  .map {
    min-height: 300px;
  }
}