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

:root {
  --color-brown: #a67b5b;
  --color-light-brown: #d4b5a0;
  --color-dark-brown: #6b4423;
  --color-red: #c44536;
  --color-white: #fafafa;
  --color-cream: #f5f0eb;
  --color-charcoal: #2a2a2a;
  --color-black: #1a1a1a;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-white);
  color: var(--color-charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(166, 123, 91, 0.08);
}

nav.scrolled {
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(166, 123, 91, 0.12);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Jika logo scroll lebih kecil */
nav.scrolled .logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-red);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-dark-brown);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: 8rem 5% 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}

/* Hero Background Wrapper */
.hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

@media (max-width: 768px) {
  .hero::before {
    background-image: url('');
    background-attachment: scroll;
    background-position: center top;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero::before {
    background-image: url('');
  }
}

@media (max-width: 480px) {
  .hero::before {
    background-image: url('');
    background-position: center;
    background-size: cover;
  }
}

/* Hero Overlay */
.hero::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(250, 250, 250, 0.25) 0%,
    rgba(245, 240, 235, 0.15) 50%,
    rgba(250, 250, 250, 0.2) 100%
  );
  backdrop-filter: blur(1px);
  z-index: -1;
}

/* Mobile - Even More Transparent */
@media (max-width: 768px) {
  .hero::after {
    background: linear-gradient(
      135deg,
      rgba(250, 250, 250, 0.12) 0%,
      rgba(245, 240, 235, 0.08) 50%,
      rgba(250, 250, 250, 0.1) 100%
    );
    backdrop-filter: blur(0.5px);
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero::after {
    background: linear-gradient(
      135deg,
      rgba(250, 250, 250, 0.18) 0%,
      rgba(245, 240, 235, 0.12) 50%,
      rgba(250, 250, 250, 0.15) 100%
    );
    backdrop-filter: blur(0.8px);
  }
}

.hero-content {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--color-brown);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: var(--color-dark-brown);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--color-brown);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-red);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-brown);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-red);
  color: white;
  box-shadow: 0 8px 25px rgba(196, 69, 54, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(196, 69, 54, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark-brown);
  border: 2px solid var(--color-brown);
}

.btn-secondary:hover {
  background: var(--color-brown);
  color: white;
  border-color: var(--color-brown);
  transform: translateY(-2px);
}

/* Hero Image Container */
/* Hero Image Container */
.hero-image {
  position: relative;
  height: 600px;
  z-index: 1;
}

/* Hero Image Main (Card Besar) */
.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background: var(--color-cream);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(166, 123, 91, 0.15);
  overflow: hidden;
}

.hero-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* RESPONSIVE - Tablet */
@media (max-width: 1024px) {
  .hero-image {
    height: 450px;
  }

  .hero-image-main {
    width: 90%;
  }
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
  .hero-image {
    position: relative;
    height: 350px;
    width: 100%;
    margin: 2rem 0;
  }

  .hero-image-main {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }

  .hero-photo-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 280px;
    margin: 1.5rem 0;
  }

  .hero-image-main {
    border-radius: 12px;
  }
}

/* Hero Image Accent (Card Kecil) */
.hero-image-accent {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 45%;
  height: 250px;
  background: var(--color-brown);
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(196, 69, 54, 0.25);
  z-index: 2;
  overflow: hidden;
}

/* .hero-photo-accent {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
} */
.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s steps(45, end) 1s forwards;
  border-right: non;
}

.typing-cursor {
  display: none;
  width: 2px;
  height: 1.8rem;
  background: var(--color-red);
  margin-left: 4px;
  animation: blink 0.7s infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* Menu Section */
.menu-section {
  padding: 8rem 5%;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-cream) 100%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-brown);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;

  /* Gradient Effect */
  background: linear-gradient(
    135deg,
    var(--color-black) 0%,
    var(--color-charcoal) 30%,
    var(--color-dark-brown) 60%,
    rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.gallery-section .section-title {
  background: linear-gradient(
    135deg,
    /* rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 40%, */
      rgba(212, 181, 160, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive - Adjust size untuk mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===================================================
   MENU SECTION - POLAROID STYLE
   =================================================== */

.menu-section {
  padding: 8rem 5%;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-cream) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
.menu-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(166, 123, 91, 0.05),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Section Header */
.menu-section .section-header {
  position: relative;
  z-index: 1;
}

/* ===================================================
   MENU GRID - POLAROID MASONRY
   =================================================== */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 5rem auto 0;
  position: relative;
  z-index: 1;
}

/* ===================================================
   POLAROID MENU CARD
   =================================================== */

.menu-card {
  position: relative;
  background: white;
  padding: 15px;
  padding-bottom: 70px; /* Space untuk caption nama menu */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  overflow: visible;
}

/* Random Rotation untuk Tiap Card */
.menu-card:nth-child(1) {
  transform: rotate(-3deg) translateY(10px);
}

.menu-card:nth-child(2) {
  transform: rotate(4deg) translateY(-15px);
}

.menu-card:nth-child(3) {
  transform: rotate(-2deg) translateY(5px);
}

.menu-card:nth-child(4) {
  transform: rotate(3deg) translateY(-10px);
}

.menu-card:nth-child(5) {
  transform: rotate(-4deg) translateY(15px);
}

.menu-card:nth-child(6) {
  transform: rotate(2deg) translateY(-5px);
}

/* Hover Effect */
.menu-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 30px 70px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* ===================================================
   MENU PHOTO (SQUARE RATIO)
   =================================================== */

.menu-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-cream);
}

.menu-photo {
  width: 100%;
  aspect-ratio: 1 / 1; /* Square untuk konsistensi */
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.menu-card:hover .menu-photo {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}

/* ===================================================
   MENU OVERLAY (Caption di Bawah - Polaroid Style)
   =================================================== */

.menu-overlay {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.menu-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark-brown);
  margin: 0 0 0.25rem 0;
  font-style: italic;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.menu-card:hover .menu-name {
  color: var(--color-red);
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin: 0;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.menu-card:hover .menu-price {
  color: var(--color-red);
}

/* ===================================================
   DECORATIVE TAPE EFFECT (Optional)
   =================================================== */

.menu-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.menu-card:hover::before {
  opacity: 1;
}

/* ===================================================
   STAGGERED ANIMATION
   =================================================== */

.menu-card {
  opacity: 0;
  animation: fadeInPolaroid 0.6s ease forwards;
}

.menu-card:nth-child(1) {
  animation-delay: 0.1s;
}
.menu-card:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-card:nth-child(3) {
  animation-delay: 0.3s;
}
.menu-card:nth-child(4) {
  animation-delay: 0.4s;
}
.menu-card:nth-child(5) {
  animation-delay: 0.5s;
}
.menu-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInPolaroid {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(0deg) scale(0.95);
  }
  to {
    opacity: 1;
  }
}

/* ===================================================
   RESPONSIVE - DESKTOP LARGE (1400px+)
   =================================================== */

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

/* ===================================================
   RESPONSIVE - TABLET (1024px)
   =================================================== */

@media (max-width: 1024px) {
  .menu-section {
    padding: 6rem 5%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
  }

  .menu-card {
    padding: 12px;
    padding-bottom: 60px;
  }

  .menu-name {
    font-size: 1.2rem;
  }

  .menu-price {
    font-size: 1rem;
  }

  .menu-overlay {
    bottom: 12px;
    padding: 0 15px;
  }
}

/* ===================================================
   RESPONSIVE - MOBILE (768px)
   =================================================== */

@media (max-width: 768px) {
  .menu-section {
    padding: 5rem 5%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .menu-card {
    padding: 10px;
    padding-bottom: 55px;
  }

  /* Simplified rotation untuk mobile */
  .menu-card:nth-child(odd) {
    transform: rotate(-3deg);
  }

  .menu-card:nth-child(even) {
    transform: rotate(3deg);
  }

  .menu-card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.03);
  }

  .menu-name {
    font-size: 1.1rem;
  }

  .menu-price {
    font-size: 0.95rem;
  }

  .menu-overlay {
    bottom: 10px;
    padding: 0 12px;
  }
}

/* ===================================================
   RESPONSIVE - SMALL MOBILE (480px)
   =================================================== */

@media (max-width: 480px) {
  .menu-section {
    padding: 4rem 4%;
  }

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

  .menu-card {
    max-width: 350px;
    margin: 0 auto;
    padding: 12px;
    padding-bottom: 60px;
  }

  /* Alternating rotation */
  .menu-card:nth-child(1),
  .menu-card:nth-child(3),
  .menu-card:nth-child(5) {
    transform: rotate(-4deg);
  }

  .menu-card:nth-child(2),
  .menu-card:nth-child(4),
  .menu-card:nth-child(6) {
    transform: rotate(4deg);
  }

  .menu-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02);
  }

  .menu-name {
    font-size: 1.2rem;
  }

  .menu-price {
    font-size: 1rem;
  }

  .menu-overlay {
    bottom: 12px;
  }
}

/* ===================================================
   EXTRA SMALL DEVICES (360px)
   =================================================== */

@media (max-width: 360px) {
  .menu-grid {
    gap: 1.5rem;
  }

  .menu-card {
    max-width: 300px;
    padding: 10px;
    padding-bottom: 55px;
  }

  .menu-name {
    font-size: 1.1rem;
  }

  .menu-price {
    font-size: 0.95rem;
  }
}

/* ===================================================
   FIX UNTUK SAFARI & iOS
   =================================================== */

.menu-photo {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.menu-card {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* ===================================================
   HOVER INTERACTION ENHANCEMENT
   =================================================== */

/* Subtle shine effect on hover */
.menu-card::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 2px;
}

.menu-card:hover::after {
  opacity: 1;
}

/* ===================================================
   ACCESSIBILITY - FOCUS STATES
   =================================================== */

.menu-card:focus {
  outline: 3px solid var(--color-brown);
  outline-offset: 5px;
}

.menu-card:focus-visible {
  transform: rotate(0deg) translateY(-10px) scale(1.03);
}

/* Gallery Section */
.gallery-section {
  padding: 8rem 5%;
  background: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--color-cream);
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(166, 123, 91, 0.7),
    rgba(196, 69, 54, 0.7)
  ); */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(166, 123, 91, 0.2);
  z-index: 2;
}

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

/* Customer reviews Section */
/* ===================================================
   CUSTOMER GALLERY SECTION - POLAROID STYLE
   =================================================== */

.reviews-section {
  padding: 8rem 5%;
  background: linear-gradient(180deg, #d4a574 0%, #c89968 50%, #b8855a 100%);
  position: relative;
  overflow: hidden;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header - White text for dark background */
.reviews-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.reviews-section .section-title {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-section .section-description {
  color: rgba(255, 255, 255, 0.85);
}

/* ===================================================
   POLAROID GALLERY GRID
   =================================================== */

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

/* Polaroid Card Base */
.customer-card {
  position: relative;
  background: white;
  padding: 15px;
  padding-bottom: 65px; /* Extra space untuk caption */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  overflow: visible;
}

/* Photo Wrapper - FIXED ASPECT RATIO */
.customer-card {
  display: flex;
  flex-direction: column;
}

.customer-photo {
  width: 100%;
  aspect-ratio: 1 / 1; /* PENTING: Maintain square ratio */
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
  border-radius: 1px;
}

/* Polaroid Rotation Effect */
.customer-card:nth-child(1) {
  transform: rotate(-4deg);
}

.customer-card:nth-child(2) {
  transform: rotate(3deg) translateY(-20px);
}

.customer-card:nth-child(3) {
  transform: rotate(-2deg) translateY(10px);
}

.customer-card:nth-child(4) {
  transform: rotate(2deg) translateY(-10px);
}

.customer-card:nth-child(5) {
  transform: rotate(-3deg);
}

.customer-card:nth-child(6) {
  transform: rotate(4deg) translateY(15px);
}

/* Hover Effect */
.customer-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.customer-card:hover .customer-photo {
  filter: brightness(1.05) contrast(1.05);
}

/* Overlay - Hidden (tidak dipakai untuk polaroid style) */
.customer-overlay {
  display: none;
}

/* Caption di Bawah Foto (Polaroid Style) */
.customer-info {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  padding: 0 20px;
  text-align: center;
}

.customer-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ===================================================
   RATING SHOWCASE
   =================================================== */

.rating-showcase {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.rating-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
}

.rating-stars {
  font-size: 1.8rem;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.rating-count {
  color: var(--color-brown);
  font-size: 1rem;
}

.rating-text {
  color: var(--color-charcoal);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
}

/* ===================================================
   RESPONSIVE - TABLET (1024px)
   =================================================== */

@media (max-width: 1024px) {
  .customer-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }

  .customer-card {
    padding: 12px;
    padding-bottom: 55px;
  }

  .customer-caption {
    font-size: 1rem;
  }

  .rating-showcase {
    padding: 2.5rem;
  }

  .rating-number {
    font-size: 3.5rem;
  }
}

/* ===================================================
   RESPONSIVE - MOBILE (768px)
   =================================================== */

@media (max-width: 768px) {
  .reviews-section {
    padding: 6rem 5%;
  }

  .customer-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
  }

  .customer-card {
    padding: 12px;
    padding-bottom: 50px;
  }

  /* Simplified rotation untuk mobile */
  .customer-card:nth-child(odd) {
    transform: rotate(-3deg);
  }

  .customer-card:nth-child(even) {
    transform: rotate(3deg);
  }

  .customer-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
  }

  .customer-caption {
    font-size: 0.9rem;
  }

  .customer-info {
    bottom: 12px;
    padding: 0 15px;
  }

  .rating-showcase {
    padding: 2rem 1.5rem;
  }

  .rating-number {
    font-size: 3rem;
  }

  .rating-display {
    gap: 1.5rem;
  }

  .rating-stars {
    font-size: 1.6rem;
  }

  .rating-text {
    font-size: 1rem;
  }
}

/* ===================================================
   RESPONSIVE - SMALL MOBILE (480px)
   =================================================== */

@media (max-width: 480px) {
  .reviews-section {
    padding: 4rem 4%;
  }

  .customer-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }

  .customer-card {
    max-width: 320px;
    margin: 0 auto;
    padding: 10px;
    padding-bottom: 45px;
  }

  /* Alternating rotation */
  .customer-card:nth-child(1),
  .customer-card:nth-child(3),
  .customer-card:nth-child(5) {
    transform: rotate(-4deg);
  }

  .customer-card:nth-child(2),
  .customer-card:nth-child(4),
  .customer-card:nth-child(6) {
    transform: rotate(4deg);
  }

  .customer-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02);
  }

  .customer-caption {
    font-size: 0.85rem;
  }

  .customer-info {
    bottom: 10px;
    padding: 0 12px;
  }

  .rating-showcase {
    padding: 1.5rem;
  }

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

  .rating-number {
    font-size: 2.5rem;
  }

  .rating-stars {
    font-size: 1.4rem;
  }

  .rating-count {
    font-size: 0.9rem;
  }

  .rating-text {
    font-size: 0.95rem;
  }
}

/* ===================================================
   EXTRA SMALL DEVICES (360px)
   =================================================== */

@media (max-width: 360px) {
  .customer-gallery {
    gap: 1.5rem;
  }

  .customer-card {
    max-width: 280px;
    padding: 8px;
    padding-bottom: 40px;
  }

  .customer-caption {
    font-size: 0.8rem;
  }

  .rating-showcase {
    padding: 1.2rem;
  }

  .rating-number {
    font-size: 2rem;
  }
}

/* ===================================================
   ANIMATION - Fade In on Scroll
   =================================================== */

.customer-card {
  opacity: 0;
  animation: fadeInPolaroid 0.6s ease forwards;
}

.customer-card:nth-child(1) {
  animation-delay: 0.1s;
}
.customer-card:nth-child(2) {
  animation-delay: 0.2s;
}
.customer-card:nth-child(3) {
  animation-delay: 0.3s;
}
.customer-card:nth-child(4) {
  animation-delay: 0.4s;
}
.customer-card:nth-child(5) {
  animation-delay: 0.5s;
}
.customer-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInPolaroid {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(0deg) scale(0.95);
  }
  to {
    opacity: 1;
  }
}

/* Fix untuk Safari & iOS */
.customer-photo {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ===================================================
   CONTACT SECTION - WITH GOOGLE MAPS
   =================================================== */

.contact-section {
  padding: 8rem 5%;
  background: linear-gradient(
    135deg,
    var(--color-dark-brown),
    var(--color-brown)
  );
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Pattern */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ===================================================
   CONTACT INFO (Left Side)
   =================================================== */

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: white;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.info-icon {
  font-size: 1.8rem;
  color: var(--color-red);
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
}

.info-content p {
  opacity: 0.9;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-content a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.info-content a:hover {
  color: var(--color-red);
  text-decoration: underline;
}

/* Get Directions Button */
.btn-directions {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--color-red);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 69, 54, 0.3);
}

.btn-directions:hover {
  background: var(--color-dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 69, 54, 0.4);
}

/* Operating Hours Grid */
.hours-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.hours-item:last-child {
  border-bottom: none;
}

/* ===================================================
   GOOGLE MAPS (Right Side) - SQUARE SHAPE
   =================================================== */

.contact-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* TAMBAH INI - Bikin persegi */
  max-width: 550px; /* TAMBAH INI - Limit max size */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  align-self: center;
  margin: 0 auto; /* Center horizontally */
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Map Info Card (Floating) */
.map-info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  max-width: 250px;
  animation: fadeInDown 0.6s ease;
}

.map-info-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--color-dark-brown);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.map-info-card p {
  color: var(--color-charcoal);
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.85;
}

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

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center; /* UBAH dari 'start' jadi 'center' */
  position: relative;
  z-index: 1;
}

/* ===================================================
   RESERVATION CARD (Bottom - Full Width)
   =================================================== */

.reservation-card-wrapper {
  max-width: 1400px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 1;
}

.reservation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.reservation-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.reservation-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
  color: white;
}

.btn-reservation {
  width: 100%;
  padding: 1.25rem;
  background: var(--color-red);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(196, 69, 54, 0.4);
}

.btn-reservation:hover {
  background: white;
  color: var(--color-dark-brown);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* ===================================================
   RESERVATION MODAL
   =================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(166, 123, 91, 0.3);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream);
  border: none;
  font-size: 1.8rem;
  color: var(--color-dark-brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

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

.modal-header {
  background: linear-gradient(
    135deg,
    var(--color-dark-brown),
    var(--color-brown)
  );
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  border-radius: 24px 24px 0 0;
  color: white;
}

.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

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

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  opacity: 0.9;
  font-size: 1rem;
}

.reservation-form {
  padding: 2.5rem;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-dark-brown);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 2px solid var(--color-cream);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-brown);
  box-shadow: 0 0 0 4px rgba(166, 123, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-brown);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit-reservation {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--color-red);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(196, 69, 54, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-submit-reservation:hover {
  background: var(--color-dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(196, 69, 54, 0.4);
}

.btn-submit-reservation:hover .btn-icon {
  transform: translateX(5px);
}

.btn-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-brown);
  font-style: italic;
}

/* ===================================================
   RESPONSIVE - TABLET (1024px)
   =================================================== */

@media (max-width: 1024px) {
  .contact-container {
    gap: 3rem;
    align-items: center;
  }

  .contact-info h2 {
    font-size: 3rem;
  }

  .contact-map {
    max-width: 450px; /* UBAH - Lebih kecil di tablet */
    aspect-ratio: 1 / 1; /* TETAP persegi */
  }

  .map-info-card {
    top: 15px;
    left: 15px;
    padding: 1rem 1.2rem;
  }

  .map-info-card h4 {
    font-size: 1.2rem;
  }
}

/* ===================================================
   RESPONSIVE - MOBILE (768px)
   =================================================== */

@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 5%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
  }

  .contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .info-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .info-icon {
    font-size: 1.5rem;
    min-width: 35px;
  }

  .info-content h3 {
    font-size: 1.1rem;
  }

  .info-content p {
    font-size: 0.95rem;
  }

  /* Map PERSEGI di mobile */
  .contact-map {
    aspect-ratio: 1 / 1; /* TETAP persegi */
    max-width: 100%; /* Full width di mobile */
    height: auto; /* Auto height mengikuti aspect ratio */
    order: 2;
  }

  .contact-info {
    order: 1;
  }

  .map-info-card {
    top: 15px;
    left: 15px;
    max-width: 220px;
    padding: 1rem 1.2rem;
  }

  .map-info-card h4 {
    font-size: 1.1rem;
  }

  .map-info-card p {
    font-size: 0.85rem;
  }

  .reservation-card-wrapper {
    margin-top: 3rem;
  }

  .reservation-card {
    padding: 2rem;
  }

  .reservation-card h3 {
    font-size: 1.8rem;
  }

  /* Modal Responsive */
  .modal-overlay {
    padding: 1rem;
  }

  .modal-header {
    padding: 2.5rem 1.5rem 2rem;
  }

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

  .reservation-form {
    padding: 2rem 1.5rem;
  }

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

  .modal-icon {
    font-size: 3rem;
  }
}

/* ===================================================
   RESPONSIVE - SMALL MOBILE (480px)
   =================================================== */

@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 4%;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .info-item {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
  }

  .info-icon {
    font-size: 1.3rem;
  }

  .contact-map {
    aspect-ratio: 1 / 1; /* TETAP persegi */
    max-width: 100%;
    border-radius: 12px;
  }

  .map-container iframe {
    border-radius: 12px;
  }

  .map-info-card {
    position: static; /* UBAH jadi static di mobile kecil */
    margin-top: 1rem;
    max-width: 100%;
  }

  .reservation-card {
    padding: 1.5rem;
  }

  .reservation-card h3 {
    font-size: 1.6rem;
  }

  .reservation-card p {
    font-size: 0.95rem;
  }

  .btn-directions {
    width: 100%;
    text-align: center;
  }

  .btn-reservation {
    padding: 1.1rem;
    font-size: 1rem;
  }
}

/* ===================================================
   EXTRA SMALL DEVICES (360px)
   =================================================== */

@media (max-width: 360px) {
  .contact-map {
    aspect-ratio: 1 / 1; /* TETAP persegi */
    border-radius: 10px;
  }

  .hours-item {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
  }

  .info-item {
    padding: 0.9rem;
  }

  .reservation-card {
    padding: 1.2rem;
  }
}

/* Footer */
footer {
  background: var(--color-black);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-light-brown);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(166, 123, 91, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-brown);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-red);
  color: white;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-light-brown);
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    height: 500px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: var(--color-white);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

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

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

  .menu-card:nth-child(2) {
    transform: translateY(0);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===================================================
   SERVICES SECTION - MODERN CARD DESIGN
   =================================================== */

.services-section {
  padding: 8rem 5%;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-cream) 50%,
    var(--color-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(166, 123, 91, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 69, 54, 0.06), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(166, 123, 91, 0.15);
  box-shadow: 0 8px 32px rgba(166, 123, 91, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(166, 123, 91, 0.05),
    rgba(196, 69, 54, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.service-card:hover::before {
  opacity: 1;
}

/* Hover State */
.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--color-brown);
  box-shadow: 0 20px 60px rgba(166, 123, 91, 0.2), 0 0 0 1px var(--color-brown),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.95);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: grayscale(0.3);
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(166, 123, 91, 0.1),
    rgba(196, 69, 54, 0.1)
  );
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-icon::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  filter: grayscale(0);
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark-brown);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-title {
  color: var(--color-red);
}

.service-description {
  color: var(--color-charcoal);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-description {
  opacity: 1;
  color: var(--color-black);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(196, 69, 54, 0.15), transparent);
  border-radius: 0 24px 0 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.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;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem 1.8rem;
  }

  .service-icon {
    font-size: 3.5rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 6rem 5%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .service-icon::before {
    width: 80px;
    height: 80px;
  }

  .service-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .service-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 4rem 4%;
  }

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

  .service-card {
    padding: 2.5rem 2rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-icon {
    font-size: 3.5rem;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-description {
    font-size: 0.95rem;
  }
}

/* =========================================
   EVENT SECTION
========================================== */

.event-section {
  padding: 8rem 5%;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    rgba(212, 181, 160, 0.12) 100%
  );
  overflow: hidden;
}

/* =========================================
   CAROUSEL CONTAINER
========================================== */

.event-carousel {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto 0;
  overflow: hidden;
  border-radius: 20px;
}

.event-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   SLIDE
========================================== */

.event-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.event-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.event-slide:hover .event-img {
  transform: scale(1.05);
}

/* =========================================
   OVERLAY
========================================== */

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: white;
}

.event-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.event-overlay p {
  font-size: 1rem;
  max-width: 500px;
  opacity: 0.9;
}

/* =========================================
   NAVIGATION BUTTONS
========================================== */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--color-red);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* =========================================
   DOTS
========================================== */

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots span.active {
  background: var(--color-red);
  transform: scale(1.2);
}

/* =========================================
   LARGE DESKTOP (1440px+)
========================================== */
@media (min-width: 1440px) {
  .event-img {
    height: 650px;
  }
}

/* =========================================
   LAPTOP (1024px)
========================================== */
@media (max-width: 1024px) {
  .event-img {
    height: 480px;
  }

  .event-overlay h3 {
    font-size: 1.8rem;
  }
}

/* =========================================
   TABLET (768px)
========================================== */
@media (max-width: 768px) {
  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.5rem 0.9rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.5);
  }

  .prev {
    left: 8px;
  }

  .next {
    right: 8px;
  }
}

/* =========================================
   MOBILE (480px)
========================================== */
@media (max-width: 480px) {
  .event-img {
    height: 300px;
  }

  .event-overlay {
    padding: 1.5rem;
  }

  .event-overlay h3 {
    font-size: 1.3rem;
  }

  .event-overlay p {
    font-size: 0.85rem;
  }

  .carousel-btn {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }

  .carousel-dots {
    bottom: 12px;
  }
}

/* =========================================
   EXTRA SMALL DEVICES (360px)
========================================== */
@media (max-width: 768px) {
  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.5rem 0.9rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.5);
  }

  .prev {
    left: 8px;
  }

  .next {
    right: 8px;
  }
}
