/* ════════════════════════════════════════════════════════════════
   NATESHWARAM LAWNS — Premium Wedding & Event Venue CSS
   Design: Luxury Gold & Deep Maroon with elegant typography
════════════════════════════════════════════════════════════════ */

/* ── RESET & ROOT VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9962b;
  --gold-light: #e8b84b;
  --gold-pale: #f5e6c0;
  --maroon: #6b1c2e;
  --maroon-deep: #4a1020;
  --maroon-light: #8a2d44;
  --cream: #faf6ef;
  --white: #ffffff;
  --dark: #1a0d10;
  --text-primary: #2d1a22;
  --text-secondary: #6b5560;
  --text-light: #a08090;
  --border: rgba(201, 150, 43, 0.2);
  --shadow-sm: 0 2px 12px rgba(107, 28, 46, 0.08);
  --shadow-md: 0 8px 32px rgba(107, 28, 46, 0.14);
  --shadow-lg: 0 20px 60px rgba(107, 28, 46, 0.2);
  --shadow-gold: 0 4px 24px rgba(201, 150, 43, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 8px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ══════════════════════════════════ NAVBAR ══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(26, 13, 16, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(26, 13, 16, 0.6);
  padding: 3px;
  filter: drop-shadow(0 0 10px rgba(201, 150, 43, 0.5));
  transition: var(--transition);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 16px rgba(201, 150, 43, 0.8));
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: #ffd75e;
  letter-spacing: 1px;
  text-shadow:
    0 0 7px rgba(255, 215, 94, 0.9),
    0 0 14px rgba(255, 200, 50, 0.7),
    0 0 28px rgba(255, 180, 30, 0.5),
    0 0 56px rgba(232, 160, 20, 0.35),
    0 0 80px rgba(201, 150, 43, 0.2);
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 7px rgba(255, 215, 94, 0.9),
      0 0 14px rgba(255, 200, 50, 0.7),
      0 0 28px rgba(255, 180, 30, 0.5),
      0 0 56px rgba(232, 160, 20, 0.35),
      0 0 80px rgba(201, 150, 43, 0.2);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 225, 100, 1),
      0 0 20px rgba(255, 210, 60, 0.85),
      0 0 40px rgba(255, 190, 40, 0.65),
      0 0 70px rgba(232, 170, 30, 0.45),
      0 0 100px rgba(201, 150, 43, 0.3);
  }
}

.logo-sub {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--gold-pale);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(201, 150, 43, 0.1);
}

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 150, 43, 0.3);
  border-radius: 50px;
  padding: 3px;
  margin-left: 8px;
  flex-shrink: 0;
}

.lang-btn {
  padding: 5px 12px;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.lang-btn:hover {
  color: var(--gold-light);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(201, 150, 43, 0.35);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.4px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 150, 43, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════ HERO ══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.06);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 8, 0.35) 0%,
    rgba(10, 5, 8, 0.55) 50%,
    rgba(10, 5, 8, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 860px;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 600;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards 0.5s;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: #5ce181; /* Vibrant lawn green */
}

.hero-logo-box {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-center-logo {
  position: absolute;
  top: 50%;
  right: -55px; /* Offset it slightly to the right of "Lawns" */
  transform: translateY(-50%) rotate(5deg);
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: rgba(26, 13, 16, 0.4);
  padding: 8px;
  filter: drop-shadow(0 0 20px rgba(201, 150, 43, 0.6));
  animation: fadeUp 0.9s ease forwards 0.6s, glowPulseLogo 4s ease-in-out infinite;
  opacity: 0;
  z-index: -1;
}

@keyframes glowPulseLogo {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(201, 150, 43, 0.5)); transform: translateY(-50%) rotate(5deg) scale(1); }
  50% { filter: drop-shadow(0 0 35px rgba(201, 150, 43, 0.95)); transform: translateY(-50%) rotate(5deg) scale(1.05); }
}

@media (max-width: 768px) {
  .hero-center-logo {
    width: 90px;
    height: 90px;
    right: -25px;
    border-width: 2px;
  }
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 0.7s;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg);
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

/* ══════════════════════════════════ BUTTONS ══════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201, 150, 43, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ══════════════════════════════════ STATS STRIP ══════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::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='%23c9962b' fill-opacity='0.06'%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");
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 150, 43, 0.3);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title em {
  color: var(--maroon);
  font-style: italic;
}

/* ══════════════════════════════════ ABOUT ══════════════════════════════════ */
.about {
  background: var(--cream);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  text-align: center;
  color: var(--dark);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.about-content {
  padding-left: 20px;
}

.about-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-desc strong {
  color: var(--maroon);
  font-weight: 600;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.highlight-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.highlight-icon {
  font-size: 18px;
}

/* ══════════════════════════════════ FEATURES / WHY US ══════════════════════════════════ */
.why-us {
  background: var(--white);
}

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

.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  background: var(--white);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(107, 28, 46, 0.15));
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════ GALLERY ══════════════════════════════════ */
.gallery {
  background: var(--dark);
  color: var(--white);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-label {
  color: var(--gold-light);
}

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

.tab-btn {
  background: transparent;
  border: 1px solid rgba(201, 150, 43, 0.3);
  color: rgba(255,255,255,0.6);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 8, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════ TESTIMONIALS ══════════════════════════════════ */
.testimonials {
  background: linear-gradient(150deg, var(--maroon-deep) 0%, var(--maroon) 60%, var(--maroon-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '❝';
  position: absolute;
  top: -40px;
  left: 5%;
  font-size: 300px;
  color: rgba(201, 150, 43, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-label {
  color: var(--gold-light);
}

.testimonial-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 150, 43, 0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201, 150, 43, 0.15);
}

.testi-stars {
  color: var(--gold-light);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 12px;
  color: var(--gold-pale);
}

.testi-controls {
  display: none;
}

/* ══════════════════════════════════ EVENTS ══════════════════════════════════ */
.events {
  background: var(--cream);
}

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

.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,8,0.85) 0%, rgba(10,5,8,0.25) 60%, transparent 100%);
  transition: var(--transition);
}

.event-card:hover .event-overlay {
  background: linear-gradient(to top, rgba(107,28,46,0.92) 0%, rgba(107,28,46,0.5) 70%, rgba(107,28,46,0.15) 100%);
}

.event-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: var(--white);
  transform: translateY(8px);
  transition: var(--transition);
}

.event-card:hover .event-content {
  transform: translateY(0);
}

.event-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.event-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.event-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  transition-delay: 0.05s;
}

.event-card:hover .event-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════ BOOKING ══════════════════════════════════ */
.booking {
  background: linear-gradient(160deg, #1a0d10 0%, #2a1218 40%, #1a0d10 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking::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='%23c9962b' fill-opacity='0.04'%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");
}

.booking .section-title {
  color: var(--white);
}

.booking .section-label {
  color: var(--gold-light);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

/* ── Calendar Card ── */
.calendar-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 150, 43, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cal-month-year {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.cal-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 150, 43, 0.3);
  color: var(--gold-light);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.cal-nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.cal-day:hover:not(.disabled):not(.booked):not(.empty) {
  background: rgba(201, 150, 43, 0.15);
  border-color: var(--gold);
  transform: scale(1.08);
}

.cal-day.today {
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 700;
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--dark) !important;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 150, 43, 0.45);
  transform: scale(1.1);
}

.cal-day.booked {
  background: rgba(220, 53, 69, 0.2);
  color: rgba(255, 100, 100, 0.7);
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: rgba(220, 53, 69, 0.3);
}

.cal-day.disabled {
  color: rgba(255, 255, 255, 0.15);
  cursor: not-allowed;
}

.cal-day.empty {
  background: transparent;
  cursor: default;
}

.cal-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.available {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.legend-dot.booked {
  background: rgba(220, 53, 69, 0.3);
  border: 1.5px solid rgba(220, 53, 69, 0.5);
}

.legend-dot.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
}

.cal-selected-info {
  text-align: center;
  font-size: 14px;
  color: var(--gold-pale);
  margin-top: 16px;
  font-weight: 500;
  min-height: 22px;
}

/* ── Function Cards ── */
.booking-step-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.function-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.function-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(201, 150, 43, 0.2);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.function-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 150, 43, 0.1), rgba(201, 150, 43, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.function-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 150, 43, 0.15);
}

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

.function-card.active {
  background: linear-gradient(135deg, rgba(201, 150, 43, 0.2), rgba(201, 150, 43, 0.08));
  border-color: var(--gold-light);
  box-shadow: 0 0 24px rgba(201, 150, 43, 0.3), inset 0 0 24px rgba(201, 150, 43, 0.08);
  transform: translateY(-4px) scale(1.02);
}

.function-card.active::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.func-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.func-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: block;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* ── Pricing Box ── */
.pricing-box {
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease forwards;
}

.price-card {
  background: linear-gradient(135deg, rgba(107, 28, 46, 0.25), rgba(201, 150, 43, 0.1));
  border: 1.5px solid rgba(201, 150, 43, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 43, 0.15), transparent 70%);
}

.price-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.price-func-icon {
  font-size: 36px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 150, 43, 0.12);
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.price-header h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.price-duration {
  font-size: 13px;
  color: var(--gold-pale);
  font-weight: 500;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(201, 150, 43, 0.2);
  border-bottom: 1px solid rgba(201, 150, 43, 0.2);
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold-light);
  font-weight: 600;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 1px;
}

.price-includes {
  list-style: none;
  margin-bottom: 16px;
}

.price-includes li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.price-selected-date {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(201, 150, 43, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 150, 43, 0.2);
  font-size: 14px;
  color: var(--gold-pale);
  font-weight: 500;
  text-align: center;
}

/* ── Booking Summary & Form ── */
.booking-confirm-wrap {
  animation: fadeUp 0.5s ease forwards;
}

.booking-form .form-group label {
  color: rgba(255, 255, 255, 0.85);
}

.booking-form .form-group input,
.booking-form .form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 150, 43, 0.25);
  color: var(--white);
}

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 43, 0.15);
  background: rgba(255, 255, 255, 0.12);
}

.booking-summary {
  background: rgba(201, 150, 43, 0.08);
  border: 1px solid rgba(201, 150, 43, 0.25);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.booking-summary strong {
  color: var(--gold-light);
}

/* ══════════════════════════════════ CONTACT ══════════════════════════════════ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.info-block:hover {
  background: var(--cream);
  border-color: var(--border);
}

.info-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.info-block h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 6px;
}

.info-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-block a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.info-block a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 14px;
  padding: 20px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--maroon);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d3d8;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 43, 0.12);
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ══════════════════════════════════ MAP ══════════════════════════════════ */
.map-section {
  height: 380px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.85) contrast(1.1);
}

/* ══════════════════════════════════ FOOTER ══════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li, .footer-events ul li {
  font-size: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.footer-events ul li {
  color: rgba(255,255,255,0.65);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-credit {
  font-size: 13px !important;
  color: rgba(255,255,255,0.35) !important;
}

/* ══════════════════════════════════ FLOATING BUTTONS ══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(201, 150, 43, 0.5);
}

/* ══════════════════════════════════ ANIMATIONS ══════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ══════════════════════════════════ TOAST NOTIFICATION ══════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 110px;
  right: 28px;
  background: var(--maroon);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 1100;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--gold);
  max-width: 300px;
}

.toast.show {
  transform: translateX(0);
}

/* ══════════════════════════════════ RESPONSIVE ══════════════════════════════════ */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary {
    bottom: -20px;
    right: -20px;
  }

  .about-content {
    padding-left: 0;
  }

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

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

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .function-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(26, 13, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

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

  .gallery-item.large {
    grid-column: span 1;
  }

  .stat-divider {
    display: none;
  }

  .stats-container {
    gap: 24px;
  }

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .calendar-card {
    padding: 24px 18px;
  }

  .cal-day {
    font-size: 13px;
  }
}

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

  .nav-container { padding: 0 16px; }
  
  .logo { gap: 8px; }
  .logo-img { width: 38px; height: 38px; }
  .logo-name { font-size: 22px; }
  .logo-sub { font-size: 11px; }

  .lang-toggle { margin-left: 4px; padding: 2px; }
  .lang-btn { padding: 4px 8px; font-size: 11px; }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

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

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

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

  .price-amount {
    font-size: 40px;
  }

  .booking-step-title {
    font-size: 20px;
  }
}
