/* CSS Custom Properties */
:root {
  /* Colors */
  --barbershop-charcoal: hsl(0, 0%, 10.2%);
  --barbershop-gold: hsl(43, 75%, 37.6%);
  --barbershop-gold-light: hsl(43, 78%, 54.9%);
  --barbershop-gray-light: hsl(210, 17%, 97.6%);
  --barbershop-gray-medium: hsl(210, 14%, 49%);
  
  /* Typography */
  --font-montserrat: 'Montserrat', sans-serif;
  --font-opensans: 'Open Sans', sans-serif;
  
  /* Spacing */
  --container-max-width: 1280px;
  --section-padding: 5rem 0;
  --border-radius: 0.75rem;
  
  /* Transitions */
  --transition-default: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-opensans);
  font-weight: 400;
  line-height: 1.6;
  color: white;
  background-color: var(--barbershop-charcoal);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn-primary {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--barbershop-gold-light);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--barbershop-gold);
  color: var(--barbershop-gold);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand-text {
  font-family: var(--font-montserrat);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--barbershop-gold);
  cursor: pointer;
  margin: 0;
}

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

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--barbershop-gray-medium);
  text-decoration: none;
  transition: var(--transition-default);
  padding: 0.5rem 0.75rem;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.book-btn {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-default);
}

.book-btn:hover {
  background: var(--barbershop-gold-light);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: var(--barbershop-gold);
  transition: var(--transition-default);
}

.mobile-menu {
  display: none;
  background: var(--barbershop-charcoal);
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  padding: 1rem;
}

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

.mobile-nav-link {
  display: block;
  color: var(--barbershop-gray-medium);
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: var(--transition-default);
}

.mobile-nav-link:hover {
  color: var(--barbershop-gold);
}

.mobile-book-btn {
  width: 100%;
  margin-top: 1rem;
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--barbershop-gray-light);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: var(--barbershop-gray-medium);
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

.chevron-down {
  width: 2rem;
  height: 2rem;
  border-right: 2px solid var(--barbershop-gold);
  border-bottom: 2px solid var(--barbershop-gold);
  transform: rotate(45deg);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--barbershop-gray-medium);
  max-width: 48rem;
  margin: 0 auto;
}

.section-link {
  text-align: center;
  margin-top: 3rem;
}

.view-all-link {
  color: var(--barbershop-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: var(--transition-default);
}

.view-all-link:hover {
  color: var(--barbershop-gold-light);
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(to bottom, var(--barbershop-charcoal), #374151);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #374151;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: var(--transition-default);
}

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

.service-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-family: var(--font-montserrat);
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--barbershop-gray-medium);
  margin-bottom: 1rem;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-duration {
  color: var(--barbershop-gray-light);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--barbershop-gold);
}

.service-book-btn {
  width: 100%;
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-default);
}

.service-book-btn:hover {
  background: var(--barbershop-gold-light);
}

/* Features Section */
.features-section {
  padding: var(--section-padding);
  background: #374151;
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.feature-icon {
  width: 5rem;
  height: 5rem;
  background: var(--barbershop-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--barbershop-charcoal);
  transition: var(--transition-default);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-family: var(--font-montserrat);
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--barbershop-gray-medium);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--barbershop-charcoal);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #374151;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  display: flex;
  margin-bottom: 1rem;
  gap: 0.25rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--barbershop-gold);
}

.testimonial-content {
  color: var(--barbershop-gray-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--barbershop-gray-medium);
  font-size: 0.875rem;
}

/* Gallery Section */
.gallery-section {
  padding: var(--section-padding);
  background: #374151;
}

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

.gallery-filter {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-default);
  border: none;
}

.gallery-filter.active {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

.gallery-filter:not(.active) {
  background: #374151;
  color: var(--barbershop-gray-medium);
}

.gallery-filter:not(.active):hover {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  group: true;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-default);
}

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

/* About Section */
.about-section {
  padding: var(--section-padding);
  background: var(--barbershop-charcoal);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .story-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.story-title {
  font-size: 2rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--barbershop-gold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .story-title {
    font-size: 2.5rem;
  }
}

.story-paragraph {
  color: var(--barbershop-gray-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-section {
  margin-top: 5rem;
}

.team-title {
  font-size: 2.5rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .team-title {
    font-size: 3rem;
  }
}

.team-description {
  font-size: 1.25rem;
  color: var(--barbershop-gray-medium);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  text-align: center;
  background: #374151;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.member-name {
  font-size: 1.5rem;
  font-family: var(--font-montserrat);
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--barbershop-gray-medium);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--barbershop-gray-light);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.member-specialties {
  border-top: 1px solid #4b5563;
  padding-top: 1rem;
}

.specialties-title {
  color: var(--barbershop-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.specialties-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.specialty-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(184, 134, 11, 0.2);
  color: var(--barbershop-gold);
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: #374151;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-title {
  font-size: 2.5rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-info-title {
    font-size: 3rem;
  }
}

.contact-info-description {
  font-size: 1.25rem;
  color: var(--barbershop-gray-medium);
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--barbershop-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--barbershop-charcoal);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--barbershop-gray-light);
}

.hours-list p {
  margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form-container {
  background: #374151;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.5rem;
  font-family: var(--font-montserrat);
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 1.5rem;
}

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

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group label {
  color: var(--barbershop-gray-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: #4b5563;
  border: 1px solid #6b7280;
  border-radius: 0.5rem;
  color: white;
  font-family: inherit;
  transition: var(--transition-default);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--barbershop-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-submit-btn {
  width: 100%;
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-default);
}

.form-submit-btn:hover:not(:disabled) {
  background: var(--barbershop-gold-light);
}

.form-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Map Section */
.map-section {
  margin-top: 5rem;
}

.map-title {
  font-size: 2rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--barbershop-gold);
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }
}

.map-description {
  font-size: 1.25rem;
  color: var(--barbershop-gray-medium);
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  background: #374151;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: var(--barbershop-charcoal);
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-brand-name {
  font-size: 1.5rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--barbershop-gold);
  margin-bottom: 1rem;
}

.footer-brand-description {
  color: var(--barbershop-gray-medium);
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--barbershop-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--barbershop-charcoal);
  transition: var(--transition-default);
  text-decoration: none;
}

.social-link:hover {
  background: var(--barbershop-gold-light);
}

.footer-links-title,
.footer-contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 1rem;
}

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

.footer-links-list a {
  color: var(--barbershop-gray-medium);
  text-decoration: none;
  transition: var(--transition-default);
}

.footer-links-list a:hover {
  color: var(--barbershop-gold);
}

.footer-contact-list li {
  color: var(--barbershop-gray-medium);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--barbershop-gray-medium);
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #374151;
  border-radius: var(--border-radius);
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #4b5563;
}

.modal-title {
  font-size: 1.5rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--barbershop-gold);
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--barbershop-gray-medium);
  cursor: pointer;
  transition: var(--transition-default);
}

.modal-close:hover {
  color: white;
}

.booking-steps {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.step {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  background: #6b7280;
  color: #9ca3af;
}

.step.active {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-top: 1px solid #4b5563;
}

/* Booking Steps */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--barbershop-gold);
  margin-bottom: 1.5rem;
}

.selection-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.selection-item {
  border: 1px solid #6b7280;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition-default);
}

.selection-item:hover {
  border-color: var(--barbershop-gold);
}

.selection-item.selected {
  border-color: var(--barbershop-gold);
  background: rgba(184, 134, 11, 0.1);
}

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

@media (min-width: 768px) {
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.calendar {
  background: #4b5563;
  border-radius: 0.5rem;
  padding: 1rem;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.calendar-day-header {
  padding: 0.5rem;
  font-weight: 600;
  color: var(--barbershop-gray-medium);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: var(--transition-default);
  color: white;
}

.calendar-day:hover:not(.disabled) {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

.calendar-day.selected {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

.calendar-day.disabled {
  color: #6b7280;
  cursor: not-allowed;
}

.time-slots {
  max-height: 16rem;
  overflow-y: auto;
}

.time-slot {
  width: 100%;
  padding: 0.75rem;
  text-align: left;
  border-radius: 0.5rem;
  background: #4b5563;
  border: 1px solid #6b7280;
  color: white;
  cursor: pointer;
  transition: var(--transition-default);
  margin-bottom: 0.5rem;
}

.time-slot:hover {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

.time-slot.selected {
  background: var(--barbershop-gold);
  color: var(--barbershop-charcoal);
}

/* Success Modal */
.success-modal-content {
  background: #374151;
  border-radius: var(--border-radius);
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.success-modal-content h3 {
  font-size: 1.5rem;
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.success-modal-content p {
  color: var(--barbershop-gray-light);
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

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

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--barbershop-gold);
  border-radius: 50%;
  border: none;
  color: var(--barbershop-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.lightbox-close:hover {
  background: var(--barbershop-gold-light);
}

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

.lightbox-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
}

.lightbox-info p:first-child {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lightbox-info p:last-child {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}