.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 
    Background image with reduced opacity under brown overlay
  */
  background-color: #2a0f06;
  background-image:
    linear-gradient(rgba(42, 15, 6, 0.3), rgba(42, 15, 6, 0.3)),
    url('../../img/hero.jpg'),
    radial-gradient(ellipse 80% 70% at 30% 40%, rgba(120, 50, 15, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 60%, rgba(80, 25, 8, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(160, 80, 20, 0.3) 0%, transparent 50%);
  background-size: cover, cover, 100% 100%, 100% 100%, 100% 100%;
  background-position: center center, center center, 0 0, 0 0, 0 0;
  background-attachment: fixed, fixed, scroll, scroll, scroll;
}

/* Deep warm color grading overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 5, 2, 0.82) 0%,
    rgba(60, 20, 8, 0.65) 35%,
    rgba(80, 30, 10, 0.55) 60%,
    rgba(15, 5, 2, 0.80) 100%
  );
  z-index: 1;
}

/* Radial spotlight (center glow) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 45%,
    rgba(139, 80, 30, 0.18) 0%,
    transparent 70%
  );
  z-index: 1;
}

/* Fix background-attachment on mobile */
@media (max-width: 1024px), (hover: none) {
  .hero {
    background-attachment: scroll, scroll, scroll, scroll;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.ornament {
  width: 120px;
  height: 40px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease forwards;
  filter: drop-shadow(0 0 8px rgba(187, 148, 87, 0.4));
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-gold) !important;
  background: none !important;
  -webkit-text-fill-color: var(--color-gold) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  opacity: 1 !important;
  animation: none !important;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(187, 148, 87, 0.15);
  filter: drop-shadow(0 4px 24px rgba(187, 148, 87, 0.1));
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--color-cream);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.4s forwards;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.6s forwards;
}

/* Enhanced button styles for photo background */
.hero-cta .btn-outline {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
}

.hero-cta .btn-primary {
  box-shadow: 0 4px 24px rgba(111, 29, 27, 0.5);
}

.hero-cta .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(111, 29, 27, 0.7);
  transform: translateY(-2px);
}

.hero-login {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.8s forwards;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-text {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(187, 148, 87, 0.5);
}

.scroll-hint-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Bottom vignette fade */
.hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 14, 10, 0.6) 50%,
    var(--color-bg) 100%
  );
  pointer-events: none;
}

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

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.footer-link {
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.75;
}

.about {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 49%, rgba(67, 40, 24, 0.3) 49%, rgba(67, 40, 24, 0.3) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(67, 40, 24, 0.3) 49%, rgba(67, 40, 24, 0.3) 51%, transparent 51%);
  background-size: 100px 100px;
  opacity: 0.3;
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  position: relative;
}

.about-decoration {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(187, 148, 87, 0.08);
  font-weight: 700;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.about-text p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

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

.about-image {
  aspect-ratio: 1;
  background-color: #2a1510;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.about-image:nth-child(1) {
  transform: rotate(-3deg);
}

.about-image:nth-child(2) {
  transform: rotate(3deg);
}

.about-image:nth-child(3) {
  transform: rotate(2deg);
}

.about-image:nth-child(4) {
  transform: rotate(-2deg);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(111, 29, 27, 0.2);
  transition: all var(--transition);
}

.about-image:hover {
  transform: rotate(0deg) scale(1.05);
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(187, 148, 87, 0.3);
}

.about-image:hover::after {
  background: rgba(187, 148, 87, 0.3);
}

.how-it-works {
  background: var(--color-bg);
}

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

.step-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(187, 148, 87, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-crimson);
  color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
}

.step-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  filter: drop-shadow(0 2px 8px rgba(187, 148, 87, 0.3));
}

.step-title {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================
   CUSTOMER REVIEWS SECTION
   =================================== */

.reviews {
  background: var(--color-bg);
}

.reviews-grid {
  display: flex;
  gap: 1.25rem;
  margin-top: 3rem;
  overflow: hidden;
  scroll-behavior: smooth;
}

.review-card {
  background: var(--color-surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(230px, 26vw, 300px);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(187, 148, 87, 0.15);
  border-color: var(--color-gold);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-brown);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.review-rating {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: var(--color-gold);
  font-size: 1rem;
  line-height: 1;
}

.review-text {
  color: var(--color-text);
  line-height: 1.45;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-style: italic;
  position: relative;
  padding: 1rem;
  background: rgba(187, 148, 87, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-text::before,
.review-text::after {
  content: '"';
  color: var(--color-gold);
  font-size: 1.5rem;
  position: absolute;
  top: 0.25rem;
  font-family: serif;
}

.review-text::before {
  left: 1rem;
}

.review-text::after {
  right: 1rem;
}

.review-date {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  text-align: right;
  font-weight: 500;
}

@media (max-width: 768px) {
  .reviews-grid {
    gap: 0.9rem;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 1rem;
  }

  .review-header {
    gap: 0.75rem;
  }

  .review-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), filter var(--transition);
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.lightbox-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--color-cream);
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-cream);
  font-size: 1.7rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.05);
}

.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-gold);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  background: linear-gradient(135deg, #BB9457 0%, #FFE6A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-address {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-dark-brown);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-decoration {
    font-size: 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* ===================================
   MAP SECTION
   =================================== */

.map-section {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 49%, rgba(67, 40, 24, 0.3) 49%, rgba(67, 40, 24, 0.3) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(67, 40, 24, 0.3) 49%, rgba(67, 40, 24, 0.3) 51%, transparent 51%);
  background-size: 100px 100px;
  opacity: 0.3;
  z-index: 0;
}

.map-container {
  position: relative;
  z-index: 1;
  width: 700px;
  height: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
}

/* Micro animation / polish */
:root {
  scroll-behavior: smooth;
}

.btn,
.theme-switch,
.review-card,
.menu-item,
.about-image,
.map-container {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.theme-switch:hover,
.review-card:hover,
.menu-item:hover,
.about-image:hover {
  transform: translateY(-2px);
}

.section-title {
  animation: slowPulse 6s ease-in-out infinite;
}

@keyframes slowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(211, 176, 108, 0.35); }
  50% { text-shadow: 0 0 26px rgba(211, 176, 108, 0.5); }
}

.hero-title {
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.theme-switch {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 999;
}

.theme-toggle-pulse {
  animation: themePulse 1.5s ease infinite;
}

@keyframes themePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (max-width: 768px) {
  .map-container {
    width: 100%;
    height: 400px;
    margin: 0 1rem;
  }
}
