/* ============================================================
   AGGARWAL BANDHU PROPERTIES — STYLESHEET
   Light Mode | Professional Design System
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --navy:        #0D1B2E;
  --navy-mid:    #1A3353;
  --navy-light:  #2E5180;
  --gold:        #B8892A;
  --gold-warm:   #D4A94A;
  --gold-deep:   #8A6618;
  --gold-pale:   #FDF6E6;
  --white:       #FFFFFF;
  --off-white:   #F9F7F3;
  --cream:       #F2EDE3;
  --stone:       #E8E2D6;
  --text-body:   #4A4640;
  --text-light:  #9C9890;
  --border:      #E5E0D5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --section-py:  96px;
  --container:   1240px;
  --px:          clamp(20px, 5vw, 56px);

  --shadow-xs:  0 1px 4px rgba(13,27,46,0.06);
  --shadow-sm:  0 3px 12px rgba(13,27,46,0.08);
  --shadow-md:  0 8px 28px rgba(13,27,46,0.11);
  --shadow-lg:  0 20px 52px rgba(13,27,46,0.14);
  --shadow-xl:  0 36px 72px rgba(13,27,46,0.18);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body   { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img    { display: block; max-width: 100%; height: auto; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

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

/* ── Typography Helpers ── */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 540px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 5px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,27,46,0.22);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,137,42,0.3);
}
.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s ease, color 0.25s ease;
}
.btn-text-link:hover { gap: 12px; color: var(--gold-deep); }

/* Shimmer on solid buttons */
.btn-navy::before,
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.16), transparent);
  transition: left 0.5s ease;
}
.btn-navy:hover::before,
.btn-gold:hover::before { left: 140%; }


/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--gold);
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
}
.announcement-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 18px rgba(13,27,46,0.09); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 42px;
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
}
.navbar__logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.navbar__logo-mark svg { width: 20px; height: 20px; }
.navbar__logo-text { display: flex; align-items: center; line-height: 1; }
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.navbar__logo-name span { color: var(--gold); }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  transition: color 0.25s ease;
  padding: 4px 0;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.navbar__link:hover,
.navbar__link.active { color: var(--navy); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }
.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  white-space: nowrap;
}
.navbar__phone i { color: var(--gold); font-size: 12px; transition: color 0.2s; }
.navbar__phone:hover { background: var(--gold); color: var(--white); }
.navbar__phone:hover i { color: var(--white); }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 1.8px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.navbar__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.navbar__mobile.open { max-height: 400px; }
.navbar__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.navbar__mobile a:hover { color: var(--gold); }
.navbar__mobile a:last-child { border-bottom: none; }


/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero__geo {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 64px 0 80px;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--gold); display: block; }
.hero__subtitle {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__avatars { display: flex; }
.hero__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  object-fit: cover;
  margin-left: -10px;
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__trust-label { font-size: 13px; color: var(--text-body); }
.hero__trust-label strong { color: var(--navy); font-weight: 600; }
.hero__trust-sep { width: 1px; height: 22px; background: var(--border); }
.hero__rating { font-size: 13px; color: var(--text-body); display: flex; align-items: center; gap: 5px; }
.hero__rating .s { color: #F4A30A; font-size: 14px; }

/* Hero Visual */
.hero__visual { position: relative; height: 580px; }
.hero__img-primary {
  position: absolute;
  top: 0; right: 0;
  width: 84%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__img-primary img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.hero__img-primary:hover img { transform: scale(1.04); }
.hero__img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 50%;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid var(--off-white);
  box-shadow: var(--shadow-lg);
}
.hero__img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.hero__float-badge {
  position: absolute;
  top: 36px; left: -10px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.hero__float-badge-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero__float-badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.hero__float-badge-lbl { font-size: 11px; color: var(--text-light); font-weight: 500; }
.hero__rera-badge {
  position: absolute;
  bottom: 48px; right: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.hero__rera-badge .tick {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-warm);
  font-size: 14px;
}


/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.marquee-section {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-warm);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   STATS — HORIZONTAL BAR
   ============================================================ */
.stats-section {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child  { border-right: none; padding-right: 0; text-align: right; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-item:first-child .stat-value { justify-content: flex-start; }
.stat-item:last-child  .stat-value { justify-content: flex-end; }
.stat-item:not(:first-child):not(:last-child) .stat-value { justify-content: center; }
.stat-value .plus { color: var(--gold); font-size: 2rem; }
.stat-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}


/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual { position: relative; }
.about__watermark {
  position: absolute;
  top: -20px; left: -30px;
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 700;
  color: rgba(13,27,46,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.about__main-img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  height: 540px;
}
.about__main-img img { width: 100%; height: 100%; object-fit: cover; }
.about__secondary-img {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 46%;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  border: 6px solid var(--off-white);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.about__secondary-img img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  top: 40px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about__badge-txt {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}
.about__content { padding-right: 16px; }
.about__divider { width: 56px; height: 2px; background: var(--gold); margin: 28px 0; }
.about__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about__points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-body);
}
.about__point-icon {
  width: 24px; height: 24px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about__mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.about__mini-stat { text-align: center; }
.about__mini-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.about__mini-stat-num span { color: var(--gold); }
.about__mini-stat-lbl { font-size: 11px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }


/* ============================================================
   PROPERTIES — TABS + EDITORIAL GRID
   ============================================================ */
.properties-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.props-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
/* Property Gallery (static 3-col grid) */
.props-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Editorial Grid */
.props-editorial {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.props-stacked { display: flex; flex-direction: column; gap: 20px; }
.props-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Property Card */
.prop-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.prop-card__thumb {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.prop-card--featured .prop-card__thumb { height: 340px; }
.prop-card--small   .prop-card__thumb { height: 155px; }
.prop-card--regular .prop-card__thumb { height: 210px; }
.prop-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.prop-card:hover .prop-card__thumb img { transform: scale(1.07); }
.prop-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}
.badge-ready        { background: #D4EDDA; color: #16622B; }
.badge-premium      { background: var(--gold); color: var(--white); }
.badge-construction { background: rgba(255,255,255,0.9); color: var(--navy); border: 1px solid rgba(0,0,0,0.08); }
.prop-card__save {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s ease;
  color: var(--text-light);
}
.prop-card__save:hover { background: var(--gold-pale); color: var(--gold); }
.prop-card__body { padding: 18px 20px; flex: 1; }
.prop-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.prop-card--featured .prop-card__price { font-size: 1.55rem; }
.prop-card--small    .prop-card__price { font-size: 1.1rem; }
.prop-card--regular  .prop-card__price { font-size: 1.2rem; }
.prop-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.prop-card--featured .prop-card__name { font-size: 1.35rem; }
.prop-card--small    .prop-card__name { font-size: 1rem; }
.prop-card--regular  .prop-card__name { font-size: 1.1rem; }
.prop-card__loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.prop-card__loc i { font-size: 10px; color: var(--gold); }
.prop-card__specs {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-body);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.prop-card--small .prop-card__specs { display: none; }
.prop-card__spec { display: flex; align-items: center; gap: 4px; }

/* Property card action buttons */
.prop-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.prop-card__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.prop-card__btn--buy {
  background: var(--gold);
  color: var(--white);
}
.prop-card__btn--buy:hover { background: var(--gold-warm); color: var(--white); }
.prop-card__btn--call {
  background: var(--navy);
  color: var(--white);
}
.prop-card__btn--call:hover { background: #0d2340; color: var(--white); }

/* ============================================================
   HOW WE WORK — PROCESS STEPS
   ============================================================ */
.process-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.process-section .section-heading { margin-top: 12px; margin-bottom: 60px; }
.process__header { text-align: center; margin-bottom: 64px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5%);
  width: calc(75%);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 8px,
    transparent 8px, transparent 18px
  );
  z-index: 0;
}
.process-step { padding: 0 28px; text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 22px;
  transition: all 0.35s var(--ease-back);
  position: relative;
}
.process-step:hover .process-step__num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(184,137,42,0.3);
}
.process-step__emoji { font-size: 1.6rem; display: block; margin-bottom: 14px; }
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
}


/* ============================================================
   WHY CHOOSE US — IMAGE + FEATURE ROWS
   ============================================================ */
.why-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__visual { position: relative; }
.why__main-img {
  border-radius: 10px;
  overflow: hidden;
  height: 540px;
}
.why__main-img img { width: 100%; height: 100%; object-fit: cover; }
.why__overlay-cards {
  position: absolute;
  bottom: 32px;
  right: -24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why__mini-card {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  border: 1px solid var(--border);
}
.why__mini-card-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why__mini-card-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.why__mini-card-lbl {
  font-size: 10.5px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.why__features { display: flex; flex-direction: column; gap: 0; }
.why__feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
}
.why__feature:first-child { padding-top: 0; }
.why__feature:last-child { border-bottom: none; }
.why__feature:hover { padding-left: 4px; }
.why__feature-icon {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.why__feature:hover .why__feature-icon { background: var(--gold); }
.why__feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.why__feature-desc { font-size: 13.5px; color: var(--text-body); line-height: 1.65; }


/* ============================================================
   GALLERY — MASONRY GRID
   ============================================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.gallery__header { text-align: center; margin-bottom: 50px; }
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__cap {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,0);
  display: flex; align-items: flex-end;
  padding: 16px;
  transition: background 0.35s ease;
}
.gallery-item:hover .gallery-item__cap { background: rgba(13,27,46,0.4); }
.gallery-item__cap span {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}
.gallery-item:hover .gallery-item__cap span { opacity: 1; transform: translateY(0); }


/* ============================================================
   TESTIMONIALS — DARK FULL-WIDTH
   ============================================================ */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -100px; left: 3%;
  font-family: var(--font-display);
  font-size: 700px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials-section .overline {
  color: var(--gold-warm);
  justify-content: center;
}
.testimonials-section .overline::before { background: var(--gold-warm); }
.testimonials-section .section-heading { color: var(--white); text-align: center; margin-bottom: 56px; }
.testi-slider { max-width: 840px; margin: 0 auto; position: relative; }
.testi-track { overflow: hidden; }
.testi-slide { display: none; }
.testi-slide.active {
  display: block;
  animation: tSlide 0.5s ease;
}
@keyframes tSlide {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testi-content { text-align: center; padding: 0 40px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testi-author img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-warm);
}
.testi-name { font-size: 15px; font-weight: 600; color: var(--white); text-align: left; }
.testi-city { font-size: 12px; color: rgba(255,255,255,0.45); text-align: left; margin-top: 2px; }
.testi-stars { color: var(--gold-warm); font-size: 12px; letter-spacing: 2px; text-align: left; margin-top: 3px; }
.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 48px;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 16px;
}
.testi-btn:hover { border-color: var(--gold-warm); color: var(--gold-warm); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testi-dot.active { background: var(--gold-warm); transform: scale(1.4); }


/* ============================================================
   AREAS WE SERVE
   ============================================================ */
.areas-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.areas-section .section-heading { margin-top: 12px; margin-bottom: 48px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.area-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.area-card--tall { grid-row: span 2; }
.area-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.area-card:hover img { transform: scale(1.07); }
.area-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.72) 0%, rgba(13,27,46,0.08) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  transition: background 0.35s ease;
}
.area-card:hover .area-card__overlay {
  background: linear-gradient(to top, rgba(13,27,46,0.85) 0%, rgba(13,27,46,0.15) 55%);
}
.area-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.area-card__count { font-size: 11.5px; color: rgba(255,255,255,0.65); }
.area-card__pin {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 13px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.3s ease;
}
.area-card:hover .area-card__pin { opacity: 1; transform: translateY(0); }


/* ============================================================
   AWARDS / CERTIFICATIONS
   ============================================================ */
.awards-section {
  padding: 52px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.awards-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.awards-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap;
}
.awards-list {
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap; justify-content: center;
}
.award-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-body);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.25s ease;
}
.award-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.award-badge .icon { font-size: 1.2rem; }


/* ============================================================
   FAQ — TWO-COLUMN LAYOUT
   ============================================================ */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}
.faq__sticky { position: sticky; top: 120px; }
.faq__sticky .section-heading { margin-top: 12px; margin-bottom: 20px; }
.faq__sticky p { font-size: 14.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 28px; }
.faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.25s;
  gap: 16px;
  background: none; border: none;
  width: 100%; text-align: left;
  font-family: var(--font-body);
}
.faq-q:hover,
.faq-q.open { color: var(--gold); }
.faq-q-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--text-light);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-q.open .faq-q-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 18px; }
.faq-a p { font-size: 14px; color: var(--text-body); line-height: 1.75; }


/* ============================================================
   BLOG / NEWS
   ============================================================ */
.blog-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card__img { height: 220px; overflow: hidden; }
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 12px; width: fit-content;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy); line-height: 1.35;
  margin-bottom: 10px; flex: 1;
  transition: color 0.25s;
}
.blog-card:hover .blog-card__title { color: var(--gold); }
.blog-card__excerpt { font-size: 13.5px; color: var(--text-body); line-height: 1.65; margin-bottom: 18px; }
.blog-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.blog-card__date { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.blog-card__read {
  font-size: 12px; font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.25s ease;
}
.blog-card:hover .blog-card__read { gap: 8px; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 90px solid rgba(184,137,42,0.07);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 8%;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 60px solid rgba(184,137,42,0.05);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner .overline { color: var(--gold-warm); justify-content: center; }
.cta-inner .overline::before { background: var(--gold-warm); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600; color: var(--white);
  line-height: 1.2; margin: 16px 0 20px;
}
.cta-title em { font-style: italic; color: var(--gold-warm); }
.cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.55);
  margin-bottom: 38px; line-height: 1.75;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600;
  color: var(--navy); margin: 12px 0 18px;
}
.contact-desc {
  font-size: 14.5px; color: var(--text-body);
  line-height: 1.78; margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-lbl {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 3px;
}
.contact-detail-val {
  font-size: 14.5px; font-weight: 500; color: var(--navy);
}
.contact-detail-val a { transition: color 0.25s; }
.contact-detail-val a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-body);
  transition: all 0.25s ease;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--navy); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light);
}
.form-ctrl {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px; color: var(--navy);
  background: var(--off-white);
  transition: all 0.25s ease;
  appearance: none;
}
.form-ctrl::placeholder { color: var(--text-light); }
.form-ctrl:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(184,137,42,0.1); }
textarea.form-ctrl { resize: vertical; min-height: 108px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  border-radius: 6px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  transition: all 0.3s ease; margin-top: 4px;
  position: relative; overflow: hidden;
  font-family: var(--font-body);
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form-submit::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.form-submit:hover::before { left: 140%; }
#form-ok { display: none; text-align: center; padding: 30px 0; }
#form-ok .ok-icon { font-size: 3.5rem; display: block; margin-bottom: 16px; }
#form-ok h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
#form-ok p  { font-size: 14px; color: var(--text-body); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  white-space: nowrap;
}
.footer__brand-name span { color: var(--gold-warm); }
.footer__tagline {
  font-size: 13.5px; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 24px; max-width: 270px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 14px;
  transition: all 0.25s ease;
}
.footer__social-btn:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
  background: rgba(212,169,74,0.1);
}
.footer__col-head {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__lnk {
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  transition: color 0.25s ease; display: flex; align-items: center; gap: 6px;
}
.footer__lnk::before { content: '→'; font-size: 11px; opacity: 0; transform: translateX(-6px); transition: all 0.25s; }
.footer__lnk:hover { color: var(--gold-warm); }
.footer__lnk:hover::before { opacity: 1; transform: translateX(0); }
.footer__contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer__contact-row i { color: var(--gold-warm); margin-top: 2px; flex-shrink: 0; font-size: 13px; }
.footer__contact-txt {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer__contact-txt a { color: inherit; transition: color 0.25s; }
.footer__contact-txt a:hover { color: var(--gold-warm); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; flex-wrap: wrap; gap: 12px;
}
.footer__copy,
.footer__made {
  font-size: 12px; color: rgba(255,255,255,0.28);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a {
  font-size: 12px; color: rgba(255,255,255,0.28);
  transition: color 0.25s;
}
.footer__legal a:hover { color: var(--gold-warm); }


/* ============================================================
   WHATSAPP FLOAT + SCROLL TOP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 23px;
  box-shadow: 0 6px 22px rgba(37,211,102,0.42);
  transition: all 0.3s ease;
}
.wa-float:hover { background: #1EB85A; transform: scale(1.1); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,0.42), 0 0 0 0 rgba(37,211,102,0.38); }
  70%      { box-shadow: 0 6px 22px rgba(37,211,102,0.42), 0 0 0 16px rgba(37,211,102,0); }
}
.wa-float { animation: wa-pulse 2.5s infinite; }
.scroll-top {
  position: fixed;
  bottom: 94px; right: 30px;
  z-index: 999;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  opacity: 0; transform: translateY(12px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-py: 72px; }
  .hero__inner { gap: 40px; }
  .hero__img-secondary,
  .hero__float-badge,
  .hero__rera-badge { display: none; }
  .about__secondary-img,
  .about__badge { display: none; }
  .why__overlay-cards { right: -8px; }
  .gallery-masonry { columns: 3; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .area-card--tall { grid-row: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__geo { display: none; }
  .hero__visual { height: 380px; }
  .hero__img-primary { width: 100%; height: 100%; position: relative; top: auto; right: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 32px; text-align: left; }
  .stat-item:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:last-child .stat-value { justify-content: flex-start; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .props-gallery { grid-template-columns: 1fr 1fr; }
  .props-editorial { grid-template-columns: 1fr; }
  .props-row { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__overlay-cards { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 20px; gap: 12px; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__sticky { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
  .navbar__links,
  .navbar__phone,
  .navbar__right > .btn { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile { display: flex; }
  /* Shrink logo on mobile */
  .navbar__logo-img  { height: 30px; }
  .navbar__logo-name { font-size: 13px; }
  .navbar__logo      { gap: 6px; }
  .navbar__inner     { gap: 8px; padding: 10px 0; }
  /* Hero: clear fixed navbar, sit near top */
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .hero__inner { padding: 16px 0 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .testi-content { padding: 0 16px; }
  .awards-inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .props-gallery { grid-template-columns: 1fr; }
  .props-editorial { grid-template-columns: 1fr; }
  /* Stack maps vertically on mobile */
  .maps-grid { grid-template-columns: 1fr !important; }
  .props-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .awards-list { gap: 12px; }
}


/* ============================================================
   VERTICAL SOCIAL SIDEBAR (fixed bottom-right)
   ============================================================ */
.social-sidebar {
  position: fixed;
  right: 0;
  bottom: 130px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: -3px 0 18px rgba(0,0,0,0.28);
}
.ssb-item {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}
.ssb-item:hover { filter: brightness(1.18); transform: translateX(-4px); }
.ssb-call { background: var(--gold); }
.ssb-wa   { background: #25D366; }
.ssb-fb   { background: #1877f2; }
.ssb-ig   { background: linear-gradient(160deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ssb-yt   { background: #ff0000; }

@media (max-width: 768px) {
  .social-sidebar { bottom: 72px; }
  .ssb-item { width: 42px; height: 42px; font-size: 16px; }
  /* Move scroll-top left so it doesn't clash with sidebar */
  .scroll-top { right: auto; left: 16px; }
}
@media (max-width: 480px) {
  .social-sidebar { bottom: 64px; }
  .ssb-item { width: 38px; height: 38px; font-size: 14px; }
}
@media print { .social-sidebar { display: none; } }

/* Navbar mobile call button — shown only on mobile */
.navbar__call-mobile {
  display: none;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.navbar__call-mobile i { font-size: 10px; }

@media (max-width: 768px) {
  .navbar__call-mobile { display: flex; }
  .navbar__right { display: flex; align-items: center; gap: 8px; }
}
@media (max-width: 380px) {
  .navbar__call-mobile { padding: 5px 9px; font-size: 11px; }
}
