:root {
  --green: #06336d;
  --accent: #2fb84b;
  --gold: #f5b400;
  --dark: #071011;
  --muted: #6b6b6b;
  --max-w: 1200px;
  --header-h: 66px;
  --bg-light: #f5f5f5;
  --bg-section: #fff; /* White background for sections */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  /* background: var(--bg-light);  */

  color: #111;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Base Styling for Sections */
.section {
  padding: 25px;
  margin: 20px auto;
  max-width: var(--max-w);
  /* margin: 0 auto; */
  background: var(--bg-section); /* Ensure white background for content */
  margin-bottom: 20px; /* Separator between sections */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Light shadow for depth */
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--green); /* Use brand color for main titles */
  margin-bottom: 10px;
  position: relative;
  padding-top: 10px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--gold); /* Use accent color as underline */
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section h1 {
  /* Overrides existing h2 style to use the new section-title */
  display: none; /* Hide old h2 if section-title is used */
}

/* ---------------------------------------------------------------------- */
/* ===== NAVBAR (No changes needed, it's already good) ===== */
/* ---------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #06336d; 
  color: #fff;
  backdrop-filter: blur(6px);
  height: var(--header-h);
  transition: background 0.3s, transform 0.2s;
}

.nav.scrolled {
  background: var(--green);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--gold);
  font-size: 20px;
}

.logo-box {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02220f;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  opacity: 0.95;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.hamburger {
  display: none;
  background: var(--gold);
  color: #02220f;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: -100%;
    width: 230px;
    /* height: calc(100% - var(--header-h)); */
    /* background: rgba(7, 16, 17, 0.98); */
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    background-color: rgb(36, 36, 36);
    height: 500px;
    transition: right 0.28s;
  }
  .nav-links.open {
    right: 0;
    height: 550px;
  }

  .hamburger {
    display: block;
  }
  
  /*@media (max-width: 768px) {*/
  /*     .nav-links.open {*/
  /*  right: 0;*/
  /*  height: 550px;*/
  /*}*/

  /*.hamburger {*/
  /*  display: block;*/
  /*}*/
  /*}*/
}

/* ---------------------------------------------------------------------- */
/* ===== HERO SECTION ===== */
/* ---------------------------------------------------------------------- */
.hero {
  min-height: calc(100vh - var(--header-h));
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0; /* Adjusted padding */
  background: linear-gradient(
      90deg,
      rgba(6, 45, 34, 0.86) 0%,
      rgba(6, 45, 34, 0.45) 34%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url("banner3.png") center/cover no-repeat;
  position: relative;
  color: #fff;
  margin-bottom: 0; /* No margin below hero */
  border-radius: 0; /* Full width edge to edge */
  box-shadow: none;
}

.hero.fallback {
  background-image: linear-gradient(
      90deg,
      rgba(6, 45, 34, 0.86) 0%,
      rgba(6, 45, 34, 0.45) 34%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1500&q=80");
}

.constrain {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  gap: 32px; /* Increased gap */
  align-items: center; /* Center align items for better look */
}

/* LEFT - Content */
.left {
  flex: 1 1 0;
  color: #fff;
  min-width: 420px;
  position: relative;
  padding-left: 6px;
}

.vertical {
  position: absolute;
  left: -56px;
  top: 180px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--gold); /* Changed to gold */
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.title {
  font-size: 50px; /* Slightly bigger title */
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for visibility */
}

.tagline {
  display: inline-block;
  background: var(--gold); /* Changed to Gold */
  color: var(--dark); /* Dark text on Gold */
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  margin: 14px 0;
  box-shadow: 0 10px 28px rgba(245, 180, 0, 0.18);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px; /* Increased top margin */
  background: rgba(0, 0, 0, 0.75); /* Darker background for contrast */
  padding: 18px;
  border-radius: 10px; /* More rounded corners */
  width: fit-content;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.sym {
  font-size: 24px;
  color: var(--gold);
}

.price {
  font-size: 48px; /* Bigger price */
  font-weight: 800;
  color: var(--accent);
}

.price-small {
  font-size: 14px;
  color: #cfd6d0;
  margin-left: 8px;
  align-self: flex-end;
}

.info-grid {
  margin-top: 26px; /* Increased top margin */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; /* Increased gap */
  max-width: 860px;
}

.info-cell {
  background: rgba(0, 0, 0, 0.6); /* Slightly darker for better visibility */
  padding: 14px 16px;
  border-radius: 8px;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.5;
}

.info-cell strong {
  display: block;
  color: var(--gold); /* Highlight key info */
  font-weight: 700;
  margin-bottom: 4px;
}

/* RIGHT - enquiry form */
.right {
  width: 400px; /* Slightly wider form */
  min-width: 300px;
  background: linear-gradient(
    180deg,
    var(--dark),
    rgba(0, 0, 0, 0.95)
  ); /* Dark theme form */
  padding: 24px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7);
}

.right h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--gold); /* Gold heading */
}

.right p {
  color: #cfd6d0;
  margin-bottom: 16px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--accent); /* Light green label */
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: 15px;
  outline: none;
  background: #1c1c1c; /* Dark input background */
  color: #fff;
}

.submit {
  width: 100%;
  background: var(--gold);
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-weight: 800;
  cursor: pointer;
  color: var(--dark); /* Dark text on gold button */
  transition: background 0.3s, transform 0.1s;
}

.submit:hover {
  background: #ffc83b;
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------------- */
/* ===== ABOUT SECTION (Cleaned up and separated) ===== */
/* ---------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.about-card {
  background: #fff;
  padding: 24px; /* Increased padding */
  border-radius: 12px; /* More rounded */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--accent); /* Accent line for style */
}

.about-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.about-card h4 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px dashed #eee;
  padding-bottom: 5px;
}

.about-card p {
  line-height: 1.7;
  color: #444;
  font-size: 15px;
}
/* ---------------------------------------------------------------------- */
/* ===== CONNECTIVITY (Refined) ===== */
/* ---------------------------------------------------------------------- */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Increased gap */
}

.connect-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.connect-card img {
  width: 100%;
  height: 180px; /* Taller images */
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}

.connect-card .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  padding: 20px 12px 12px; /* Increased padding */
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.connect-card:hover img {
  transform: scale(1.08); /* More noticeable hover effect */
}

/* ---------------------------------------------------------------------- */
/* ===== PLOTS & MAP (Refined) ===== */
/* ---------------------------------------------------------------------- */
.plots-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column for the map */
  gap: 16px;
}

.plot-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

/* ---------------------------------------------------------------------- */
/* ===== PAYMENT PLAN (Refined Look) ===== */
/* ---------------------------------------------------------------------- */
/* price */
.section-title {
  text-align: center;
  background: #ffffff;
  color: #059b32;
  padding: 15px;
  font-size: 26px;
  border-radius: 8px;
  width: 100%;
  margin: 3px auto;
  letter-spacing: 1px;
}

.payment-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.3s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card h3 {
  background: #2c2c2c;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card h4 {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

ul li:last-child {
  border-bottom: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }

  ul li {
    flex-direction: column;
    align-items: flex-start;
  }

  ul li span:last-child {
    margin-top: 5px;
    font-weight: bold;
  }
}


/* ---------------------------------------------------------------------- */
/* ===== CONTACT (Refined) ===== */
/* ---------------------------------------------------------------------- */
.contact-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
}

.contact-left h3 {
  color: var(--green);
  font-size: 24px;
}

.contact-left small {
  display: block;
  color: var(--gold) !important;
  font-weight: 700;
  margin-top: 4px;
  font-size: 16px;
}

.contact-left p {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #444;
}

.contact-right {
  width: 420px;
  max-width: 100%;
  background: var(--bg-light); /* Light background for form */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-right input,
.contact-right select,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
}

.contact-right button {
  width: 100%;
  background: var(--green) !important;
  color: #fff !important;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-right button:hover {
  background: #084c2a !important;
}

/* ---------------------------------------------------------------------- */
/* ===== FOOTER & BUTTONS ===== */
/* ---------------------------------------------------------------------- */
footer {
  padding: 24px;
  text-align: center;
  color: #bbb;
  background: var(--dark);
  margin-top: 0;
  font-size: 14px;
}

/* ===== Soft animations (A) ===== */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-slow {
  transition-delay: 0.12s;
}
.btn-floating {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.18);
  z-index: 1600;
  cursor: pointer;
}
.btn-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(90deg, var(--gold), #f2c94c);
  color: #111;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(245, 180, 0, 0.12);
  z-index: 1600;
  cursor: pointer;
}
.btn-floating small {
  font-size: 13px;
  color: #02220f;
  font-weight: 700;
}
.btn-floating svg {
  width: 20px;
  height: 20px;
  display: block;
}
.skip {
  position: absolute;
  left: 8px;
  top: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 8px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
}

/* ---------------------------------------------------------------------- */
/* ===== RESPONSIVE DESIGN (Fine-tuned) ===== */
/* ---------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .constrain {
    flex-direction: column-reverse;
    padding: 12px;
  }

  .left {
    min-width: unset;
    text-align: center;
  }

  .vertical {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
    max-width: 400px; /* Keep info grid narrow on small screens */
    margin-left: auto;
    margin-right: auto;
  }

  .price-row {
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none; /* Reduce shadow for smaller screen */
  }

  .right {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-right {
    width: 100%;
  }

  .nav {
    padding: 10px 14px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 32px;
  }

  .price {
    font-size: 36px;
  }

  .section {
    padding: 40px 15px; /* Less padding on small screen */
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .fac-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .connect-grid {
    grid-template-columns: 1fr;
  }

  .connect-card img {
    height: 160px;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 12px;
  }

  .btn-floating small,
  .btn-call {
    font-size: 14px;
  }
}

/* video */
.video-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}
.video-card video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}
.video-card h3 {
  margin: 12px 0;
  font-size: 16px;
  color: #333;
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card video {
    height: 635px;
  }
}