/* ==========================================================================
   AARYA NEWARI KHAJA GHAR - PREMIUM RESTAURANT & FOOD DELIVERY STYLESHEET
   Gapali-4, Suryabinayak, Bhaktapur | Contact & WhatsApp: 9801043380
   ========================================================================== */

/* --- Google Fonts & CSS Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Warm Newari Restaurant Palette */
  --dark-brown: #2C1810;
  --dark-brown-light: #3E2216;
  --maroon: #7B1E28;
  --maroon-dark: #5C151D;
  --maroon-light: #9B2834;
  --golden-yellow: #E5A93B;
  --golden-hover: #D4982A;
  --light-cream: #FAF6ED;
  --light-cream-alt: #F3EBD9;
  --white: #FFFFFF;
  --text-dark: #222222;
  --text-muted: #666666;
  --border-color: rgba(44, 24, 16, 0.12);
  --card-shadow: 0 10px 30px rgba(44, 24, 16, 0.08);
  --card-shadow-hover: 0 16px 40px rgba(123, 30, 40, 0.18);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global Reset & Typography --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: 'Playfair Display', serif;
  color: var(--dark-brown);
  font-weight: 700;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Utility & Decorative Classes --- */
.text-maroon { color: var(--maroon) !important; }
.text-golden { color: var(--golden-yellow) !important; }
.text-brown { color: var(--dark-brown) !important; }
.bg-cream { background-color: var(--light-cream) !important; }
.bg-cream-alt { background-color: var(--light-cream-alt) !important; }
.bg-brown { background-color: var(--dark-brown) !important; }
.bg-maroon { background-color: var(--maroon) !important; }

/* Section Titles & Dividers */
.section-header {
  position: relative;
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--maroon);
  display: inline-block;
  background: rgba(123, 30, 40, 0.08);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--golden-yellow));
  margin: 0.5rem auto 1rem;
  border-radius: 4px;
}

/* Custom Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  border: none;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(123, 30, 40, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123, 30, 40, 0.45);
}

.btn-golden-custom {
  background: linear-gradient(135deg, var(--golden-yellow), var(--golden-hover));
  color: var(--dark-brown);
  border: none;
  padding: 0.75rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(229, 169, 59, 0.35);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-golden-custom:hover {
  background: var(--golden-hover);
  color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 169, 59, 0.5);
}

.btn-outline-custom {
  background: transparent;
  color: var(--dark-brown);
  border: 2px solid var(--dark-brown);
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background: var(--dark-brown);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Top Info Bar --- */
.top-bar {
  background-color: var(--dark-brown);
  color: #D6C7BC;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: var(--golden-yellow);
  font-weight: 500;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Sticky Navbar --- */
.navbar-custom {
  background-color: rgba(250, 246, 237, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
  transition: var(--transition-smooth);
  z-index: 1040;
}

.navbar-custom.navbar-scrolled {
  background-color: rgba(44, 24, 16, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(229, 169, 59, 0.25);
}

.navbar-custom.navbar-scrolled .nav-link {
  color: #E8DFD8 !important;
}

.navbar-custom.navbar-scrolled .nav-link.active,
.navbar-custom.navbar-scrolled .nav-link:hover {
  color: var(--golden-yellow) !important;
}

.navbar-custom.navbar-scrolled .navbar-brand-text {
  color: var(--light-cream);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border: 2px solid var(--golden-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--golden-yellow);
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(123, 30, 40, 0.3);
}

.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark-brown);
  line-height: 1.15;
}

.navbar-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--maroon);
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-custom.navbar-scrolled .navbar-brand-sub {
  color: var(--golden-yellow);
}

.nav-link {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--dark-brown) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background-color: var(--maroon);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--maroon) !important;
  font-weight: 600;
}

/* --- Hero Section & Carousel --- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1a0f0a;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 85vh;
  min-height: 600px;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.carousel-item.active .hero-slide-bg {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.85) 0%,
    rgba(123, 30, 40, 0.72) 60%,
    rgba(44, 24, 16, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  color: var(--white);
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 169, 59, 0.18);
  border: 1px solid var(--golden-yellow);
  color: var(--golden-yellow);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Highlights Banner Bar */
.highlights-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, var(--dark-brown), #3E1E14);
  border-top: 3px solid var(--golden-yellow);
  border-bottom: 1px solid rgba(229, 169, 59, 0.2);
  padding: 1.25rem 0;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--light-cream);
}

.highlight-item i {
  color: var(--golden-yellow);
  font-size: 1.3rem;
}

/* --- About Section --- */
.about-section {
  padding: 6.5rem 0;
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--white);
}

.about-badge-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 1.25rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(123, 30, 40, 0.35);
  border: 2px solid var(--golden-yellow);
  text-align: center;
}

.about-badge-card h3 {
  font-size: 2.2rem;
  color: var(--golden-yellow);
  margin-bottom: 0;
  line-height: 1;
}

.about-badge-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  font-weight: 500;
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(44, 24, 16, 0.05);
  border: 1px solid rgba(44, 24, 16, 0.08);
  transition: var(--transition-smooth);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--maroon);
  box-shadow: var(--card-shadow-hover);
}

.stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(123, 30, 40, 0.08);
  color: var(--maroon);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* --- Filter Buttons & Menu Section --- */
.menu-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream-alt);
}

.menu-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background-color: var(--white);
  color: var(--dark-brown);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  border-color: var(--maroon);
  box-shadow: 0 6px 16px rgba(123, 30, 40, 0.3);
  transform: translateY(-2px);
}

/* Menu Food Card Styling */
.food-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(44, 24, 16, 0.07);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(123, 30, 40, 0.3);
}

.food-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: #f1ede5;
}

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

.food-card:hover .food-img-wrapper img {
  transform: scale(1.1);
}

.food-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(44, 24, 16, 0.85);
  color: var(--golden-yellow);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.food-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1.5px solid var(--golden-yellow);
  z-index: 2;
}

.food-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.food-rating {
  color: var(--golden-yellow);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.food-rating span {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-left: 6px;
  font-weight: 500;
}

.food-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark-brown);
  transition: color 0.25s ease;
}

.food-card:hover .food-title {
  color: var(--maroon);
}

.food-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  padding-top: 1.1rem;
  margin-top: auto;
}

.btn-order-quick {
  background-color: var(--maroon);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-order-quick:hover {
  background-color: var(--dark-brown);
  color: var(--golden-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* --- Combo Packages Section --- */
.combos-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream);
}

.combo-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
}

.combo-card:hover {
  transform: translateY(-8px);
  border-color: var(--golden-yellow);
  box-shadow: var(--card-shadow-hover);
}

.combo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--golden-yellow);
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 3;
}

.combo-header {
  background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown-light));
  color: var(--white);
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--golden-yellow);
}

.combo-header h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.combo-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--golden-yellow);
  margin-bottom: 0;
}

.combo-body {
  padding: 1.8rem;
}

.combo-items-list {
  margin-bottom: 1.8rem;
}

.combo-items-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(44, 24, 16, 0.1);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.combo-items-list li i {
  color: var(--maroon);
  font-size: 1.1rem;
}

/* --- Special Packages Section --- */
.packages-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--light-cream-alt) 0%, var(--light-cream) 100%);
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(44, 24, 16, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--maroon);
}

.package-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(123, 30, 40, 0.1), rgba(229, 169, 59, 0.18));
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.package-title {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  color: var(--dark-brown);
}

.package-capacity {
  display: inline-block;
  background: rgba(123, 30, 40, 0.08);
  color: var(--maroon);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.package-includes {
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.package-includes li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.93rem;
  color: var(--text-dark);
}

.package-includes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--golden-yellow);
  font-weight: 800;
}

.package-footer {
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
}

/* --- Delivery Information Section --- */
.delivery-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-brown), #3E2016);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.delivery-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 169, 59, 0.25);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.delivery-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--golden-yellow);
  transform: translateY(-6px);
}

.delivery-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.18);
  color: var(--golden-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

/* --- Gallery Section --- */
.gallery-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream);
}

.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  height: 280px;
  display: block;
}

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

.gallery-card:hover .gallery-img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(44, 24, 16, 0.85) 0%,
    rgba(123, 30, 40, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.gallery-subtitle {
  color: var(--golden-yellow);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Customer Reviews Section --- */
.reviews-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream-alt);
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(44, 24, 16, 0.07);
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.quote-icon {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3.5rem;
  color: rgba(123, 30, 40, 0.08);
  line-height: 1;
  font-family: serif;
}

.review-stars {
  color: var(--golden-yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.reviewer-name {
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 0.1rem;
  font-size: 1.05rem;
}

.reviewer-location {
  font-size: 0.82rem;
  color: var(--maroon);
  font-weight: 600;
}

/* --- Why Choose Us Section --- */
.why-us-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream);
}

.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(44, 24, 16, 0.07);
  transition: var(--transition-smooth);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--maroon);
  box-shadow: var(--card-shadow-hover);
}

.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(123, 30, 40, 0.08);
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background: var(--maroon);
  color: var(--golden-yellow);
  transform: scale(1.1) rotate(6deg);
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--dark-brown);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream-alt);
}

.accordion-custom .accordion-item {
  background-color: var(--white);
  border: 1px solid rgba(44, 24, 16, 0.1);
  border-radius: 14px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.04);
}

.accordion-custom .accordion-button {
  background-color: var(--white);
  color: var(--dark-brown);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.3rem 1.5rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: rgba(123, 30, 40, 0.06);
  color: var(--maroon);
}

.accordion-custom .accordion-button::after {
  background-size: 1.2rem;
}

.accordion-custom .accordion-body {
  padding: 1.3rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid rgba(44, 24, 16, 0.06);
}

/* --- Contact & Map Section --- */
.contact-section {
  padding: 6.5rem 0;
  background-color: var(--light-cream);
}

.contact-info-card {
  background: var(--dark-brown);
  color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--golden-yellow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.18);
  color: var(--golden-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(44, 24, 16, 0.08);
}

.form-control-custom {
  border: 1.5px solid rgba(44, 24, 16, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(123, 30, 40, 0.12);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 420px;
  border: 4px solid var(--white);
}

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

/* --- Footer --- */
.footer-custom {
  background-color: #1c0e08;
  color: #c7b9b0;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--golden-yellow);
}

.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  color: var(--golden-yellow);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--maroon);
}

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

.footer-links a {
  color: #c7b9b0;
  font-size: 0.93rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--golden-yellow);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--maroon);
  color: var(--golden-yellow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
  padding-top: 1.8rem;
  text-align: center;
  font-size: 0.88rem;
  color: #9c8e85;
}

/* --- Floating Action Buttons --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 1050;
  transition: var(--transition-smooth);
  text-decoration: none !important;
}

.floating-whatsapp-btn:hover {
  background-color: #20BA5A;
  color: var(--white);
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-call-btn {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 54px;
  height: 54px;
  background-color: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(123, 30, 40, 0.45);
  z-index: 1050;
  transition: var(--transition-smooth);
  text-decoration: none !important;
}

.floating-call-btn:hover {
  background-color: var(--dark-brown);
  color: var(--golden-yellow);
  transform: scale(1.1) rotate(-8deg);
}

.back-to-top-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 46px;
  height: 46px;
  background-color: var(--dark-brown);
  color: var(--golden-yellow);
  border: 1.5px solid var(--golden-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(44, 24, 16, 0.4);
  z-index: 1045;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: var(--golden-yellow);
  color: var(--dark-brown);
  transform: translateY(-4px);
}

/* Floating Cart Trigger Pill */
.floating-cart-pill {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--dark-brown), #3E2216);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--golden-yellow);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
  font-size: 0.95rem;
}

.floating-cart-pill:hover {
  transform: translateX(-50%) translateY(-3px);
  background: var(--maroon);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.cart-count-badge {
  background: var(--golden-yellow);
  color: var(--dark-brown);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
}

/* --- Modal Custom Styling --- */
.modal-content-custom {
  background-color: var(--light-cream);
  border-radius: 20px;
  border: 2px solid var(--golden-yellow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.modal-header-custom {
  background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown-light));
  color: var(--white);
  border-bottom: 2px solid var(--golden-yellow);
  padding: 1.25rem 1.75rem;
}

.modal-title-custom {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--golden-yellow);
}

.btn-close-custom {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* --- Scroll Animations (Fade-in on scroll) --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .navbar-custom {
    padding: 0.65rem 0;
  }
  .about-badge-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .highlights-bar {
    padding: 0.9rem 0;
  }
  .highlight-item {
    font-size: 0.85rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary-custom, .btn-golden-custom {
    justify-content: center;
  }
  .floating-cart-pill {
    bottom: 15px;
    padding: 0.65rem 1.15rem;
    font-size: 0.85rem;
  }
}
