/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Colors - Casual/Fast Food style with warm tones */
  --primary-color: #ff6b35;
  --primary-dark: #e85a2a;
  --secondary-color: #f7931e;
  --accent-color: #ffc107;
  --dark-bg: #1a1a1a;
  --dark-bg-2: #2d2d2d;
  --light-bg: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --text-gray: #6c757d;
  --border-color: #dee2e6;
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --success-color: #28a745;
  --star-color: #ffc107;

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Container */
  --container-max-width: 1140px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header--light {
  color: var(--text-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-sm);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-header--light .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn--secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  background: transparent;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-md);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger,
.nav__hamburger::before,
.nav__hamburger::after {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  transition: var(--transition-normal);
}

.nav__hamburger::before,
.nav__hamburger::after {
  content: '';
  display: block;
}

.nav__hamburger::before {
  transform: translateY(-8px);
}

.nav__hamburger::after {
  transform: translateY(5px);
}

.nav__list {
  display: flex;
  gap: var(--spacing-md);
}

.nav__link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4noH-39xawmC9wGHHfdN6eA4UftXCPRUqvdqoRibTviQyyK_7n3tUpjHUwFwL3-tgWCM_Urhkg2tgVCjbH6vio4YiRoUHztKB2yOpE5hSWMhyYGWm1GdwoNzkYMxEn3Gy8b9ee9-NlljfuAk=w1920-h1080-k-no') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-light);
  text-align: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--spacing-md);
  animation: fadeInUp 1s ease;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.hero__stars {
  color: var(--star-color);
  font-size: 1.5rem;
}

.hero__rating-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero__scroll-indicator span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
  margin: 0 auto;
}

/* ==========================================
   QUICK INFO BAR
   ========================================== */
.quick-info {
  background: var(--light-gray);
  padding: var(--spacing-md) 0;
  box-shadow: var(--shadow-sm);
}

.quick-info__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.quick-info__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
}

.quick-info__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.quick-info__label {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about__content {
  max-width: 800px;
  margin: 0 auto;
}

.about__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.about__badges {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-color);
  transition: var(--transition-normal);
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.badge__icon {
  font-size: 1.5rem;
}

.badge__text {
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================
   SPECIALTIES SECTION
   ========================================== */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.specialty-card {
  background: var(--dark-bg-2);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.specialty-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.specialty-card__icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

.specialty-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.specialty-card__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.specialty-card__tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.specialties__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.feature {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.feature__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature__title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.feature__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery__item:hover .gallery__image {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__icon {
  color: var(--text-light);
  font-size: 3rem;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.reviews__overall {
  text-align: center;
}

.reviews__stars-large {
  color: var(--star-color);
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.reviews__score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
}

.reviews__count {
  color: rgba(255, 255, 255, 0.7);
}

.rating-bar {
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: 0.5rem;
}

.rating-bar__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.rating-bar__track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-sm);
  transition: width 1s ease;
}

.rating-bar__count {
  text-align: right;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.reviews__list {
  display: grid;
  gap: var(--spacing-md);
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.review-card__stars {
  color: var(--star-color);
  font-size: 1.25rem;
}

.review-card__date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.review-card__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.review-card__context {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-sm);
}

.review-card__tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.review-card__rating-details {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
  flex-wrap: wrap;
}

.review-card__rating-item {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.review-card__rating-item strong {
  color: var(--text-light);
}

.review-card__images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.review-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
}

.review-card__image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   OPENING HOURS SECTION
   ========================================== */
.hours__content {
  max-width: 600px;
  margin: 0 auto;
}

.hours__table {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-md);
}

.hours__row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.hours__row:last-child {
  border-bottom: none;
}

.hours__row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.hours__row--special {
  background: rgba(255, 107, 53, 0.1);
  font-weight: 600;
}

.hours__day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours__time {
  color: var(--primary-color);
  font-weight: 600;
}

.hours__note {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.hours__note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hours__note p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact__item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.contact__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact__text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.contact__link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-normal);
}

.contact__link:hover {
  color: var(--secondary-color);
}

.contact__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-light);
}

.map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #0d0d0d;
  color: var(--text-light);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.footer__subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--spacing-sm);
}

.footer__stars {
  color: var(--star-color);
}

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

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox__image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  transition: var(--transition-normal);
  border-radius: var(--radius-md);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
  top: 2rem;
  right: 2rem;
}

.lightbox__prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.875rem;
}

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

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1023px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .contact__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    transition: var(--transition-normal);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-info__container {
    grid-template-columns: 1fr;
  }

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

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

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

  .lightbox__prev,
  .lightbox__next {
    padding: 0.5rem;
    font-size: 1.5rem;
  }

  .lightbox__prev {
    left: 1rem;
  }

  .lightbox__next {
    right: 1rem;
  }

  .lightbox__close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }
}
