/* ========== DESIGN TOKENS ========== */
:root {
  --navy: #1B2A4A;
  --navy-light: #2A3F6A;
  --navy-dark: #111D35;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-dark: #A88A3E;
  --off-white: #F8F7F4;
  --white: #FFFFFF;
  --gray-50: #FAFAF8;
  --gray-100: #F0EFEC;
  --gray-200: #E1E0DC;
  --gray-400: #9C9B97;
  --gray-600: #6B6A66;
  --gray-800: #3A3935;
  --text: #1A1A2E;
  --text-light: #6B6A66;
  --green: #16A34A;
  --amber: #D97706;
  --blue: #2563EB;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --max-width: 1360px;
  --transition: 0.3s ease;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ========== UTILITIES ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: #B8965A;
  color: var(--white);
}

.btn--gold:hover {
  background: #A8863A;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--navy-sm {
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn--navy-sm:hover {
  background: var(--navy-light);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.header--scrolled {
  background: var(--white);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo__icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: filter 0.4s ease;
}
.header .logo__icon {
  height: 44px;
  filter: brightness(0) invert(1);
}
.header--scrolled .logo__icon {
  filter: none;
}
.footer .logo__icon {
  filter: none;
  height: 48px;
}

.logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: color 0.4s ease;
}

.header--scrolled .logo__text {
  color: var(--navy);
}

.logo--light .logo__text {
  color: var(--white);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.header--scrolled .nav__link {
  color: var(--gray-800);
}

.nav__link:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-800);
  transition: all var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--navy);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.4s ease;
}

.header--scrolled .header__phone {
  color: var(--navy);
}

.header__phone:hover {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background 0.4s ease;
}

.header--scrolled .hamburger span {
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero/apt-6.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 29, 53, 0.88) 0%, rgba(17, 29, 53, 0.75) 50%, rgba(15, 26, 46, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(197, 165, 90, 0.15);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 165, 90, 0.25);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Search Box */
.search-box {
  max-width: 860px;
  margin: 0 auto 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search-box__tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
}

.search-box__tab {
  flex: 1;
  padding: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
}

.search-box__tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: var(--gray-50);
}

.search-box__tab:hover:not(.active) {
  background: var(--gray-50);
}

.search-box__fields {
  display: flex;
  align-items: end;
  padding: 20px;
  gap: 16px;
}

.search-box__field {
  flex: 1;
}

.search-box__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.search-box__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  appearance: auto;
}

.search-box__field select:focus {
  border-color: var(--gold);
}

.search-box__btn {
  flex-shrink: 0;
  padding: 10px 24px;
}

/* Stats Row (hero) */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ========== CTA BANNERS ========== */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-banner--1 { background-image: url(../images/banners/cta-banner.jpg); }
.cta-banner--2 { background-image: url(../images/banners/divider-banner.jpg); }

.cta-banner__overlay {
  background: linear-gradient(135deg, rgba(17,29,53,0.88) 0%, rgba(17,29,53,0.8) 100%);
  padding: 80px 0;
}
.cta-banner__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner__content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  padding: 40px 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--gray-100);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(27,42,74,0.1);
  border-color: var(--gray-200);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27,42,74,0.06) 0%, rgba(197,165,90,0.08) 100%);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  transition: all 0.4s ease;
}

.service-card:hover .service-card__icon {
  background: var(--navy);
  border-radius: 12px;
  transform: scale(1.05);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--gold);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.about__text .section-title {
  text-align: left;
}

.about__text .section-title::after {
  display: none;
}

.about__desc {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about__images {
  position: relative;
  height: 460px;
}
.about__images::after {
  content: '10+\AYears';
  white-space: pre;
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.3;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  background: var(--gray-200);
  background-size: cover;
  background-position: center;
}

.about__img--1 {
  width: 65%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/about/about-1.jpg');
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.about__img--2 {
  width: 50%;
  height: 60%;
  bottom: 16px;
  right: 0;
  background-image: url('../images/about/about-2.jpg');
  box-shadow: 0 12px 32px rgba(27,42,74,0.15);
  border: 5px solid var(--white);
  z-index: 2;
}

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stats-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stats-bar__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 4px;
}

/* ========== PROPERTIES ========== */
.properties {
  padding: 100px 0;
  background: var(--off-white);
}

.properties__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.properties__tab {
  padding: 10px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.properties__tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.properties__tab:hover:not(.active) {
  border-color: var(--navy);
  color: var(--navy);
}

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

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.property-card.hidden {
  display: none;
}

.property-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-card__badge {
  display: none;
}

.property-card__body {
  padding: 20px;
}

.property-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.property-card__specs {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 14px;
}

.property-card__specs span {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.properties__empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.properties__empty h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0 8px;
}

.properties__empty p {
  font-size: 0.92rem;
  max-width: 400px;
}

.properties__cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(197,165,90,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(59,89,152,0.06) 0%, transparent 50%);
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-title::after { background: var(--gold); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(197,165,90,0.3);
}

.testimonial-card__quote {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  position: relative;
  background: url(../images/banners/contact-bg.jpg) center/cover no-repeat;
  background-attachment: fixed;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,29,53,0.92) 0%, rgba(17,29,53,0.85) 100%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.contact .section-header .section-title { color: var(--white); }
.contact .section-header .section-subtitle { color: rgba(255,255,255,0.6); }

.contact__info .section-title {
  text-align: left;
  color: var(--white);
}

.contact__info .section-title::after {
  display: none;
}

.contact__desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.contact__detail:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(197,165,90,0.3);
}

.contact__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact__detail p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  border: none;
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:required:invalid:not(:placeholder-shown),
.form-group select:required:invalid {
  border-color: var(--amber);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.contact__form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer__links--contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}

.footer__rera {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== DEVELOPERS / PARTNERS ========== */
.developers {
  padding: 72px 0 56px;
  background: var(--off-white);
  overflow: hidden;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.marquee__item:hover {
  opacity: 1;
}

.marquee__item img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.marquee__item svg {
  height: 40px;
  width: auto;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== BROWSE BY TYPE (Vertical Strips) ========== */
.categories {
  padding: 100px 0;
  background: var(--off-white);
}

.verticals {
  display: flex;
  height: 480px;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vstrip {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vstrip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  z-index: 0;
}

.vstrip--residential::before {
  background-image: url(../images/categories/residential.jpg);
}

.vstrip--commercial::before {
  background-image: url(../images/categories/commercial.jpg);
}

.vstrip--floors::before {
  background-image: url(../images/categories/floors.jpg);
}

.vstrip--plots::before {
  background-image: url(../images/categories/plots.jpg);
}

.vstrip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 29, 53, 0.85) 0%, rgba(17, 29, 53, 0.3) 50%, rgba(17, 29, 53, 0.1) 100%);
  z-index: 1;
}

.vstrip.active {
  flex: 3;
}

.vstrip.active::before {
  filter: grayscale(0%);
}

.vstrip__label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.vstrip__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.vstrip.active .vstrip__content {
  opacity: 1;
  transform: translateY(0);
}

.vstrip__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.vstrip__link {
  display: inline-block;
  padding: 8px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== ENQUIRY POPUP ========== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.popup-overlay.active {
  display: flex;
}

.popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: popupSlide 0.35s ease;
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

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

.popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}

.popup__close:hover {
  color: var(--navy);
}

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

.popup__header svg {
  margin: 0 auto 12px;
  display: block;
}

.popup__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.popup__subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
}

.popup__form .form-group {
  margin-bottom: 14px;
}

.popup__form input,
.popup__form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.popup__form input:focus,
.popup__form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.popup__form input::placeholder {
  color: var(--gray-400);
}

.popup__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  cursor: pointer;
  line-height: 1.4;
}

.popup__privacy input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.popup__privacy a {
  color: var(--navy);
  font-weight: 600;
}

.popup__privacy a:hover {
  color: var(--gold);
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

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

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn--whatsapp {
  background: #25D366;
}

.floating-btn--phone {
  background: var(--navy);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .header__phone {
    display: none;
  }
}

@media (max-width: 1024px) {

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

  .verticals {
    height: 400px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero__title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .cta-banner, .contact { background-attachment: scroll; }
  .cta-banner__overlay { padding: 60px 0; }
  .cta-banner__content h2 { font-size: 1.5rem; }

  .nav,
  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav.active .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--gray-800);
  }

  .nav.active .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
  }

  .header__actions.mobile-show {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .search-box { margin: 0 12px 40px; }
  .search-box__fields {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .search-box__field { flex: none; width: 100%; }
  .search-box__btn { width: 100%; justify-content: center; }

  .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat__number {
    font-size: 1.5rem;
  }

  .services__grid,
  .properties__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__images {
    height: 300px;
  }

  .stats-bar__inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stats-bar__number {
    font-size: 1.8rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .verticals {
    flex-direction: column;
    height: auto;
  }

  .vstrip {
    min-height: 120px;
  }

  .vstrip.active {
    min-height: 280px;
    flex: none;
  }

  .vstrip__label {
    top: 16px;
    left: 16px;
  }

  .vstrip__content {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .stats-row {
    gap: 16px;
  }

  .stat {
    flex: 0 0 calc(50% - 8px);
  }

  .contact__form {
    padding: 24px;
  }

  .popup {
    padding: 24px;
  }
}