:root {
  --primary: #1f6feb;
  --primary-soft: rgba(31, 111, 235, 0.1);
  --accent: #f4b400;
  --dark: #111827;
  --light: #f9fafb;
  --text-muted: #6b7280;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* body {
  font-family: "Poppins", sans-serif;
  background: #020617;
  DEFAULT = DARK THEME
  color: #e5e7eb;
  line-height: 1.6;
} */

body {
  font-family: "Poppins", sans-serif;
  background: #f9fafb !important;
  color: #111827;
  line-height: 1.6;
}







a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1200px, 100% - 2rem);
   
  margin: 0 auto;

 
}

.container-home{
  width: 100%;
}

section {
  /* padding: 5rem 0; */
  position: relative;
}

section:nth-child(even) {
  background: #020617;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: .5rem;
 
  color: #559974;
}

.section-title p {
  color: var(--text-muted);
  font-size: .95rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--primary-soft);
  color: #2d426a;
}

.badge i {
  color: var(--accent);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(15, 23, 42, .95), rgba(15, 23, 42, .75));
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo span {
  color: var(--primary);
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 30%;
  background: radial-gradient(circle at 20% 0%, #60a5fa, #1d4ed8);
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  color: var(--light);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav ul li a {
  font-size: .9rem;
  color: #e5e7eb;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #f97316);
  transition: width .3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #559974, #559974);
  color: white;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 12px 25px rgba(37, 99, 235, .5);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, .7);
}

/* Theme toggle */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.theme-toggle i {
  pointer-events: none;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: .25rem;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    inset: 4.2rem 1rem auto 1rem;
    background: #020617;
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    box-shadow: var(--shadow-soft);
  }

  nav ul.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  .nav-right .btn-primary {
    display: none;
  }
}

/* Hero Section */
/* #home {
  padding-top: 4.2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
} */

/* #home::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, .2), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, .18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(56, 189, 248, .16), transparent 55%);
  opacity: .9;
  pointer-events: none;
  z-index: -1;
} 

.hero-grid {
  display: grid; 
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center; 
}*/

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  margin-bottom: .8rem;
}

.hero-copy h1 span {
  background: linear-gradient(120deg, #60a5fa, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: .95rem;
  color: #d1d5db;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, .65);
  border: 1px solid rgba(148, 163, 184, .4);
  backdrop-filter: blur(10px);
}

.hero-highlight i {
  color: #34d399;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .8);
  background: rgba(15, 23, 42, .7);
  cursor: pointer;
  font-size: .85rem;
  color: #e5e7eb;
}

.btn-ghost i {
  color: #facc15;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: .8rem;
  color: var(--text-muted);
}

.hero-meta strong {
  display: block;
  color: #e5e7eb;
  font-size: 1rem;
}

/* Hero Slider */
.hero-slider-wrapper {
  position: relative;
  /* border-radius: 2rem; */
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
}

.hero-slides {
  position: relative;
  height: 400px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .7s ease, transform .7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .8), rgba(15, 23, 42, .1));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f9fafb;
}

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgb(170 182 205 / 70%);
  font-size: .75rem;
  margin-bottom: .4rem;
}

.hero-slide-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-slide-meta {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
  font-size: .8rem;
}

.hero-slide-meta i {
  color: #fde68a;
}

.hero-slider-dots {
  position: absolute;
  right: 1.4rem;
  top: 8.4rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.hero-dot {
  width: 8px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .6);
  border: 1px solid rgba(148, 163, 184, .7);
  cursor: pointer;
}

.hero-dot.active {
  background: linear-gradient(180deg, #f97316, #60a5fa);
  border-color: transparent;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-slides {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
  }
}

/* Gallery */
#gallery {
  background: radial-gradient(circle at top, rgba(37, 99, 235, .08), transparent 55%), #020617;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(51, 65, 85, .7);
  background: #020617;
  isolation: isolate;
}

.gallery-item img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.gallery-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: .75rem .85rem;
  background: linear-gradient(to top, rgba(15, 23, 42, .95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: .8rem;
}

.gallery-info h4 {
  font-size: .9rem;
}

.gallery-tag {
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, .9);
  border: 1px solid rgba(148, 163, 184, .5);
  font-size: .7rem;
}

/* About Us */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: .95rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-item {
  min-width: 120px;
}

.stat-item strong {
  display: block;
  font-size: 1.4rem;
  color: #fbbf24;
}

.stat-item span {
  font-size: .8rem;
  color: var(--text-muted);
}

.about-card {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, .4), rgba(15, 23, 42, 1));
  border-radius: 1.7rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 64, 175, .5);
}

.about-card h3 {
  margin-bottom: .75rem;
}

.about-card ul {
  list-style: none;
  font-size: .9rem;
}

.about-card li {
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #e5e7eb;
}

.about-card li i {
  color: #4ade80;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}



.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-pill {
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, .8);
  background: rgba(15, 23, 42, .7);
  font-size: .8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #e5e7eb;
}

.filter-pill.active {
  background: linear-gradient(135deg, #2563eb, #f97316);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(37, 99, 235, .5);
}

.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.apartment-card {
  background: #020617;
  border-radius: 1.4rem;
  border: 1px solid rgba(55, 65, 81, .9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .7);
}

.apartment-image-wrap {
  position: relative;
  cursor: pointer;
}

.apartment-image-wrap img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.apartment-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, .9);
  border: 1px solid rgba(148, 163, 184, .8);
  font-size: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.apartment-price {
  position: absolute;
  bottom: .7rem;
  right: .9rem;
  padding: .3rem .75rem;
  border-radius: .9rem;
  background: rgba(15, 23, 42, .9);
  font-size: .8rem;
}

.apartment-body {
  padding: 1.2rem 1.1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.apartment-body h3 {
  font-size: 1rem;
  margin-bottom: .2rem;
}

.apt-location {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.apt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .75rem;
}

.apt-tag {
  padding: .2rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, .8);
  background: rgba(15, 23, 42, .8);
}

.apt-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-muted);
}

.apt-meta span i {
  margin-right: .25rem;
  color: #fde68a;
}

.apartment-footer {
  padding: .9rem 1.1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  border-top: 1px solid rgba(31, 41, 55, .9);
}

.btn-outline {
  flex: 1;
  padding: .5rem .7rem;
  border-radius: .9rem;
  border: 1px solid rgba(75, 85, 99, .9);
  background: rgba(15, 23, 42, .85);
  color: #e5e7eb;
  font-size: .8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

.btn-outline i {
  color: #34d399;
}

.btn-link {
  font-size: .78rem;
  background: none;
  border: none;
  color: #93c5fd;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  white-space: nowrap;
}

.btn-link i {
  font-size: .9rem;
}

/* Map Panel */
.map-panel {
  margin-top: 2.5rem;
  background: #020617;
  border-radius: 1.5rem;
  border: 1px solid rgba(55, 65, 81, .9);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  min-height: 260px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: .9rem;
}

.map-info h3 {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
}

.map-info h3 i {
  color: #22c55e;
}

.map-property {
  font-size: .88rem;
  color: #d1d5db;
}

.map-mini-details {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .map-panel {
    grid-template-columns: minmax(0, 1fr);
    min-height: 220px;
  }

  .map-panel iframe {
    height: 230px;
  }
}

/* Blogs */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.blog-card {
  background: #020617;
  border-radius: 1.4rem;
  border: 1px solid rgba(55, 65, 81, .9);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .7);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-muted);
}

.blog-title {
  font-size: .98rem;
  font-weight: 600;
}

.blog-card p {
  font-size: .85rem;
  color: #d1d5db;
}

.blog-card a {
  font-size: .8rem;
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .25rem;
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  /* display: grid; */
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 2rem;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(55, 65, 81, .9);
  background: rgba(15, 23, 42, .9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: .9rem 1rem;
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  cursor: pointer;
  align-items: center;
}

.faq-question i {
  font-size: .9rem;
  color: #60a5fa;
  transition: transform .25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  font-size: .85rem;
  color: var(--text-muted);
  transition: max-height .25s ease, padding-bottom .25s ease;
}

.faq-item.active .faq-answer {
  max-height: 120px;
  padding-bottom: .8rem;
}

.faq-side {
  font-size: .88rem;
  color: #d1d5db;
  background: radial-gradient(circle at top, rgba(37, 99, 235, .45), rgba(15, 23, 42, 1));
  border-radius: 1.7rem;
  padding: 1.5rem;
  border: 1px solid rgba(37, 99, 235, .5);
  box-shadow: var(--shadow-soft);
}

.faq-side h3 {
  margin-bottom: .6rem;
}

.faq-side ul {
  margin-top: .6rem;
  padding-left: 1rem;
}

.faq-side li {
  margin-bottom: .35rem;
}

@media (max-width: 900px) {
  .faq-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}


.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
  gap: 2rem;
}

.contact-card {
  background: #020617;
  border-radius: 1.7rem;
  border: 1px solid rgba(55, 65, 81, .9);
  padding: 1.6rem;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .8);
}

.contact-card h3 {
  margin-bottom: .4rem;
}

.contact-card p {
  font-size: .88rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem .9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: .78rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #cbd5f5;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .55rem .65rem;
  border-radius: .8rem;
  border: 1px solid rgba(75, 85, 99, .9);
  background: rgba(15, 23, 42, .95);
  color: #e5e7eb;
  font-size: .85rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #3b82f6;
}

.form-actions {
  margin-top: .8rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.form-note {
  font-size: .75rem;
  color: var(--text-muted);
}

.contact-info {
  display: grid;
  gap: 1rem;
  font-size: .88rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.info-icon {
  width: 32px;
  height: 32px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(75, 85, 99, .9);
}

.info-icon i {
  color: #facc15;
}

.info-item h4 {
  font-size: .9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .4rem;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 85, 99, .9);
  background: rgba(15, 23, 42, .9);
  font-size: .85rem;
  color: #e5e7eb;
}

.social-links a:hover {
  border-color: #60a5fa;
}

.whatsapp {
  color: #22c55e;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */
footer {
  padding: 1rem 0 1.8rem;
  border-top: 1px solid rgba(31, 41, 55, .9);
  background: #020617;
  font-size: .78rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Image Modal */
.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.image-modal.show {
  display: flex;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
}

.image-modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.image-modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.image-modal-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.image-modal-nav.prev {
  left: .7rem;
}

.image-modal-nav.next {
  right: .7rem;
}

.image-modal-counter {
  position: absolute;
  bottom: .5rem;
  right: .7rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

/* ------------ LIGHT MODE (ON TOGGLE) ------------ */

body.dark-mode {
  background: #020617;
  color: #2d426a;
}

/* body.light-mode {
  background: #f5f6f8;
  color: #111827;
} */

/* Header light */
body.dark-mode header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #d1d5db;
}

/* body.dark-mode nav ul {
  background: #ffffff;
} */

body.dark-mode nav ul li a {
  color: #0b0f0d;
}

/* Theme toggle in light */
body.dark-mode .theme-toggle {
  background: #ffffff;
  color: #111827;
  border: 1px solid #cbd5e1;
}

/* Sections background */
body.dark-mode section {
  background: #ffffff;
}

body.dark-mode section:nth-child(even) {
  background: #f9fafb;
}

/* Hero text & chips */
body.dark-mode .hero-sub {
  color: #4b5563;
}

body.dark-mode .hero-highlight {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

/* Cards & panels */
body.dark-mode .gallery-item,
body.dark-mode .about-card,
body.dark-mode .apartment-card,
body.dark-mode .blog-card,
body.dark-mode .faq-item,
body.dark-mode .faq-side,
body.dark-mode .contact-card,
body.dark-mode .map-panel {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

body.dark-mode .gallery-info h4,
body.dark-mode .apt-location,
body.dark-mode .blog-title {
  color: #111827;
}

/* Tags / chip badges */
body.dark-mode .apt-tag,
body.dark-mode .gallery-tag,
body.dark-mode .btn-ghost,
body.dark-mode .info-icon,
body.dark-mode .social-links a {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #111827;
}

/* Apartment badges & price in light */
body.dark-mode .apartment-price,
body.dark-mode .apartment-badge {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d1d5db;
  color: #0f172a;
}

/* Text blocks */
body.dark-mode .about-text p,
body.dark-mode .contact-card p,
body.dark-mode .blog-card p,
body.dark-mode .map-property {
  color: #475569;
}

body.dark-mode .map-mini-details span {
  color: #4b5563;
}

/* Forms */
body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
  background: #ffffff;
  color: #111827;
  border: 1px solid #cbd5e1;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
  color: #9ca3af;
}

body.dark-mode .form-group label {
  color: #111827;
}

/* FAQ */
body.dark-mode .faq-question {
  color: #111827;
}

body.dark-mode .faq-answer {
  color: #4b5563;
}

/* Info icons */
body.dark-mode .info-icon {
  background: #ffffff;
  border-color: #d1d5db;
}







/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  color: var(--dark);
  font-size: .9rem;
  background-color: var(--light);
}

.lang-flag {
  font-size: 1.05rem;
}

.lang-menu {
  position: absolute;
  top: 3.9rem;
  right: 1rem;
  background:var(--light);
  border: 1px solid rgba(55, 65, 85, 0.8);
  border-radius: .8rem;
  padding: .4rem;
  display: none;
  z-index: 1200;
}

.lang-menu.show {
  display: block;
}

.lang-option {
  padding: .45rem .7rem;
  border-radius: .6rem;
  display: flex;
  gap: .5rem;
  align-items: center;
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.03);
}




/* Footer */
body.dark-mode footer {
  background: #ffffff;
  color: var(--dark);
  border-top: 1px solid #d1d5db;
}


/* Footer (ml- namespace) */
.ml-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

/* footer top row */
.ml-footer-compact {
  background: radial-gradient(circle at bottom, rgba(37, 99, 235, .12), transparent 60%), #020617;
  color: #fff;
  padding: 24px 0 16px;
  font-family: Inter, system-ui, Arial, sans-serif;
}

.ml-footer-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* brand + lang toggle row */
.ml-footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ml-footer-name {
  font-size: 1.05rem;
  color:#559974;

}

.ml-lang-toggle {
  display: flex;
  gap: 8px;
}

/* .ml-lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
} */

/* .ml-lang-btn.active {
  background: #fff;
  color: #0f172a;
  border-color: #fff;
} */

/* links grid */
.ml-footer-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ml-footer-col {
  min-width: 160px;
  flex: 1 1 200px;
}

.ml-footer-col h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  color:#559974;
}

.ml-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ml-footer-col a {
  color:var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.ml-footer-col a:hover {
  color:var(--dark);
  text-decoration: underline;
}

/* bottom */
.ml-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 18px;
  padding: 12px 0 18px 0;
  color: var(--dark);
}

.ml-footer-bottom .ml-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.ml-footer-copy,
.ml-footer-tag {
  font-size: 0.9rem;
  color: var(--dark);
}

/* responsive */
@media (max-width:760px) {
  .ml-footer-grid {
    flex-direction: column;
    gap: 14px;
  }

  .ml-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ml-footer-bottom .ml-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* Pricing */


.apartment-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #0ea5e9;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.apartment-image-wrap {
  position: relative;
}


/* Amenity list with blue tick mark */
.amenity-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amenity-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.amenity-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e5e7eb;     /* Blue tick color */
  font-weight: 900;
  font-size: 0.85rem;
}








/* More details  */


/* ================================
   ABOUT HERO – PREMIUM VERSION
================================ */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;

  /* Modern gradient */
  background: linear-gradient(
    120deg,
    #1e3c72,
    #2a5298,
    #1e3c72
  ) !important;
}

/* soft light overlay */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.18),
    transparent 60%
  )!important;
}

/* floating glow shapes */
.about-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.12),
    transparent 70%
  )!important;
  top: -180px;
  right: -180px;
}

/* ================================
   HERO CONTENT
================================ */
.about-hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
  color: #ffffff;
}

.hero-badge {
  display: inline-block;
  padding: 10px 22px;
  margin-bottom: 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  background: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25)!important;
}

.about-hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.8;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
    padding-top: 70px;
  }

  .about-hero::after {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -120px;
  }
}


/* =========================
   ABOUT CONTENT
========================= */
.about-content {
  padding: 90px 20px;
  background: #ffffff;
}

.about-text-row {
  max-width: 900px;
  margin: 0 auto 70px;
}

.about-text-row:last-child {
  margin-bottom: 0;
}

.about-text-row h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text-row p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .about-hero {
    min-height: 55vh;
  }

  .about-content {
    padding: 70px 15px;
  }

  .about-text-row h2 {
    font-size: 1.7rem;
  }
}



.pricing-list {
  max-width: auto;
  margin: auto;
}

.price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-weight: 500;
}

.price-location {
  color: #1f2937;
}

.price-type {
  color: #374151;
}

.price-amount {
  text-align: right;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 768px) {
  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .price-type,
  .price-amount {
    text-align: left;
  }
}



/* Map  */

.map-icon {
  cursor: pointer;
  color: #007bff;
}

.map-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.map-modal-content {
  background: #fff;
  width: 90%;
  max-width: 650px;
  margin: 8% auto;
  padding: 15px;
  border-radius: 6px;
  position: relative;
}

.map-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
}

#mapError {
  display: none;
  text-align: center;
  padding: 25px;
  color: #d9534f;
  font-size: 16px;
  font-weight: 600;
}




/* New css for banner */


.home-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

/* Main label (small but strong – like a book chapter) */
.home-heading h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #6b7280);
  margin-bottom: 0.6rem;
}

/* Main title (book heading) */
.home-heading h5 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #549874;
  margin-bottom: 1rem;
}

/* Description (book paragraph) */
.home-heading .hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted, #6b7280);
  max-width: 720px;
  margin: 0 auto;
}


.red-strik{
  color:red;
}



/* home page images  */
.feature-card {
  width: 95%;
  margin: 3rem auto;
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  min-height: 25rem;
}

/* LEFT IMAGE AREA */
.feature-media {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slide.active {
  display: block;
}

/* Image Tag */
.media-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 999px;
  z-index: 2;
  font-weight: 600;
}

/* Slider Nav */
.navs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  color: #111;
}

.navs.prev { left: 1rem; }
.navs.next { right: 1rem; }

/* RIGHT CONTENT */
.feature-content {
  width: 50%;
  padding: 2.5rem 2.8rem;
}

.feature-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  color: #549874;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content li {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}

.feature-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .feature-card {
    flex-direction: column;
  }

  .feature-media,
  .feature-content {
    width: 100%;
  }

  .feature-media {
    height: 280px;
  }
}




/* More details */

/* ===============================
   FEATURE CONTENT ENHANCEMENTS
================================ */

.feature-points {
  margin: 0.6rem 0 1rem;
  padding-left: 1.1rem;
}

.feature-points li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Bottom Details Wrapper */
.feature-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Price + Meta Row */
.details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.details-row .price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #559974;
}

.details-row .meta {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Tags */
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.detail-tags span {
  background: #f3f4f6;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #374151;
}

/* About Location */
.about-location p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.about-location .read-more {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  margin-left: 0.25rem;
}

.about-location .read-more:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .details-row {
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .details-row {
    flex-direction: column;
    align-items: flex-start;
  }
}




.readmore-btn-flash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #559974;
  color: #559974;
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

/* FAST ATTENTION ANIMATION */
.readmore-btn-flash {
  animation: flashMove 1.2s infinite ease-in-out;
}

@keyframes flashMove {
  0% {
    transform: translateX(0);
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
  50% {
    transform: translateX(6px);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.6);
  }
  100% {
    transform: translateX(0);
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* HOVER — STRONG ACTION FEEL */
.readmore-btn-flash:hover {
  background: #2563eb;
  color: #fff;
  transform: translateX(8px) scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}

/* RIPPLE FLASH EFFECT */
.readmore-btn-flash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(37,99,235,0.35) 10%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.readmore-btn-flash:hover::after {
  opacity: 1;
}




/* captcaha */

/* ================= CAPTCHA ================= */

.captcha-group {
  margin-top: 10px;
}

.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.captcha-img {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.captcha-refresh {
  background: #eef2ff;
  color: #4f46e5;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s ease;
}

.captcha-refresh:hover {
  background: #e0e7ff;
}

.captcha-group input {
  margin-top: 4px;
}