
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-red: #DC2626;
  --dark-red: #B91C1C;
  --light-red: #EF4444;
  --black: #0A0A0A;
  --dark-gray: #1A1A1A;
  --medium-gray: #2D2D2D;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --lighter-gray: #F9FAFB;
  --white: #FFFFFF;
  
  --shadow-sm: 0 1px 2px 0 rgba(180, 50, 50, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  height: -webkit-fill-available;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  background: #0A0A0A;
  background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('/images/background-pattern.png');
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: auto;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

nav {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.95) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(220, 38, 38, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.3);
  transition: all var(--transition-base);
  position: relative;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 10rem;
}

.logo {
  position: fixed;
  left: 2rem;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: transform var(--transition-base);
  z-index: 1001;
  top: 50%;
  transform: translateY(-50%);
  animation: logoLoad 0.8s ease-out;
  display: flex;
  align-items: center;
}

.logo-img {
  height: clamp(4rem, 8vw, 6.5rem);
  width: auto;
  object-fit: contain;
  display: block;
  animation: logoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.5) rotate(-10deg);
    filter: blur(10px);
  }
  50% {
    opacity: 0.7;
    transform: translateX(10px) scale(1.1) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes logoLoad {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateY(-20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.logo:hover {
  transform: translateY(-50%) scale(1.05);
}

.logo .nd {
  color: var(--white);
  letter-spacing: -1px;
  display: inline-block;
  transition: transform var(--transition-base);
  animation: ndLoad 0.8s ease-out 0.2s both;
}

@keyframes ndLoad {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo:hover .nd {
  transform: translateX(-2px);
}

.logo .cutz {
  color: var(--primary-red);
  letter-spacing: -1px;
  display: inline-block;
  transition: transform var(--transition-base);
  background: linear-gradient(135deg, var(--primary-red), var(--light-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cutzLoad 0.8s ease-out 0.4s both;
}

@keyframes cutzLoad {
  0% {
    opacity: 0;
    transform: translateX(10px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.logo:hover .cutz {
  transform: translateX(2px);
}

.logo .admin {
  color: #3B82F6;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  background: none !important;
  border: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-links a.nav-cta {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
  background-color: #DC2626 !important;
}

.nav-links a::before,
.nav-links a::after {
  display: none !important;
  content: none !important;
}

.nav-links a:hover {
  color: var(--primary-red);
  background: none !important;
  transform: translateY(-2px);
}

.nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
  background-color: #DC2626 !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
  background-color: #DC2626 !important;
  color: #FFFFFF !important;
  padding: 1.2rem 2rem;
  width: 150px;
  min-width: 150px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  position: relative;
  overflow: hidden;
  border: none !important;
  letter-spacing: 0.03em;
  line-height: 1.2;
  min-height: 48px;
  text-transform: uppercase;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  padding: 0.5rem;
}


.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  text-align: center;
}

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

#home h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin: 0;
  margin-bottom: -5rem;
  padding-bottom: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
}

.hero-logo {
  max-width: clamp(400px, 75vw, 700px);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto -5rem auto;
  padding: 0;
  object-fit: contain;
  animation: heroLogoEntrance 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: clamp(250px, 60vw, 400px);
    margin-bottom: 5rem;
  }
  
  #home p {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@keyframes heroLogoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
    filter: blur(15px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

#home h1 .nd {
  color: var(--white);
  display: inline-block;
}

#home h1 .cutz {
  color: var(--primary-red);
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--light-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#home p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: -7rem;
  margin-bottom: 3rem;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: var(--white);
  padding: 1.5rem 4rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all var(--transition-base);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
  margin-bottom: 6rem;
  text-transform: uppercase;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}

section {
  padding: 3rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  scroll-margin-top: 100px; /* Account for fixed navbar when scrolling to anchors */
}

#home {
  padding-top: 1rem;
}

#booking {
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  border-radius: 2px;
}

.about {
  background: transparent;
  border-radius: 0;
  padding: 4rem;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 1;
}

.about p {
  font-size: 1.125rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.1px;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

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

.service-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.5rem 0;
  letter-spacing: -1px;
}

.service-card .description {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
  position: relative;
  cursor: pointer;
}

.gallery-item:has(img[src=""])::before,
.gallery-item:not(:has(img))::before {
  content: 'Image Loading...';
  position: absolute;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: 16px;
}

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

.gallery-item:hover {
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5), 0 0 25px rgba(220, 38, 38, 0.3);
  transform: translateY(-8px) scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}

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

.home-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.home-gallery .gallery-item {
  aspect-ratio: 4/5;
}

.gallery-view-more {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 0.5rem;
}

.gallery-view-more .view-more-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.gallery-view-more .view-more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.gallery-view-more .view-more-text {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

@media (min-width: 600px) {
  .gallery-view-more .view-more-text {
    display: inline;
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

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

.testimonial-card {
  background: transparent;
  border: none;
  padding: 2.5rem;
  border-radius: 0;
  box-shadow: none;
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(220, 38, 38, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-text {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-red);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-rating {
  color: var(--primary-red);
  margin-top: 0.75rem;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

/* Review form & Read more */
.review-form-section {
  max-width: 560px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(45, 45, 45, 0.4));
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.review-form-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.review-form .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.review-form .form-group input,
.review-form .form-group textarea {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(220, 38, 38, 0.3);
  color: var(--white);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.star-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s, transform 0.15s;
}

.star-btn:hover {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.star-btn.active {
  color: var(--primary-red);
}

.review-read-more {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.review-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(45, 45, 45, 0.4));
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
  border-color: rgba(220, 38, 38, 0.4);
}

.contact-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  transition: all var(--transition-base);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

.booking-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.booking-section {
  background: transparent;
  border-radius: 0;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: none;
  border: none;
}

.booking-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 2rem;
  color: var(--white);
  border-bottom: none;
  padding-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.booking-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--light-red));
  border-radius: 2px;
}

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

#slotsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.slot-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.6));
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.slot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.slot-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4), 0 0 20px rgba(220, 38, 38, 0.2);
}

.slot-card:hover::before {
  opacity: 0.05;
}

.slot-card.selected {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  border-color: var(--primary-red);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.slot-card.selected::before {
  opacity: 0;
}

.slot-date {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.slot-time {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.slot-location {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: rgba(220, 38, 38, 0.3);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.slot-card.selected .slot-location {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.request-slot-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  border: 2px solid var(--primary-red);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 1rem;
}

.request-slot-btn:hover {
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

#selectedSlotInfo {
  background: rgba(26, 26, 26, 0.8);
  color: var(--white);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-base);
  background: rgba(26, 26, 26, 0.8);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2), 0 0 20px rgba(220, 38, 38, 0.1);
  transform: translateY(-1px);
  background: rgba(45, 45, 45, 0.8);
}

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

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

.form-group-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.form-group-checkbox .checkbox-label input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  margin: 0;
  margin-top: 0.2rem;
  padding: 0;
  accent-color: var(--primary-red);
  flex-shrink: 0;
  cursor: pointer;
  /* Override .form-group input so checkbox doesn’t look like a text field */
  border: 2px solid rgba(220, 38, 38, 0.5);
  border-radius: 4px;
  background: rgba(26, 26, 26, 0.9);
  appearance: auto;
  -webkit-appearance: checkbox;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  width: 100%;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.4);
}

.submit-btn:disabled {
  background: var(--gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn:disabled::before {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn var(--transition-base);
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.95) 100%);
  border-radius: 24px;
  padding: 3rem;
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(220, 38, 38, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.3);
  animation: slideUp 0.3s ease-out;
  backdrop-filter: blur(20px);
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: rotate(90deg);
}

.location-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-option {
  padding: 1.25rem;
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  background: rgba(26, 26, 26, 0.8);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.location-option:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.location-option.selected {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.2));
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4), 0 0 20px rgba(220, 38, 38, 0.2);
}

.success-message {
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  display: none;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease-out;
}

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

.success-message.active {
  display: block;
}

.error-message {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  display: none;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease-out;
}

.error-message.active {
  display: block;
}

footer {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  /* Lower than #booking so appointment form stays on top when overlapping */
  border-top: 1px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

@media (max-width: 1024px) {
  .nav-container {
    padding-left: 8rem;
  }
}

@media (max-width: 768px) {
  nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    padding: 1rem 0;
    margin-bottom: 0;
  }

  .nav-container {
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    height: 0;
    min-height: 0;
  }

  .logo {
    display: none;
  }

  .logo-img {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-links.active li {
    animation: slideInFromLeft 0.4s ease forwards;
    opacity: 0;
  }

  .nav-links.active li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.active li:nth-child(2) { animation-delay: 0.1s; }
  .nav-links.active li:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.active li:nth-child(4) { animation-delay: 0.2s; }
  .nav-links.active li:nth-child(5) { animation-delay: 0.25s; }
  .nav-links.active li:nth-child(6) { animation-delay: 0.3s; }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-menu-toggle {
    display: flex !important;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 0;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:active {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
  }


  section {
    padding: 4rem 1.5rem;
  }

  .about {
    padding: 2.5rem 2rem;
  }

  .booking-section {
    padding: 2rem 1.5rem;
  }

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

  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .location-selector {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .testimonial-card,
  .gallery-item,
  .contact-info {
    animation: fadeInUp 0.6s ease-out backwards;
  }

  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
}
