:root {
  --bg-cream: #FFF8F0;
  --bg-cream-light: #FFFFFF;
  --deep-green: #123524;
  --deep-green-hover: #1b4b34;
  --terracotta: #C96A3D;
  --terracotta-glow: rgba(201, 106, 61, 0.25);
  --soft-gold: #D9B56D;
  --text-charcoal: #1F2937;
  --text-muted: #556070;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 15px 35px rgba(18, 53, 36, 0.06);
  --shadow-hover: 0 22px 45px rgba(18, 53, 36, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--deep-green);
  border-radius: 5px;
}

/* Typography & Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0;
}

.text-center {
  text-align: center;
}

.heading-primary {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--deep-green);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.heading-primary-light {
  color: #FFFFFF;
}

.heading-accent {
  color: var(--terracotta);
  font-style: italic;
}

.heading-gold {
  color: var(--soft-gold);
  font-style: italic;
}

.sub-heading {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 55px auto;
  font-weight: 400;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 181, 109, 0.18);
  border: 1px solid var(--soft-gold);
  color: var(--deep-green);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: badgeGlow 4s infinite alternate ease-in-out;
}

.gold-badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  font-size: 0.95rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease-out, height 0.5s ease-out;
}

.btn:hover::after {
  width: 250px;
  height: 250px;
}

.btn-nav {
  padding: 10px 24px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 10px;
}

.btn-green {
  background: var(--deep-green);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(18, 53, 36, 0.2);
}

.btn-green:hover {
  background: var(--deep-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(18, 53, 36, 0.3);
}

.btn-terracotta {
  background: var(--terracotta);
  color: #FFFFFF;
  box-shadow: 0 10px 25px var(--terracotta-glow);
}

.btn-terracotta:hover {
  background: #b55c32;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 106, 61, 0.4);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--deep-green);
  transform: translateY(-3px);
}

/* Floating Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 12px 28px;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep-green);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo span {
  color: #E60045;
  font-style: italic;
}

.logo-footer {
  color: #FFFFFF;
  font-size: 1.4rem;
}

/* Navigation & Dropdown Styling */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-link {
  color: var(--text-charcoal);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.nav-item > a:hover,
.nav-link:hover,
.nav-link.active {
  color: var(--terracotta);
}

.nav-item > a i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-item:hover > a i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu Container */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(18, 53, 36, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(18, 53, 36, 0.12);
  list-style: none;
  padding: 10px 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1001;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--text-charcoal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background-color: rgba(18, 53, 36, 0.06);
  color: var(--terracotta);
}

.dropdown-menu li a i {
  color: var(--terracotta);
  font-size: 0.85rem;
  width: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 53, 36, 0.55) 0%, rgba(18, 53, 36, 0.75) 100%),
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.hero-video-container {
  position: relative;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 28, 20, 0.72) 0%,
    rgba(14, 28, 20, 0.5) 50%,
    rgba(14, 28, 20, 0.82) 100%
  );
  z-index: 2;
}

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 3;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
  animation: floatSmooth 3s infinite ease-in-out;
}

@keyframes floatSmooth {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Curved Divider */
.curve-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

/* Experience Cards */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.exp-card {
  background: var(--bg-cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(18, 53, 36, 0.05);
}

.exp-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.exp-img-wrapper {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.exp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-img {
  transform: scale(1.08);
}

.exp-content {
  padding: 32px;
}

.exp-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-green);
  margin-bottom: 12px;
}

.exp-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.exp-link {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
}

/* Dishes Section */
.dishes-section {
  background: #FAF3EA;
  position: relative;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.dish-card {
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.dish-img-box {
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card:hover .dish-img {
  transform: scale(1.06);
}

.badge-chef {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terracotta);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.dish-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--deep-green);
  font-weight: 600;
}

.dish-price {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.15rem;
}

.dish-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Banquet Showcase */
.banquet-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: #FFFFFF;
  overflow: hidden;
  background-color: var(--deep-green);
}

.banquet-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Horizontal Cinematic Vignette: Deep contrast on text (left), crystal clear video (right) */
.banquet-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 44, 20, 0.94) 0%,
    rgba(14, 44, 20, 0.82) 38%,
    rgba(14, 44, 20, 0.35) 75%,
    rgba(14, 44, 20, 0.15) 100%
  );
  z-index: 2;
}

/* Keep Container wide, align text box strictly to the left */
.banquet-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.banquet-content {
  max-width: 580px;
  margin-left: 0;
  margin-right: auto;
}

.banquet-content .heading-primary {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
}

.banquet-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

.stats-row {
  display: flex;
  gap: 36px;
  margin: 35px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  color: var(--soft-gold);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive fallback for mobile */
@media (max-width: 768px) {
  .banquet-hero {
    min-height: auto;
    padding: 90px 0;
  }
  .banquet-video-overlay {
    background: rgba(14, 44, 20, 0.88);
  }
  .banquet-content {
    max-width: 100%;
    text-align: left;
  }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-cream-light);
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--bg-cream);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(18, 53, 36, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--soft-gold);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.review-quote {
  color: var(--text-charcoal);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 25px;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--soft-gold);
}

.author-name {
  font-weight: 600;
  color: var(--deep-green);
  font-size: 0.95rem;
}

.author-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
  background: #FAF3EA;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-soft);
}

.gallery-item.tall {
  height: 380px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 53, 36, 0) 0%, rgba(18, 53, 36, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

/* Footer & Contact */
.contact-footer-wrap {
  background: var(--deep-green);
  color: #FFFFFF;
  position: relative;
  padding-top: 100px;
}

.glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--soft-gold), var(--terracotta), var(--soft-gold));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-info-box h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--soft-gold);
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.8);
}

.contact-list {
  list-style: none;
  margin: 30px 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.contact-list i {
  color: var(--terracotta);
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.map-container {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 340px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  gap: 12px;
}

.map-placeholder-icon {
  font-size: 2.5rem;
  color: var(--soft-gold);
}

.map-placeholder-text {
  font-weight: 500;
}

.map-placeholder-subtext {
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-text {
  margin-left: 15px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}

/* Page Header / Inner Banner */
.page-banner {
  background: linear-gradient(180deg, rgba(18, 53, 36, 0.75) 0%, rgba(18, 53, 36, 0.9) 100%),
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  padding: 160px 0 80px 0;
  color: #FFFFFF;
  text-align: center;
}

/* Filter Controls */
.filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 30px;
  background: var(--bg-cream-light);
  color: var(--text-charcoal);
  border: 1px solid rgba(18, 53, 36, 0.12);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--deep-green);
  color: #FFFFFF;
  border-color: var(--deep-green);
  box-shadow: 0 4px 15px rgba(18, 53, 36, 0.15);
}

/* Dietary Indicators */
.diet-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid;
  font-size: 8px;
}

.diet-indicator.veg {
  border-color: #10B981;
  color: #10B981;
}

.diet-indicator.non_veg {
  border-color: #EF4444;
  color: #EF4444;
}

/* Forms & Panels */
.booking-panel {
  background: var(--bg-cream-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 45px;
  border: 1px solid rgba(18, 53, 36, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-green);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(18, 53, 36, 0.15);
  background: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-charcoal);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.alert-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Coming Soon Showcase */
.coming-soon-card {
  background: var(--bg-cream-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(18, 53, 36, 0.05);
}

.coming-soon-icon {
  font-size: 3.5rem;
  color: var(--soft-gold);
  margin-bottom: 20px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 0 rgba(217, 181, 109, 0); }
  100% { box-shadow: 0 4px 20px rgba(217, 181, 109, 0.25); }
}

/* Review Modal Popup */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 20, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  animation: fadeInModal 0.25s ease-out forwards;
}

.review-modal-box {
  position: relative;
  background: #FFF8F0;
  border: 1px solid rgba(212, 163, 89, 0.35);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  width: 100%;
  max-width: 620px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  animation: scaleUpModal 0.25s ease-out forwards;
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.review-modal-close:hover {
  color: var(--terracotta);
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUpModal {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

/* Promotional Offer Modal */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100000;
  animation: fadeInModal 0.3s ease-out forwards;
}

.promo-modal-box {
  position: relative;
  background: #FFF8F0;
  border: 1px solid rgba(212, 163, 89, 0.45);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.55);
  animation: scaleUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.promo-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(14, 28, 20, 0.75);
  color: #FFF8F0;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.promo-modal-close:hover {
  background: var(--terracotta);
  transform: rotate(90deg);
}

.promo-img-wrapper {
  position: relative;
  height: 320px;
  width: 100%;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-modal-box:hover .promo-img {
  transform: scale(1.02);
}

.promo-badge-tag {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 16px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.promo-content {
  padding: 32px 30px 28px;
  text-align: center;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--deep-green);
  margin-bottom: 12px;
  line-height: 1.3;
}

.promo-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.promo-actions .btn {
  font-size: 1rem;
  padding: 14px 20px;
}

.btn-promo-text {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.btn-promo-text:hover {
  color: var(--deep-green);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .navbar {
    width: calc(100% - 32px);
  }
  .gallery-item.tall {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .booking-panel {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 30px;
  }
  .logo {
    font-size: 1.35rem;
  }
  .promo-img-wrapper {
    height: 220px;
  }
  .promo-content {
    padding: 22px 18px 20px;
  }
  .promo-title {
    font-size: 1.45rem;
  }
  .promo-desc {
    font-size: 0.92rem;
  }
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-brand-wrap .copyright-text {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .footer-brand-wrap {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .footer-brand-wrap .copyright-text {
    border-left: none;
    padding-left: 0;
  }
}