/* ===========================
   CSS Variables
   =========================== */
:root {
  /* Colors */
  --primary-color: #c41e3a;
  --primary-dark: #9a1829;
  --primary-light: #d4485f;
  --secondary-color: #1a1a1a;
  --accent-gold: #d4a574;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --text-light: #fff;
  --bg-white: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);

  /* 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: 16px;
  --radius-full: 9999px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

ul {
  list-style: none;
}

/* ===========================
   Layout Components
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

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

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-gold));
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 1.5rem;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.navbar__logo:hover {
  color: var(--primary-dark);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.navbar__link {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.navbar__link:hover,
.navbar__link.active {
  color: var(--primary-color);
}

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

.navbar__link--cta {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.navbar__link--cta::after {
  display: none;
}

.navbar__link--cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.navbar__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

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

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(196, 30, 58, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--spacing-md);
  font-weight: 300;
  letter-spacing: 1px;
}

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

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero__rating-text {
  font-size: 1rem;
  opacity: 0.9;
}

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

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

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

.hero__scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-light);
  border-radius: var(--radius-lg);
  position: relative;
  margin: 0 auto;
}

.hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: var(--text-light);
  border-radius: var(--radius-full);
  animation: scroll-down 2s infinite;
}

/* ===========================
   About Section
   =========================== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.about__card {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.about__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about__icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

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

.about__card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.feature__icon {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
  background: var(--bg-light);
}

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

.gallery__filter {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.gallery__filter:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gallery__filter.active {
  background: var(--primary-color);
  color: var(--text-light);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-sm);
}

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

.gallery__item.hidden {
  display: none;
}

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

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

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 30, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery__zoom {
  font-size: 2rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.gallery__zoom:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* ===========================
   Reviews Section
   =========================== */
.reviews__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__rating-box {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.reviews__score {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.reviews__stars {
  margin: var(--spacing-sm) 0;
}

.reviews__count {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

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

.distribution__row span:first-child {
  width: 30px;
  font-weight: 500;
  color: #ffd700;
}

.distribution__bar {
  flex: 1;
  height: 8px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.distribution__fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--accent-gold));
  transition: width 1s ease;
}

.distribution__row span:last-child {
  width: 30px;
  text-align: right;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.reviews__carousel {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.reviews__track {
  display: flex;
  gap: var(--spacing-md);
  transition: transform var(--transition-slow);
}

.review-card {
  flex: 0 0 100%;
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.review-card__stars .star {
  color: #ffd700;
  font-size: 1.25rem;
}

.review-card__date {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.review-card__text {
  margin: var(--spacing-sm) 0;
  line-height: 1.8;
  color: var(--text-primary);
}

.review-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin: var(--spacing-sm) 0;
}

.review-card__badge {
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.review-card__badge--guide {
  background: var(--primary-color);
  color: var(--text-light);
}

.review-card__price {
  padding: 0.25rem 0.75rem;
  background: var(--accent-gold);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.review-card__ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
}

.detail-rating {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-rating span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stars-small {
  color: #ffd700;
  font-size: 0.875rem;
}

.review-card__note {
  background: #e8f4fd;
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  border-left: 3px solid #2196f3;
  margin: var(--spacing-sm) 0;
  font-size: 0.875rem;
  color: #1976d2;
}

.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  transition: all var(--transition-fast);
}

.reviews__arrow:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.reviews__arrow--prev {
  left: 0;
}

.reviews__arrow--next {
  right: 0;
}

.reviews__platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
}

.reviews__platform span {
  color: var(--text-secondary);
}

.reviews__logo {
  height: 24px;
  width: auto;
}

/* ===========================
   Order Section
   =========================== */
.order {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
}

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

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

.order .section-title::after {
  background: var(--accent-gold);
}

.order .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.order__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  align-items: center;
}

.order__info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.order__info p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  opacity: 0.95;
}

.order__details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
}

.order__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

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

.order__detail strong {
  display: block;
  margin-bottom: 0.25rem;
}

.order__detail p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

.order__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.order__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

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

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

.contact__card {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

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

.contact__icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

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

.contact__card p,
.contact__card a {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact__card a:hover {
  color: var(--primary-color);
}

.contact__plus-code {
  font-size: 0.875rem;
  font-family: monospace;
  background: var(--bg-white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 0.5rem;
}

.contact__services,
.contact__payments {
  margin-top: var(--spacing-sm);
}

.contact__services li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.contact__payments li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.contact__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.contact__directions {
  position: absolute;
  bottom: var(--spacing-sm);
  right: var(--spacing-sm);
  z-index: 10;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-light);
  margin-bottom: var(--spacing-xs);
}

.footer__brand p {
  opacity: 0.9;
  margin-bottom: var(--spacing-sm);
}

.footer__rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--spacing-sm);
}

.footer__rating .stars {
  color: #ffd700;
}

.footer__rating span {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer h4 {
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-sm);
  color: var(--accent-gold);
}

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

.footer__links a {
  opacity: 0.9;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer__contact p {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer__contact a:hover {
  color: var(--primary-light);
}

.footer__order-btn {
  display: inline-block;
  background: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer__order-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.footer__bottom p {
  opacity: 0.8;
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  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--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* ===========================
   Lightbox
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

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

.lightbox__prev {
  left: var(--spacing-sm);
}

.lightbox__next {
  right: var(--spacing-sm);
}

#lightboxImage {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* ===========================
   Animations
   =========================== */
@keyframes fade-in {
  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);
  }
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 0;
  }
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.animate-fade-in:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-fade-in:nth-child(3) {
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-fade-in:nth-child(4) {
  animation-delay: 0.6s;
  opacity: 0;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
  .navbar__menu {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
  }

  .navbar__menu.active {
    right: 0;
  }

  .navbar__link {
    width: 100%;
    padding: var(--spacing-sm) 0;
  }

  .hero {
    min-height: 500px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

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

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

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

  .reviews__carousel {
    padding: 0 40px;
  }

  .reviews__arrow {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }

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

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

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

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-xs);
  }

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

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

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

  .review-card__ratings {
    grid-template-columns: 1fr;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}