@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Premium Earthy Design Palette */
  --bg-primary: #f6f7f3;        /* Soft olive-cream off-white */
  --bg-secondary: #eaede6;      /* Cool earthy gray-green */
  --bg-white: #ffffff;
  --color-primary: #092215;     /* Deep Forest Black-Green */
  --color-primary-light: #163e2b;
  --color-secondary: #31572c;   /* Sage/Moss Green */
  --color-accent: #c49a1f;      /* Warm Luxury Gold */
  --color-accent-light: #e6c567;
  --color-text-main: #1b241f;   /* Near Black */
  --color-text-muted: #5f6e65;  /* Sage Gray-Green */
  --color-border: rgba(9, 34, 21, 0.07);
  --color-border-light: rgba(255, 255, 255, 0.2);
  --color-whatsapp: #25d366;
  
  /* Modern Dynamic Shadows */
  --shadow-sm: 0 4px 12px rgba(9, 34, 21, 0.02);
  --shadow-md: 0 12px 28px rgba(9, 34, 21, 0.05);
  --shadow-lg: 0 24px 50px rgba(9, 34, 21, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(9, 34, 21, 0.03);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Organic Nature Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px 10px 32px 10px; /* Custom asymmetric nature-retreat look */
  --radius-card: 24px 8px 24px 8px;
  --radius-pill: 100px;
  
  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

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

.text-center { text-align: center; }

/* Dynamic Section Headers */
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  max-width: 650px;
  margin-bottom: 50px;
  line-height: 1.7;
}

.section-desc.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

/* Header & Glassmorphic Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(246, 247, 243, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
  background-color: rgba(246, 247, 243, 0.92);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  transition: var(--transition-normal);
}

.header.scrolled .nav-container {
  height: 68px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--color-accent);
}

.logo-badge {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: var(--color-primary);
  color: var(--bg-white);
  padding: 3px 8px;
  border-radius: 4px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-cta {
  background-color: var(--color-primary);
  color: var(--bg-white) !important;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(9, 34, 21, 0.2);
}

.nav-cta:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 34, 21, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 6px;
  transition: var(--transition-normal);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: var(--transition-normal);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .header.scrolled .nav-menu {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 18px;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }

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

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

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

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--bg-white);
  box-shadow: 0 4px 16px rgba(9, 34, 21, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(9, 34, 21, 0.25);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--bg-white);
  overflow: hidden;
  padding-top: 84px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: scale(1.05);
  transition: transform 12s ease-out;
}

.hero:hover .hero-bg img {
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 34, 21, 0.85) 0%, rgba(9, 34, 21, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-title span {
  color: var(--color-accent-light);
  background: linear-gradient(120deg, var(--color-accent-light) 0%, #ffe494 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 84px);
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-cta {
    flex-direction: column;
    gap: 14px;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

/* Feature Cards (Asymmetric & Interactive) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 44px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 46, 32, 0.15);
}

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

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background-color: rgba(49, 87, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-bottom: 28px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--bg-white);
  transform: rotate(5deg) scale(1.05);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.7;
}

.feature-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-link:hover {
  color: var(--color-accent);
}

/* Attractions & Nature Cards */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.attraction-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 46, 32, 0.15);
}

.attraction-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.attraction-card:hover .attraction-img img {
  transform: scale(1.08);
}

.attraction-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.attraction-info {
  padding: 28px;
}

.attraction-info h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.attraction-info p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.attraction-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Experience Banners & Alternating Layouts */
.experience-banner {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 56px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.experience-content {
  flex: 1;
}

.experience-img {
  flex: 1.2;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.experience-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.experience-banner:hover .experience-img img {
  transform: scale(1.04);
}

/* Order Helpers */
.order-md-1 { order: 1; }
.order-md-2 { order: 2; }

@media (max-width: 992px) {
  .experience-banner {
    flex-direction: column;
    padding: 40px 24px;
    gap: 36px;
  }
  .experience-img {
    max-width: 100%;
    width: 100%;
  }
  .experience-img img {
    height: 260px;
  }
  .order-md-1, .order-md-2 {
    order: 0 !important;
  }
}

/* Stay & Tents Custom Cards */
.stay-card {
  display: flex;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
  transition: var(--transition-normal);
}

.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 46, 32, 0.12);
}

.stay-card:last-child {
  margin-bottom: 0;
}

.stay-card-img {
  flex: 1.25;
  min-height: 380px;
  position: relative;
}

.stay-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-card-info {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stay-tag {
  align-self: flex-start;
  background-color: rgba(15, 46, 32, 0.05);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.stay-card-info h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.stay-card-info p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.stay-amenities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.amenity-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background-color: var(--bg-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.stay-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}

.stay-price-val {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary);
}

.stay-price-unit {
  font-size: 14px;
  color: var(--color-text-muted);
}

@media (max-width: 992px) {
  .stay-card {
    flex-direction: column;
  }
  .stay-card-img {
    height: 260px;
    min-height: auto;
  }
  .stay-card-info {
    padding: 36px 24px;
  }
}

/* Local Traditional Food Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.menu-category {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.menu-category h3 {
  font-size: 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-category h3 span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: rgba(196, 154, 31, 0.12);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-item-info h4 {
  font-size: 16px;
  color: var(--color-text-main);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Breathing Pulse Animations for Menu dots */
.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.indicator-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulseRing 2s infinite;
  opacity: 0;
}

.veg { background-color: #2e7d32; }
.veg::after { background-color: #2e7d32; }

.non-veg { background-color: #c62828; }
.non-veg::after { background-color: #c62828; }

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.menu-item-info p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 18px;
}

/* Photo Gallery Grid & Lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 34, 21, 0.9) 0%, rgba(9, 34, 21, 0.2) 60%, rgba(9, 34, 21, 0) 100%);
  opacity: 0;
  transition: var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-title {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  transform: translateY(12px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* Gallery Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background-color: var(--bg-secondary);
  border-color: var(--color-primary);
}

.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--bg-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(9, 34, 21, 0.2);
}

.gallery-item.hidden {
  display: none;
}

/* Contact Page Layout & Inputs */
.contact-wrapper {
  display: flex;
  gap: 56px;
}

.contact-info-col {
  flex: 1;
}

.contact-form-col {
  flex: 1.25;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form-col {
    padding: 32px 24px;
  }
}

.contact-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background-color: rgba(49, 87, 44, 0.08);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-details h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-details p, .contact-details a {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-main);
  background-color: var(--bg-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(49, 87, 44, 0.1);
}

.form-row {
  display: flex;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.map-container {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

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

/* Testimonial Panel */
.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-rating {
  color: var(--color-accent);
  margin-bottom: 24px;
  font-size: 18px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--color-text-main);
  margin-bottom: 28px;
  line-height: 1.8;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.user-details h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.user-details span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Footer Section */
.footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

.footer-col h3 {
  color: var(--bg-white);
  font-size: 18px;
  margin-bottom: 28px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.65;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 14px;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-contact svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
}

.social-icon:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.05);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: var(--transition-normal);
  animation: pulseWhatsApp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff;
  animation: none; /* Pause pulse on hover */
}

.floating-whatsapp svg {
  fill: currentColor;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

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

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 24px rgba(37, 211, 102, 0.2);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.2);
  }
}
