* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
  background: #e2a23a;
  color: #fff;
  text-align: center;
  padding: 8px;
  position: relative;
  font-size: 14px;
}

.close-btn {
  position: absolute;
  right: 15px;
  cursor: pointer;
}

/* Header always fixed */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #f07c3a;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
}

.nav a.active {
  background: #f07c3a;
  color: #fff;
}

.call {
  color: red;
  font-size: 18px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

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

/* Circle Highlight */
.circle-focus {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 8px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Price Box */
.price-box {
  position: absolute;
  left: 80px;
  top: 55%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 4px;
  z-index: 4;
}

.price-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price-box p {
  color: #f07c3a;
  font-size: 16px;
  font-weight: bold;
}

/* 2ns section  */

.project-overview {
  padding: 60px 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.project-overview h1 {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}

.project-overview p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #222;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.details-grid ul {
  list-style: disc;
  padding-left: 20px;
}

.details-grid li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.details-grid strong {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .project-overview h1 {
    font-size: 22px;
  }
}

/* 3rd section  */
/* Whole section background */
.info-section {
  background: #f6f6f6; /* light grey */
  padding: 60px 0;
}

/* Centered white box */
.info-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 4px;
}

/* Two column layout */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Text styling */
.info-left h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.info-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.highlight {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
}

/* Right box */
.info-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.info-right p {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-right .call {
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-container {
    padding: 30px;
  }
}

/* 4th section  */
.about-project-section {
  background: #f7f7f7; /* Light grey background */
  padding: 70px 0;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff; /* White content box */
  padding: 50px 60px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.about-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.section-divider {
  border: none;
  height: 1px;
  background: #c58b45; /* Golden divider like screenshot */
  margin: 40px 0;
}

.highlights-list {
  padding-left: 20px;
}

.highlights-list li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-container {
    padding: 30px;
  }

  .section-title {
    font-size: 22px;
  }
}
/* 5th section */

.location-section {
  background: #f7f7f7; /* light grey section background */
  padding: 70px 0;
}

.location-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff; /* white content block */
  padding: 50px 60px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

.location-list {
  padding-left: 20px;
  margin-bottom: 35px;
}

.location-list li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
}

.sub-heading {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  border-bottom: 2px solid #c58b45; /* golden line */
  display: inline-block;
  padding-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .location-container {
    padding: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  .sub-heading {
    font-size: 20px;
  }
}
/* Amenities section  */

.amenities-section {
  background: #f7f7f7; /* light grey section background */
  padding: 70px 0;
}

.amenities-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff; /* white content box */
  padding: 50px 60px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 2px solid #c58b45;
  display: inline-block;
  padding-bottom: 6px;
}

/* Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.amenity-card {
  position: relative;
  overflow: hidden;
}

.amenity-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Bottom label */
.amenity-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #a87419; /* golden bar */
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
}

/* Hover effect (optional but premium) */
.amenity-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .amenities-container {
    padding: 30px;
  }
}

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

/* Price list section  */
.payment-section {
  background: #f7f7f7;
  padding: 70px 0;
}

.payment-container {
  max-width: 1200px;
  margin: auto;
  background: #fff3e8; /* light peach */
  padding: 40px;
  border: 2px solid #d28c3c; /* golden border */
}

.payment-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.table-responsive {
  overflow-x: auto;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff3e8;
}

.payment-table th,
.payment-table td {
  border: 1px solid #d28c3c;
  padding: 10px;
  font-size: 15px;
  text-align: center;
}

.payment-table th {
  background: #fde6d1;
  font-weight: 700;
}

.payment-table td:nth-child(2) {
  text-align: left;
}

.mt {
  margin-top: 25px;
}

/* Mobile */
@media (max-width: 768px) {
  .payment-container {
    padding: 20px;
  }

  .payment-title {
    font-size: 22px;
  }
}

/* location section  */

.location-map-section {
  background: #f7f7f7;
  padding: 70px 0;
}

.location-map-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
  border-bottom: 2px solid #c58b45;
  display: inline-block;
  padding-bottom: 6px;
}

.location-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-map-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.location-points {
  padding-left: 20px;
  margin-top: 15px;
}

.location-points li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Map */
.location-map-embed iframe {
  width: 100%;
  height: 320px;
  border: 2px solid #c58b45;
}

/* Responsive */
@media (max-width: 768px) {
  .location-map-grid {
    grid-template-columns: 1fr;
  }

  .location-map-container {
    padding: 30px;
  }

  .location-map-embed iframe {
    height: 280px;
  }
}
/* contact us  */

/* ================= CONTACT FORM ================= */
.contact-section {
  padding: 120px 40px;
  background: #ffffff;
  max-width: 700px;
  margin: auto;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hide honeypot */
#website {
  display: none;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.3s ease;
}

.field textarea {
  min-height: 120px;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #d6ab4a;
  box-shadow: 0 0 0 3px rgba(214, 171, 74, 0.2);
}

/* Error text */
.error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  display: block;
  min-height: 16px;
}

/* Shake animation */
.shake {
  animation: shake 0.35s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Submit button */
button {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  background: #0b1220;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Loader */
.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.mobile-sales-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sales-btn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: #59b833;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 3000;
  }
}

/* nav responsive  */
/* =========================
   HEADER BASE (DESKTOP SAFE)
========================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #0b1b2b;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav a.active {
  border-bottom: 2px solid #f5b942;
}

.call {
  font-size: 16px;
  white-space: nowrap;
}

/* =========================
   BURGER (AUTO GENERATED)
========================= */
.header::after {
  content: "";
  display: none;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .header {
    height: 60px;
  }

  /* Burger icon using pseudo element */
  .header::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow:
      0 -8px 0 #fff,
      0 8px 0 #fff;
    cursor: pointer;
  }

  /* Hide nav initially */
  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #0b1b2b;
    flex-direction: column;
    padding: 30px 20px;
    transition: 0.4s ease;
  }

  .nav a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav.show {
    left: 0;
  }

  /* Hide top call on mobile */
  .call {
    display: none;
  }
}

/*Form css start here */

.form-box {
  width: 60%;
  margin: 0 auto;
  display: block;
  background: #fff;
  padding: 25px;

  border-radius: 10px;
}

.field {
  margin-bottom: 10px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.error {
  border-color: red;
}

.success {
  border-color: green;
}

small {
  color: red;
  font-size: 12px;
  display: none;
}

/* 🔥 Shake animation */
.shake {
  animation: shake 0.3s;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

button {
  width: 100%;
  padding: 10px;
  background: green;
  color: white;
  border: none;
  border-radius: 5px;
  position: relative;
}

.loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.loader.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.email-wrapper {
  position: relative;
}

.email-wrapper img {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 20px;
}

/*Form css end here */
