:root {
  --farm-green: #069c7b;
  --farm-green-dark: #0a4337;
  --farm-cream: #f4efe6;
  --farm-sand: #f8f3ea;
  --farm-text: #23403a;
  --farm-muted: #5f726b;
  --farm-card: #ffffff;
  --farm-shadow: 0 20px 50px rgba(15, 95, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans Devanagari", "Outfit", sans-serif;
  background: linear-gradient(180deg, #fbfaf7 0%, #eef7f1 48%, #f6f2ea 100%);
  color: var(--farm-text);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

a {
  text-decoration: none;
}

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,239,230,0.96));
  z-index: 3000;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.loading-logo {
  width: 180px;
  max-width: 70vw;
  animation: breathe 2.2s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.84; }
  50% { transform: scale(1.04); opacity: 1; }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 95, 77, 0.08);
}

.navbar {
  padding: 0.9rem 0;
}

.navbar-brand img,
.footer-brand img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-link {
  font-weight: 600;
  color: var(--farm-text);
}

#h3 {
  color: #0a4337!important;
}
.h5 {
  color: #0a4337;
}

.nav-link:hover,
.nav-link.active {
  color: var(--farm-green);
}

.btn-farm {
  background: var(--farm-green);
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  border: 0;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 95, 77, 0.18);
}

.btn-farm:hover {
  background: var(--farm-green-dark);
  color: #fff;
}

.btn-farm-outline {
  border: 1px solid rgba(15,95,77,0.25);
  color: var(--farm-green);
  background: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(125deg, rgba(10,67,55,0.96), rgba(6,156,123,0.82)), var(--hero-image) center/cover no-repeat;
  color: #fff;
}

.hero-marathi {
  position: relative;
  isolation: isolate;
}

.hero-marathi::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  /* background: linear-gradient(180deg, rgba(255,255,255,0), #fbfaf7); */
  z-index: -1;
}

.hero-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(10, 67, 55, 0.22);
  border: 1px solid rgba(255,255,255,0.24);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(15,95,77,0.06));
  pointer-events: none;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-carousel .carousel-indicators {
  margin-bottom: 0.8rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hero-carousel .carousel-caption {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  text-align: left;
  border-radius: 0.9rem;
  background: linear-gradient(90deg, rgba(10,67,55,0.82), rgba(10,67,55,0.18));
  backdrop-filter: blur(8px);
}

.hero-carousel .caption-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero .eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 13ch;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 60ch;
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 560px;
}

.hero-stats div {
  padding: 0.95rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.16);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 0.18rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
}

.section-pad {
  padding: 4.25rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.section-lead {
  color: var(--farm-muted);
  max-width: 68ch;
}

.farm-card {
  border: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  background: var(--farm-card);
  box-shadow: var(--farm-shadow);
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.farm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(15, 95, 77, 0.16);
}

.farm-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.farm-card .card-body {
  padding: 1.15rem;
}

.farm-card .badge {
  background: var(--farm-cream);
  color: var(--farm-green);
  border: 1px solid rgba(15,95,77,0.12);
  font-weight: 700;
}

.info-card {
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: var(--farm-shadow);
  height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(15,95,77,0.06);
}

.timeline {
  position: relative;
  padding-left: 1.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: rgba(15,95,77,0.16);
}

.timeline-item {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -0.05rem;
  top: 0.65rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--farm-green);
  box-shadow: 0 0 0 4px rgba(15,95,77,0.1);
}

.gallery-grid .gallery-tile {
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--farm-shadow);
  height: 100%;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: transparent;
  display: block;
  width: 100%;
}

.gallery-grid .gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.25s ease;
}

.gallery-grid .gallery-tile:hover img,
.gallery-grid .gallery-tile:focus-visible img {
  transform: scale(1.04);
}

.gallery-grid .gallery-tile:focus-visible {
  outline: 3px solid rgba(6,156,123,0.42);
  outline-offset: 4px;
}

.gallery-modal .modal-content {
  border: 0;
  border-radius: 0.95rem;
  overflow: hidden;
  background: #0a4337;
  box-shadow: 0 32px 80px rgba(10, 67, 55, 0.32);
}

.gallery-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: #fff;
}

.gallery-modal .modal-body {
  padding: 0;
  background: #0a4337;
}

.gallery-modal img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.contact-panel {
  background: #fff;
  border-radius: 1.35rem;
  box-shadow: var(--farm-shadow);
  border: 1px solid rgba(15,95,77,0.06);
}

.footer {
  border-top: 1px solid rgba(15,95,77,0.08);
  background: rgba(255,255,255,0.7);
}

.footer small {
  color: var(--farm-muted);
}

.contact-hero {
  position: relative;
}

.contact-hero .hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1.35rem;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(8px);
}

.contact-hero .soft-panel {
  background: linear-gradient(180deg, rgba(10, 67, 55, 0.96), rgba(15, 95, 77, 0.88));
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(10, 67, 55, 0.24);
}

.contact-hero .hero-card p,
.contact-hero .hero-card h2 {
  color: #fff !important;
}

.contact-panel .form-control {
  border-radius: 0.75rem;
  border-color: rgba(15,95,77,0.12);
  padding: 0.95rem 1rem;
}

.intro-band {
  background: #fbfaf7;
}

.quick-note {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem;
  border-radius: 0.8rem;
  background: #fff;
  border: 1px solid rgba(15,95,77,0.08);
  box-shadow: var(--farm-shadow);
}

.quick-note span,
.section-kicker {
  color: var(--farm-green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-note strong {
  font-size: 1.25rem;
}

.booking-section {
  background: linear-gradient(180deg, #eef7f1 0%, #fbfaf7 100%);
}

.booking-choice,
.booking-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(15,95,77,0.08);
  box-shadow: var(--farm-shadow);
}

.booking-choice-accent,
.booking-card-accent {
  border-color: rgba(184, 115, 51, 0.2);
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
}

.booking-choice {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  /* min-height: 235px; */
}

.booking-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.booking-head span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--farm-green);
  color: #fff;
  font-weight: 800;
}

.booking-head h3 {
  margin: 0 0 0.25rem;
  color: var(--farm-green-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.booking-head p {
  margin: 0;
  color: var(--farm-muted);
}

.booking-card .form-label {
  color: var(--farm-green-dark);
  font-weight: 700;
}

.booking-card .form-control,
.booking-card .form-select {
  min-height: 50px;
  border-radius: 0.72rem;
  border-color: rgba(15,95,77,0.16);
  color: var(--farm-text);
}

.booking-card textarea.form-control {
  min-height: 94px;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: rgba(6,156,123,0.48);
  box-shadow: 0 0 0 0.2rem rgba(6,156,123,0.1);
}

.booking-modal .modal-content {
  border: 0;
  border-radius: 0.95rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 67, 55, 0.28);
}

.booking-modal .modal-header {
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(135deg, #eef7f1 0%, #fff 100%);
  border-bottom: 1px solid rgba(15,95,77,0.08);
}

.booking-modal .modal-title {
  margin-top: 0.25rem;
  color: var(--farm-green-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

.booking-modal .modal-body {
  padding: 1.25rem;
}

.booking-modal .modal-footer {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 0;
}

.modal-form {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-card.was-validated .form-control:invalid,
.booking-card.was-validated .form-select:invalid {
  border-color: #c64b3a;
}

.form-feedback {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 0.72rem;
  color: var(--farm-green-dark);
  background: rgba(6,156,123,0.1);
  border: 1px solid rgba(6,156,123,0.18);
  font-weight: 700;
}

.contact-panel .form-control:focus {
  border-color: rgba(15,95,77,0.34);
  box-shadow: 0 0 0 0.2rem rgba(15,95,77,0.08);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(1, 136, 107, 0.879);
  color: var(--farm-green);
  flex: 0 0 auto;
}

.contact-icon i{
  font-size: 24px;
  color: white;
}

.soft-panel {
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
  border-radius: 1.5rem;
  box-shadow: var(--farm-shadow);
  border: 1px solid rgba(15,95,77,0.06);
}

.stacked-notes .note-row + .note-row {
  margin-top: 0.9rem;
}

.note-row {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15,95,77,0.06);
}

.note-row h3 {
  margin-bottom: 0.2rem;
}

.note-row p {
  margin-bottom: 0;
  color: var(--farm-muted);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 3.2rem 0 2.8rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-carousel .carousel-item img {
    min-height: 320px;
  }

  .section-pad {
    padding: 3.5rem 0;
  }

  .navbar-brand img,
  .footer-brand img {
    height: 60px;
  }

  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--farm-shadow);
  }

  .navbar-nav {
    align-items: flex-start !important;
  }
}

@media (max-width: 767.98px) {
  .hero {
    text-align: center;
  }

  .hero .d-flex.flex-wrap {
    justify-content: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-carousel .carousel-caption {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    text-align: left;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .farm-card img {
    height: 200px;
  }

  .gallery-grid .gallery-tile img {
    min-height: 180px;
  }

  .footer .container {
    justify-content: center !important;
    text-align: center;
  }
}
