/* Import Outfit and Inter Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* CSS Variables */
:root {
  --primary: #AF843E;
  /* Emerald Green */
  --primary-hover: #AF843E;
  --primary-dark: #AF843E;
  --secondary: #eab308;
  --secondary-hover: #ca8a04;
  --dark-bg: #0b0f19;
  /* Sleek Deep Dark */
  --dark-section: #111827;
  /* Rich Charcoal */
  --light-bg: #f8fafc;
  --light-section: #ffffff;
  --card-dark: #1f2937;
  --card-light: #f1f5f9;
  --text-light: #f3f4f6;
  --text-dark: #111827;
  --text-muted: #9ca3af;
  --text-muted-dark: #4b5563;
  /* --font-heading: 'Outfit', sans-serif; */
  /* --font-body: 'Inter', sans-serif; */
  font-family: "Poppins", sans-serif;
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-primary: 0 10px 20px -3px rgba(16, 185, 129, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--dark-section);
  color: var(--text-light);
}

.section-light {
  background-color: var(--light-section);
  color: var(--text-dark);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-desc {
  margin-top: 16px;
  font-size: 1.1rem;
}

.section-dark .section-desc {
  color: var(--text-muted);
}

.section-light .section-desc {
  color: var(--text-muted-dark);
}

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  /* box-shadow: var(--shadow-primary); */
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  /* background-color: var(--secondary); */
  background-color: #fff;
  color: var(--dark-bg);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Header & Glassmorphic Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled .navbar {
  padding: 12px 0;
}

header.scrolled .nav-link {
  color: var(--text-light);
}

header.scrolled .nav-logo span {
  color: white;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 70px;
}

.nav-logo img {
  border-radius: 4px;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.92rem;
}

body.home-dark .nav-link {
  color: var(--text-light);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

body.home-dark .menu-toggle span {
  background-color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-color: var(--dark-bg);
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, rgba(11, 15, 25, 0.95) 40%, rgba(11, 15, 25, 0.7) 100%); */
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.023) 0%, transparent 50%),
    linear-gradient(135deg, rgba(11, 15, 25, 0.449) 40%, rgba(11, 15, 25, 0.7) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  filter: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  display: inline-block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.hero-feat-item {
  display: flex;
  flex-direction: column;
}

.hero-feat-val {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  /* color: var(--secondary); */
}

.hero-feat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Quick Inquiry Card inside Hero */
.hero-inquiry {
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out;
}

.hero-inquiry h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-align: center;
}

.hero-inquiry p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(17, 24, 39, 0.5);
  color: white;
  font-family: var(--font-body);
  transition: var(--transition);
}

.section-light .form-control {
  background-color: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.btn-form {
  width: 100%;
  margin-top: 12px;
}

.form-promises {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-promise-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-promise-item svg {
  color: var(--primary);
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.overview-img-wrapper {
  position: relative;
}

.overview-img-wrapper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--border-radius);
  z-index: 0;
}

.overview-img {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.overview-img img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.overview-img:hover img {
  transform: scale(1.03);
}

.overview-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.overview-text p {
  margin-bottom: 20px;
  color: var(--text-muted-dark);
}

.overview-key-points {
  margin-top: 30px;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.key-point svg {
  color: var(--primary);
}

/* Highlights Section */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.highlight-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}

.highlight-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing / Plot Packages */
.price-container {
  max-width: 600px;
  margin: 0 auto;
}

.price-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--primary);
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.price-card h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.price-sub {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.price-val {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.price-val span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted-dark);
}

.price-tax {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.price-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
}

/* Strategic Development Section */
.strat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.strat-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.strat-mini-card {
  background-color: var(--card-dark);
  padding: 30px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.strat-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
}

.strat-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(234, 179, 8, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 16px;
}

.strat-mini-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.strat-mini-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.strat-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.strat-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.strat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strat-item {
  display: flex;
  gap: 14px;
}

.strat-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.strat-item span {
  font-size: 0.95rem;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.amenity-card {
  background-color: var(--card-light);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.amenity-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.15);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background-color: var(--primary);
  color: var(--white);
}

.amenity-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.amenity-card p {
  color: var(--text-muted-dark);
  font-size: 0.85rem;
}

/* Location Advantage */
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.loc-content h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.loc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* background-color: rgba(16, 185, 129, 0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.loc-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.loc-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.loc-img-wrapper {
  background-color: var(--card-dark);
  padding: 16px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
}

.loc-img-wrapper img {
  border-radius: calc(var(--border-radius) - 4px);
  width: 100%;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 16px;
  transition: var(--transition);
}

.faq-icon-box {
  color: var(--text-muted-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.2);
}

.faq-item.active .faq-header h3 {
  color: var(--primary);
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-body {
  max-height: 1000px;
  /* arbitrary high value for smooth animation */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Contact Footer Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-detail-text a {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-detail-text a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background-color: var(--card-dark);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}

/* Footer Copyright */
.footer-bottom {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Sticky WhatsApp & Back to top Widget */
.sticky-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.widget-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.widget-whatsapp {
  background-color: #25d366;
  color: white;
}

.widget-scrolltop {
  background-color: var(--primary);
  color: white;
  opacity: 0;
  visibility: hidden;
}

.widget-scrolltop.show {
  opacity: 1;
  visibility: visible;
}

/* Enquiry On-Load Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--card-dark);
  color: white;
  border-radius: var(--border-radius);
  max-width: 480px;
  width: 90%;
  position: relative;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  /* color: var(--secondary); */
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Response Success Modal / Message Style */
.form-success-msg {
  display: none;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--primary);
  color: var(--text-light);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.section-light .form-success-msg {
  color: var(--primary-dark);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding-top: 40px;
  }

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

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

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

  .hero-inquiry {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .overview-grid,
  .strat-grid,
  .loc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-img-wrapper {
    max-width: 500px;
    margin: 0 auto 30px auto;
  }

  .loc-img-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    background-color: var(--dark-bg);
  }

  .navbar {
    padding: 16px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    color: var(--text-light) !important;
    font-size: 1.25rem;
    width: 100%;
    padding: 8px 0;
  }

  .nav-cta {
    display: none;
    /* Hide custom nav CTAs on mobile, show inside menu toggle or footer */
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .strat-card-list {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .overview-key-points {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 24px;
  }

  .price-val {
    font-size: 2.2rem;
  }

  .contact-form-wrapper,
  .modal-box {
    padding: 24px;
  }
}







/* adm */
.title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  border-bottom: 3px solid #1f5b8d;
  padding-bottom: 10px;
}

.wrapper {
  display: grid;
  grid-template-columns: 260px 1fr 320px;
  gap: 15px;
}

/* Left Images */

.left-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.small-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: .4s;
}

.small-card:hover img {
  transform: scale(1.05);
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 20px;
}

/* Center Image */

.main-image {
  overflow: hidden;
  border-radius: 10px;
}

.main-image img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  transition: .5s;
}

.main-image:hover img {
  transform: scale(1.03);
}

/* Right Panel */

.facilities {
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.facilities h2 {
  background: #1b4f84;
  color: #fff;
  padding: 18px;
  text-align: center;
  font-size: 28px;
}

.facilities ul {
  list-style: none;
}

.facilities li {
  padding: 14px 20px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #18345d;
  transition: .3s;
}

.facilities li:hover {
  background: #eaf2fb;
  padding-left: 30px;
}

.facilities li::before {
  content: "❖";
  color: #123f73;
  font-size: 18px;
}

/* Responsive */

@media(max-width:1100px) {

  .wrapper {
    grid-template-columns: 1fr;
  }

  .main-image img {
    min-height: 400px;
  }

  .left-gallery {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .small-card {
    flex: 1 1 250px;
  }

}

@media(max-width:600px) {

  .title {
    font-size: 24px;
  }

  .facilities h2 {
    font-size: 22px;
  }

  .facilities li {
    font-size: 17px;
  }

}




/* master plan */
.masterplan {
  padding: 80px 0;
  background: #f6f8fb;
}

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

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  border-bottom: 3px solid #1f5b8d;
  padding-bottom: 10px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  font-weight: normal;
  /* margin-bottom: 10px; */
}

.hero-map {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  margin-bottom: 60px;
}

.hero-map img {
  width: 100%;
  display: block;
  transition: .5s;
}

.hero-map:hover img {
  transform: scale(1.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: .4s;
  padding: 20px;
}

.stat-card:hover {
  transform: translateY(-10px);
}

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

.stat-card h3 {
  font-size: 26px;
  color: #AF843E;
  margin: 20px 0 8px;
}

.stat-card span,
.stat-card p {
  display: block;
  /* padding: 20px; */
  font-size: 16px;
  font-weight: 400;
  color: #3c3c3c;
}

.active {
  border-top: 6px solid #28a745;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .4s;
}

.highlight-box:hover {
  background: #0F4C81;
  color: #fff;
  transform: translateY(-8px);
}

.icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.highlight-box h4 {
  margin-bottom: 15px;
  font-size: 24px;
}

.highlight-box p {
  line-height: 1.7;
}

@media(max-width:991px) {

  .stats-grid,
  .highlights {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 32px;
  }

}


/* land */
.land-availability {
      padding: 80px 0;
      background: #f5f8fc;
      font-family: Poppins, sans-serif;
    }

    .container {
      max-width: 1350px;
      margin: auto;
      padding: 0 20px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-header h2 {
      font-size: 34px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #222;
      border-bottom: 3px solid #1f5b8d;
      padding-bottom: 10px;
    }

    .section-header p {
      font-size: 18px;
      color: #666;
    }

    .land-wrapper {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 35px;
      align-items: start;
    }

    .land-table {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }

    .table-title {
      background: #123f73;
      color: white;
      padding: 6px;
      font-size: 20px;
      font-weight: 600;
      text-align: center;
    }

    .land-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 18px;
      color: white;
    }

    .land-card h4 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .land-card small {
      font-size: 14px;
      opacity: .9;
    }

    .land-card h3 {
      font-size: 26px;
    }

    .industrial {
      background: #7765a8;
    }

    .residential {
      background: #e9df8a;
      color: #222;
    }

    .corridor {
      background: #efcf53;
      color: #222;
    }

    .tourism {
      background: #5e9c73;
    }

    .sports {
      background: #5dbb8a;
    }

    .infra {
      background: #d7d7d7;
      color: #222;
    }

    .community {
      background: #c11e10;
    }

    .total-card {
      background: #123f73;
      color: white;
      text-align: center;
      padding: 25px;
    }

    .total-card span {
      font-size: 18px;
    }

    .total-card h2 {
      font-size: 42px;
      margin-top: 8px;
    }

    .map-section {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }

    .map-header {
      background: #123f73;
      color: white;
      padding: 6px;
      text-align: center;
      font-size: 20px;
      font-weight: 600;
    }

    .map-section img {
      width: 100%;
      display: block;
      padding: 25px;
      transition: .5s;
    }

    .map-section img:hover {
      transform: scale(1.03);
    }

    .land-card:hover {
      transform: translateX(8px);
      transition: .3s;
    }

    @media(max-width:992px) {

      .land-wrapper {
        grid-template-columns: 1fr;
      }

      .section-header h2 {
        font-size: 30px;
      }

    }

    .amenities-section {
      padding: 90px 0;
      background: #f8fafc;
    }

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

    .heading {
      text-align: center;
      margin-bottom: 60px;
    }

    .heading span {
      color: #c28a2d;
      font-weight: 700;
      letter-spacing: 3px;
      font-size: 14px;
    }

    .heading h2 {
      font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 3px solid #1f5b8d;
    padding-bottom: 10px;
    }

    .heading p {
      max-width: 750px;
      margin: auto;
      font-size: 18px;
      line-height: 1.8;
      color: #64748b;
    }

    .amenities-grid {

      display: grid;

      grid-template-columns: repeat(3, 1fr);

      gap: 30px;

    }

    .amenity-card {

      background: white;

      padding: 35px;

      border-radius: 18px;

      text-align: center;

      box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

      transition: .4s;

      border: 1px solid #edf2f7;

    }

    .amenity-card:hover {

      transform: translateY(-10px);

      background: linear-gradient(135deg, #0f4c81, #1663a6);

      color: #fff;

    }

    .icon {

      width: 80px;

      height: 80px;

      margin: auto;

      margin-bottom: 20px;

      border-radius: 50%;

      display: flex;

      align-items: center;

      justify-content: center;

      font-size: 38px;

      background: #eef5ff;

      transition: .4s;

    }

    .amenity-card:hover .icon {

      background: #fff;

      transform: rotate(8deg) scale(1.1);

    }

    .amenity-card h4 {

      font-size: 22px;

      font-weight: 600;

    }

    @media(max-width:992px) {

      .amenities-grid {

        grid-template-columns: repeat(2, 1fr);

      }

    }

    @media(max-width:600px) {

      .heading h2 {

        font-size: 34px;

      }

      .amenities-grid {

        grid-template-columns: 1fr;

      }

    }