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

:root {
  /* === Color Palette === */
  --cream: #FDF5E6;
  --cream-dark: #F5E6CC;
  --saffron: #FF9933;
  --saffron-dark: #E68A00;
  --saffron-light: #FFB366;
  --pistachio: #93C572;
  --pistachio-dark: #7CB342;
  --pistachio-light: #B8D9A5;
  --brown: #5C3A21;
  --brown-dark: #3E2723;
  --brown-light: #8B6F47;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960F;

  /* === Typography === */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-alt: 'Cormorant Garamond', serif;

  /* === Transitions === */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* === Shadows === */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.3);

  /* === Glassmorphism === */
  --glass-bg: rgba(255, 248, 240, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--brown-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--saffron));
  border-radius: 10px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag i {
  color: var(--brown-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
  border-color: var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.btn-submit {
  width: 100%;
  justify-content: center;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  position: relative;
}

.preloader-crown {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: crownPulse 1.5s ease-in-out infinite;
}

.preloader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--saffron);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

.preloader-text {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.4rem;
  letter-spacing: 3px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes crownPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(62, 39, 35, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-crown {
  font-size: 1.6rem;
  color: var(--gold);
  animation: crownPulse 2s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.logo-highlight {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--gold-light);
  font-weight: 400;
  text-align: right;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark) !important;
  font-weight: 600;
  padding: 10px 24px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-light), var(--saffron));
}

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

.nav-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease, transform 1.5s ease;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62, 39, 35, 0.85) 0%,
    rgba(62, 39, 35, 0.6) 40%,
    rgba(62, 39, 35, 0.3) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 800px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.slide-title i {
  color: var(--gold);
  font-size: 0.7em;
  margin-right: 6px;
}

.slide-subtitle {
  font-family: var(--font-alt);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 500;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

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

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  padding-bottom: 30px;
}

.about-img-main {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about-experience {
  position: absolute;
  top: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.experience-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1;
}

.experience-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding: 20px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 153, 51, 0.1));
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 20px;
}

.about-badge i {
  color: var(--gold);
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.about-desc {
  color: var(--brown-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--brown-light);
}

/* ===== OUR STORY ===== */
.story {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--pistachio));
  opacity: 0.3;
}

.story-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.story-year {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-dark);
  white-space: nowrap;
}

.story-icon {
  font-size: 2rem;
  color: var(--gold);
  margin: 20px 0 16px;
}

.story-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.story-content p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ===== MENU SECTION ===== */
.menu {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.menu-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(92, 58, 33, 0.1);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-light);
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab i {
  font-size: 1rem;
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--brown);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-color: transparent;
  color: var(--brown-dark);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.menu-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  border: 1px solid rgba(212, 175, 55, 0.15);
  flex-wrap: wrap;
}

.menu-info-bar i {
  color: var(--gold);
}

.bar-divider {
  color: rgba(92, 58, 33, 0.2);
  font-weight: 300;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.2);
}

.menu-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(62, 39, 35, 0.8);
  backdrop-filter: blur(5px);
  color: var(--gold-light);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.menu-info {
  padding: 18px;
}

.menu-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.menu-info p {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.menu-addon {
  font-size: 0.78rem;
  color: var(--pistachio-dark);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-addon span {
  background: rgba(147, 197, 114, 0.15);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--pistachio-dark);
}

.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.menu-order {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 153, 51, 0.1);
  transition: var(--transition);
}

.menu-order:hover {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
}

/* ===== GALLERY ===== */
.gallery {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(62, 39, 35, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-info i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.gallery-info h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.2rem;
}

/* ===== REVIEWS ===== */
.reviews {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.reviews-carousel {
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  min-height: 280px;
}

.review-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  transform: scale(0.9);
}

.review-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.review-text {
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--gold);
}

.review-author h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-dark);
}

.review-author span {
  font-size: 0.85rem;
  color: var(--brown-light);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.review-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(92, 58, 33, 0.15);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-arrow:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(92, 58, 33, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.review-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  color: var(--brown-dark);
  transition: var(--transition);
}

.faq-question i {
  transition: var(--transition);
  color: var(--gold);
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== OFFERS ===== */
.offers {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.offer-card {
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.offer-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.offer-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.offer-card strong {
  color: var(--gold-dark);
}

.offer-valid {
  font-size: 0.75rem;
  color: var(--pistachio-dark);
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--brown-light);
}

.contact-detail a:hover {
  color: var(--gold-dark);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(92, 58, 33, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(92, 58, 33, 0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  background: #fff;
}

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

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.map-placeholder > i {
  display: none;
}

/* ===== ORDER CTA ===== */
.order-cta {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-crown {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: crownPulse 2s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--pistachio-light);
}

.cta-note i {
  margin-right: 6px;
}

.cta-founder-line {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--pistachio-light);
  font-style: italic;
}

.cta-founder-line i {
  color: var(--gold);
  margin-right: 6px;
}

/* ===== CONTACT FOUNDER QUOTE ===== */
.contact-founder {
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-founder-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.contact-founder-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.2);
}

.founder-quote-icon {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 4px;
}

.founder-quote {
  font-family: var(--font-alt);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--brown);
  font-style: italic;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo i {
  color: var(--gold);
  margin-right: 6px;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact ul li i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom i {
  color: #e74c3c;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(62, 39, 35, 0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 50px rgba(37, 211, 102, 0.7); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--brown-dark);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(62, 39, 35, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-img-main {
    height: 350px;
  }

  .about-img-accent {
    width: 150px;
    height: 150px;
    right: -10px;
  }

  .about-experience {
    right: 0;
    padding: 14px;
  }

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

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

  .gallery-img {
    height: 220px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-timeline {
    grid-template-columns: 1fr;
  }

  .story-timeline::before {
    display: none;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  .slide-content {
    padding: 0 5%;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .contact-founder-card {
    padding: 24px 20px;
  }

  .founder-quote {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-img {
    height: 260px;
  }

  .about-img-main {
    height: 250px;
  }

  .about-img-accent {
    display: none;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .review-card {
    padding: 24px;
  }

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

  .logo-text {
    font-size: 1.2rem;
  }
}