/* ===============================
   GLOBAL RESET + BASE SETTINGS
=============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
}
body {
  background: #f6faf6;
  color: #122a20;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 12px;
}
h1, h2, h3, h4, h5 {
  color: #16381f;
  margin-bottom: 12px;
  line-height: 1.3;
}
p {
  margin-bottom: 10px;
  color: #2d3e35;
  font-size: 16px;
  word-spacing: 2px;
}
.section {
  padding: 48px 0;
  scroll-margin-top: 90px;
}
.section .container > p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}
.section h2{
  text-align: center;
  width: 100%;
}
.section-cta{
  text-align: center;
  margin: 20px 0 35px;
  position: relative;
  z-index: 2;
}

/* ===============================
      STICKY HEADER + NAVBAR
=============================== */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #1e5a34, #16381f);
  color: #fff;
  z-index: 3000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 5px 0;
}

.navbar {
  max-width: 1200px;     /* 🔥 main fix */
  margin: 0 auto;        /* 🔥 center container */
  padding: 0 20px;       /* 🔥 left-right gap */
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 65px;
}

.logo img {
  height: 85px;
}

.nav-links {
  display: flex;
  gap: 22px;
  z-index: 3001;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #b7e4c7;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #16381f;
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    text-align: center;
    padding: 12px 0;
  }
  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-icon {
    display: block;
  }
}

/* ===============================
           HERO SECTION
=============================== */
.hero {
  position: relative;
  width: 100%;
  height: 65vh;
  margin-top: 95px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroSlider 16s infinite ease-in-out;
  filter: brightness(1.2);
}
@keyframes heroSlider {
  0%   { background-image: url('../images/hero2.webp'); }
  50%  { background-image: url('../images/hero3.webp'); }
  100% { background-image: url('../images/hero2.webp'); }
}
.hero-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 25px 35px;
  border-radius: 14px;
  max-width: 850px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.5);
}

.hero-inner h1,
.hero-inner p{
  width: 100%;
  text-align: center;
}

.hero-inner h1 { font-size: 32px; }
.hero-inner p { font-size: 17px; }

.hero-inner h1{
  color: #f1f8f6;
}

.hero-inner p{
  color: #d8efe8;
  margin-top: 8px;
}

.hero-points {
  margin-top: 24px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-points span {
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* MOBILE HERO */
@media (max-width: 768px) {
  .hero { height: 55vh; }
  .hero-inner { max-width: 90%; padding: 16px 20px; }
  .hero-inner h1 { font-size: 22px; }
  .hero-inner p { font-size: 14px; }
}

/* ===============================
              CARDS
=============================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.card img {
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: 0.4s ease;
}
.card:hover img {
  transform: scale(1.06);
}
.card h3 {
  font-size: 18px;
  color: #16381f;
}
.card p {
  font-size: 15px;
  color: #444;
}
.card .buttons {
  margin-top: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.card p:last-child{
  margin-top: auto;
}

/* ===============================
   ABOUT – IMAGE RIGHT | NO BOX FEEL
=============================== */

#about{
  padding: 70px 0;
}

/* Main card */
.about-card{
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  background: #fff;
}

/* 🔥 Background image – smaller, right & sharp */
.about-image{
  position: absolute;
  inset: 0;
  background-image: url("../images/about.webp");

  /* image box se thodi choti */
  background-size: 60% auto;

  /* image right side aligned */
  background-position: right center;
  background-repeat: no-repeat;

  /* image ko thoda crisp banane ke liye */
  filter: 
    contrast(1.12)
    saturate(1.15)
    brightness(1.02);

  image-rendering: -webkit-optimize-contrast;
  z-index: 0;
}

/* 🔥 Soft gradient – box feel hatane ke liye */
.about-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.85) 35%,
    rgba(255,255,255,0.45) 65%,
    rgba(255,255,255,0.00) 100%
  );
  z-index: 1;
}

/* 🔥 Text – floating feel (NO BOX) */
.about-text{
  position: relative;
  z-index: 2;
  max-width: 55%;
  margin: 40px;
  padding: 10px 5px;

  /* ❌ box look completely removed */
  background: none;
  border-radius: 0;
}

/* Text styling */
.about-text p{
  font-size: 16px;
  line-height: 1.7;
  color: #1f2f26;

  /* readability without box */
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

.about-points{
  margin-top: 15px;
  padding-left: 18px;
}

.about-points li{
  margin-bottom: 8px;
  font-size: 15px;
  color: #16381f;
  font-weight: 500;

  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

/* ===============================
        MOBILE FIX
=============================== */
@media (max-width: 768px){
  .about-card{
    min-height: auto;
  }

  .about-text{
    max-width: 100%;
    margin: 20px;
    padding: 10px;
  }

  .about-image{
    background-size: cover;
    background-position: center;
  }
}

/* BUTTONS */
.book-now {
  background: #009688;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: 0.3s;
}
.book-now:hover {
  background: #00796b;
}
.read-btn {
  background: none;
  color: #16381f;
  text-decoration: underline;
}

/* ===============================
             GALLERY
=============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}
.gallery-img:hover { transform: scale(1.02); }

/* ===============================
   GLOBAL ENQUIRY POPUP – FINAL COMPACT
=============================== */

/* Overlay */
.popup-overlay{
  display: none; /* JS se show hoga */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

/* Popup Box */
.popup-content{
  width: 100%;
  max-width: 480px;     /* ⬅️ width thodi kam */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  overflow: hidden;
  animation: zoomIn 0.25s ease;
}

/* Header */
.popup-header{
  background: #2d6a4f;
  color: #fff;
  padding: 12px 18px;   /* ⬅️ header height kam */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-header h3{
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.popup-close{
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* Form Body */
#enquiryForm{
  padding: 16px 18px;   /* ⬅️ padding kam */
}

/* Labels */
#enquiryForm label{
  font-size: 13px;
  font-weight: 500;
  color: #16381f;
  margin-bottom: 4px;
  display: block;
}

/* Inputs */
#enquiryForm input,
#enquiryForm select,
#enquiryForm textarea{
  width: 100%;
  padding: 8px 10px;    /* ⬅️ input height kam */
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  font-size: 13px;
  margin-bottom: 10px; /* ⬅️ spacing kam */
  box-sizing: border-box;
}

/* Message textarea height kam */
#enquiryForm textarea{
  min-height: 70px;    /* ⬅️ yahin se height control */
  resize: none;
}

/* Adults / Children row */
.form-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

/* Buttons */
.form-buttons{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.book-now{
  background: #2d6a4f;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.popup-close-btn{
  background: #e0e0e0;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}


/* ===============================
        MOBILE FIX
=============================== */
@media (max-width: 600px){
  .form-row{
    grid-template-columns: 1fr;
  }

  .popup-content{
    max-width: 100%;
  }
}

/* Animation */
@keyframes zoomIn{
  from{
    transform: scale(0.9);
    opacity: 0;
  }
  to{
    transform: scale(1);
    opacity: 1;
  }
}


/* ===============================
              FAQ
=============================== */
.faq-wrapper{
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Main Heading Fix */
.faq-section h2{
  text-align: center;
  width: 100%;
  margin-bottom: 25px;
}

.faq-container{
  max-width: 900px;
  margin: 0 auto;
}

.faq-item{
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  background: #ffffff;
}

.faq-question{
  width: 100%;
  padding: 16px 18px;
  background: #f0f7f4;
  cursor: pointer;
  font-weight: 600;
  color: #16381f;
  text-align: center;
  transition: background 0.3s;
}

.faq-question:hover{
  background: #e3f2ec;
}

.faq-answer{
  display: none;
  padding: 18px;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

.faq-item.active .faq-answer{
  display: block;
}

/* ===============================
             FOOTER
=============================== */
.footer {
  background: linear-gradient(90deg, #1e5a34, #16381f);
  padding: 40px 20px;
  color: #ffffff;
}

/* Footer Grid */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
  text-align: center;
}

/* Footer Headings */
.footer-col h3 {
  color: #ffffff;
  border-bottom: 2px solid #b7e4c7;
  display: inline-block;
  margin-bottom: 12px;
  padding-bottom: 5px;
}

/* Footer Text */
.footer p,
.footer span,
.footer li {
  color: #eaf5ef;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #b7e4c7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  font-size: 14px;
  color: #eaf5ef;
}

/* ===============================
           WHATSAPP BUTTON
=============================== */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 18px;
  background: #25D366;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  z-index: 3500;
}

/* ===============================
              ANIMATIONS
=============================== */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
