/* =====================================================
   PRAKRITI LOK — Farm & Adventure Tourism
   Single shared stylesheet
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --forest: #315B2B;
  --forest-deep: #213e1d;
  --earth: #632719;
  --terracotta: #C94F2E;
  --mustard: #E8A928;
  --cream: #FFF6E7;
  --sand: #EBCF9A;
  --offwhite: #FFFDF7;
  --maroon: #541B1A;

  --font-display: 'Cormorant Garamond', serif;
  --font-accent: 'Yatra One', cursive;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 14px 34px rgba(33, 62, 29, 0.14);
  --shadow-pop: 0 20px 40px rgba(84, 27, 26, 0.22);
  --transition-smooth: all 0.45s cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--maroon);
  background-color: var(--offwhite);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.2px;
}

.eyebrow {
  font-family: var(--font-accent);
  color: var(--terracotta);
  text-transform: none;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--mustard);
  display: inline-block;
}

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

a:hover {
  color: var(--forest);
}

::selection {
  background: var(--mustard);
  color: var(--maroon);
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-sm {
  padding: 55px 0;
}

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

  .section-sm {
    padding: 40px 0;
  }
}

.bg-cream {
  background-color: var(--cream);
}

.bg-sand {
  background-color: var(--sand);
}

.bg-forest {
  background-color: var(--forest);
  color: var(--cream);
}

.bg-forest-deep {
  background-color: var(--forest-deep);
  color: var(--cream);
}

.bg-earth {
  background-color: var(--earth);
  color: var(--cream);
}

.bg-maroon {
  background-color: var(--maroon);
  color: var(--cream);
}

.text-mustard {
  color: var(--mustard) !important;
}

.text-terracotta {
  color: var(--terracotta) !important;
}

.text-forest {
  color: var(--forest) !important;
}

.text-cream {
  color: var(--cream) !important;
}

/* ---------- Buttons ---------- */
.btn-terracotta,
.btn-mustard,
.btn-outline-cream,
.btn-forest {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--offwhite);
  box-shadow: 0 10px 24px rgba(201, 79, 46, 0.35);
}

.btn-terracotta:hover {
  background: var(--maroon);
  color: var(--offwhite);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(84, 27, 26, 0.35);
}

.btn-mustard {
  background: var(--mustard);
  color: var(--maroon);
  box-shadow: 0 10px 24px rgba(232, 169, 40, 0.4);
}

.btn-mustard:hover {
  background: var(--terracotta);
  color: var(--offwhite);
  transform: translateY(-3px);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
}

.btn-forest:hover {
  background: var(--forest-deep);
  color: var(--mustard);
  transform: translateY(-3px);
}

.btn-outline-cream {
  border-color: var(--cream);
  color: var(--cream);
  background: transparent;
}

.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--forest-deep);
  transform: translateY(-3px);
}

.btn-sm-pill {
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 50px;
}

/* ---------- Buntings (signature element) ---------- */
.bunting {
  display: flex;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  line-height: 0;
}

.bunting span {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 20px solid var(--mustard);
  opacity: 0.9;
  transform: translateY(-2px);
  animation: sway 3.4s ease-in-out infinite;
}

.bunting span:nth-child(3n+1) {
  border-top-color: var(--terracotta);
  animation-delay: 0.15s;
}

.bunting span:nth-child(3n+2) {
  border-top-color: var(--forest);
  animation-delay: 0.3s;
}

.bunting span:nth-child(4n) {
  border-top-color: var(--maroon);
  animation-delay: 0.45s;
}

@keyframes sway {

  0%,
  100% {
    transform: rotate(0deg) translateY(-2px);
  }

  50% {
    transform: rotate(4deg) translateY(0);
  }
}

/* ---------- Scallop dividers ---------- */
.scallop-top {
  height: 65px;
  width: 100%;
  background: radial-gradient(circle at 50% 0%, transparent 8px, var(--mustard) 8.5px) 0 0 / 18px 18px repeat-x;
  margin-top: -75px;
}

.scallop-top.on-forest {
  background: radial-gradient(circle at 50% 0%, transparent 8px, var(--forest-deep) 8.5px) 0 0 / 18px 18px repeat-x;
}

.scallop-bottom {
  height: 16px;
  width: 100%;
  background: radial-gradient(circle at 50% 100%, transparent 8px, var(--cream) 8.5px) 0 100% / 18px 18px repeat-x;
}

/* ---------- Navbar ---------- */
.navbar-plok {
  background: var(--cream);
  padding: 14px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(99, 39, 25, 0.08);
}

.navbar-plok.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-soft);
}

.navbar-plok .navbar-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--forest-deep) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-plok .navbar-brand .brand-mark {
  color: var(--terracotta);
  font-style: normal;
  font-family: var(--font-accent);
  font-size: 1.1rem;
}

.navbar-plok .nav-link {
  font-weight: 600;
  color: var(--maroon) !important;
  margin: 0 12px;
  position: relative;
  padding: 6px 2px !important;
}

.navbar-plok .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: var(--transition-smooth);
}

.navbar-plok .nav-link:hover::after,
.navbar-plok .nav-link.active::after {
  width: 100%;
}

.navbar-plok .nav-link.active {
  color: var(--terracotta) !important;
}

.navbar-plok .btn-terracotta {
  padding: 10px 24px;
  font-size: 0.92rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 55%, var(--earth) 100%);
  color: var(--cream);
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
  background-image: url(../imgs/index/banner-shadow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 246, 231, 0.09) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-page {
  padding-top: 140px;
  padding-bottom: 70px;
  background: linear-gradient(150deg, var(--forest-deep), var(--forest));
  color: var(--cream);
  text-align: center;
  position: relative;
}

.hero-page .eyebrow {
  justify-content: center;
  color: var(--mustard);
}

.hero-page .eyebrow::before {
  background: var(--terracotta);
}

.hero-badge {
  background: rgba(255, 246, 231, 0.12);
  border: 1px solid rgba(255, 246, 231, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mustard);
  color: var(--maroon);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-pop);
}

.pricing-chip small {
  font-weight: 500;
  opacity: 0.85;
}

/* ---------- Image placeholders (spaces for real photos) ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, var(--sand), var(--sand) 10px, #e3c184 10px, #e3c184 20px);
  border: 2px dashed var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--maroon);
  text-align: center;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.img-placeholder .ph-label {
  background: rgba(255, 253, 247, 0.88);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-placeholder .ph-label:has(img) {
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  border-radius: inherit;
}

.img-placeholder.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.img-placeholder.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.img-placeholder.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.img-placeholder.ratio-3-4 {
  aspect-ratio: 3 / 4;
}

.img-placeholder.ratio-21-9 {
  aspect-ratio: 21 / 9;
}

/* ---------- Cards ---------- */
.card-plok {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99, 39, 25, 0.08);
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
}

.card-plok:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.card-plok .card-body {
  padding: 26px;
}

.card-plok .zone-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--mustard);
  color: var(--maroon);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  z-index: 2;
}

.card-plok .card-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.4rem;
}

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--terracotta);
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.card-plok:hover .icon-circle,
.activity-item:hover .icon-circle {
  background: var(--terracotta);
  color: var(--offwhite);
  transform: rotate(-8deg) scale(1.05);
}

.activity-item {
  text-align: center;
  padding: 20px 12px;
}

/* ---------- Stats strip ---------- */
.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--mustard);
  line-height: 1;
}

.stat-item .lbl {
  font-size: 0.9rem;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  height: 100%;
  border: 1px solid rgba(99, 39, 25, 0.08);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--mustard);
  line-height: 0.6;
  display: block;
  margin-bottom: 14px;
}

.testimonial-card .stars {
  color: var(--terracotta);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.testimonial-card .t-name {
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 0;
}

.testimonial-card .t-role {
  font-size: 0.82rem;
  color: var(--earth);
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Timeline (About page milestones) ---------- */
.timeline {
  position: relative;
  padding-left: 34px;
  border-left: 3px dashed var(--sand);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--terracotta);
}

.timeline-item .t-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.3rem;
}

/* ---------- Values / Feature blocks ---------- */
.value-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.value-block .icon-circle {
  flex-shrink: 0;
  margin-bottom: 0;
}

/* ---------- Gallery ---------- */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--sand);
  color: var(--maroon);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  margin: 4px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--offwhite);
}

/* ---------- Menu / Food ---------- */
.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--sand);
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row .m-name {
  font-weight: 700;
  color: var(--forest-deep);
}

.menu-row .m-desc {
  font-size: 0.87rem;
  color: var(--earth);
}

.menu-row .m-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
}

.menu-tab-nav .nav-link {
  border-radius: 50px !important;
  color: var(--maroon);
  font-weight: 600;
  border: 2px solid transparent !important;
  margin: 4px;
}

.menu-tab-nav .nav-link.active {
  background: var(--forest) !important;
  color: var(--cream) !important;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--terracotta), var(--maroon));
  border-radius: var(--radius-lg);
  padding: 55px;
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "\f6fc";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 12rem;
  opacity: 0.08;
  transform: rotate(-12deg);
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
}

.contact-info-card .ci-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info-card .ci-item i {
  color: var(--mustard);
  font-size: 1.2rem;
  margin-top: 4px;
}

.form-control,
.form-select {
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  background: var(--offwhite);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(201, 79, 46, 0.12);
}

.form-label {
  font-weight: 600;
  color: var(--forest-deep);
  font-size: 0.92rem;
}

#formStatus.success {
  color: var(--forest);
  font-weight: 600;
}

#formStatus.error {
  color: var(--terracotta);
  font-weight: 600;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 2px dashed var(--forest);
  background: var(--sand);
  min-height: 320px;
  display: flex;
  color: var(--forest-deep);
  width: 100%;
}

/* ---------- Footer ---------- */
.footer-plok {
  background: var(--forest-deep);
  color: var(--sand);
  padding-top: 60px;
}

.footer-plok h5 {
  color: var(--mustard);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-plok .footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--offwhite);
  font-size: 1.6rem;
}

.footer-plok a {
  color: var(--sand);
}

.footer-plok a:hover {
  color: var(--mustard);
}

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

.footer-plok ul li {
  margin-bottom: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.footer-social:hover {
  border-color: var(--mustard);
  color: var(--forest-deep);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(235, 207, 154, 0.18);
  /* margin-top: 40px; */
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mustard);
  font-size: 1.05rem;
}

/* ---------- Floating buttons ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  animation: pulse-wa 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 46px;
  height: 46px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--terracotta);
  color: #fff;
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.in-view {
  transition-delay: 0.1s;
}

.reveal-delay-2.in-view {
  transition-delay: 0.22s;
}

.reveal-delay-3.in-view {
  transition-delay: 0.34s;
}

.reveal-delay-4.in-view {
  transition-delay: 0.46s;
}

/* fade-in for hero on load */
.fade-in-up {
  animation: fadeInUp 1s ease both;
}

.fade-in-up.d1 {
  animation-delay: 0.15s;
}

.fade-in-up.d2 {
  animation-delay: 0.3s;
}

.fade-in-up.d3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Misc ---------- */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--mustard);
  margin: 6px 0 30px;
}

.divider-leaf::before,
.divider-leaf::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--sand);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader .spin {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255, 246, 231, 0.25);
  border-top-color: var(--mustard);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.badge-soft {
  background: var(--sand);
  color: var(--maroon);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
}

/* Accordion (FAQ) tweaks */
.accordion-item {
  border: 1px solid rgba(99, 39, 25, 0.1) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--forest-deep) !important;
  background: var(--offwhite) !important;
}

.accordion-button:not(.collapsed) {
  background: var(--sand) !important;
  color: var(--maroon) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--sand) !important;
}

/* ---------- Responsive helpers ---------- */
@media (max-width: 991px) {
  .navbar-plok .navbar-collapse {
    background: var(--offwhite);
    padding: 18px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    box-shadow: var(--shadow-soft);
  }

  .navbar-plok .nav-link {
    margin: 4px 0;
  }
}

@media (max-width: 575px) {

  .hero,
  .hero-page {
    padding-top: 120px;
  }

  .cta-banner {
    padding: 34px 22px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }
}