/* =========================================================
   LUXE REALTY INDIA — style.css
   CSS Namespace: .realty-
   ========================================================= */

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  --realty-white:       #162032;
  --realty-offwhite:    #0B1120;
  --realty-cream:       #1E293B;
  --realty-black:       #FFFFFF;
  --realty-charcoal:    #F8FAFC;
  --realty-grey:        #94A3B8;
  --realty-lightgrey:   #334155;
  --realty-gold:        #E5C07B;
  --realty-gold-light:  #F3E5AB;
  --realty-gold-dark:   #C8A359;

  --font-serif: 'Playfair Display', serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --realty-radius-sm: 2px;
  --realty-radius:    4px;
  --realty-shadow:    0 8px 40px rgba(0,0,0,0.08);
  --realty-shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --realty-transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
.realty-wrapper *,
.realty-wrapper *::before,
.realty-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.realty-wrapper {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--realty-charcoal);
  background-color: var(--realty-offwhite);
  line-height: 1.65;
}
.realty-wrapper > section,
.realty-wrapper > footer {
  position: relative;
  z-index: 10;
}
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 46px;
  overflow-x: hidden;
}

.realty-wrapper h1,
.realty-wrapper h2,
.realty-wrapper h3,
.realty-wrapper h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--realty-black);
  line-height: 1.2;
}

.realty-wrapper em { font-style: italic; }

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

.realty-wrapper ul { list-style: none; }
.realty-wrapper img { max-width: 100%; display: block; }
.realty-wrapper button { cursor: pointer; border: none; background: none; font-family: inherit; }
.realty-wrapper input,
.realty-wrapper select,
.realty-wrapper textarea { font-family: var(--font-sans); }

.realty-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.realty-properties__grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.realty-properties__grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.realty-agents__grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.realty-agents__grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.realty-agents__grid .reveal-item:nth-child(4) { transition-delay: 0.3s; }
.realty-testimonials__grid .reveal-item:nth-child(2) { transition-delay: 0.15s; }

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.realty-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--realty-gold);
  margin-bottom: 16px;
}

.realty-eyebrow--light { color: var(--realty-gold-light); }

.realty-section-title {
  font-size: 3rem;
  font-weight: 500;
  color: var(--realty-black);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.realty-section-sub {
  font-size: 1.05rem;
  color: var(--realty-grey);
  max-width: 600px;
  line-height: 1.8;
}

.realty-section-head {
  text-align: center;
  margin-bottom: 64px;
}

.realty-section-head .realty-section-sub {
  margin: 0 auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.realty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--realty-radius-sm);
  transition: var(--realty-transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.realty-btn.realty-btn--outline {
  border-color: rgba(255,255,255,0.7);
  color: #FFFFFF;
  background: transparent;
}
.realty-btn.realty-btn--outline:hover {
  background: var(--realty-white);
  color: var(--realty-black);
  border-color: var(--realty-white);
}

.realty-btn.realty-btn--dark {
  background: var(--realty-black);
  color: var(--realty-white);
  border-color: var(--realty-black);
}
.realty-btn.realty-btn--dark:hover {
  background: var(--realty-charcoal);
  border-color: var(--realty-charcoal);
}

.realty-btn.realty-btn--solid {
  background: var(--realty-black);
  color: var(--realty-white);
  border-color: var(--realty-black);
}
.realty-btn.realty-btn--solid:hover {
  background: #333;
}

.realty-btn.realty-btn--gold {
  background: var(--realty-gold);
  color: #0B1120;
  border-color: var(--realty-gold);
  font-weight: 700;
}
.realty-btn.realty-btn--gold:hover {
  background: var(--realty-gold-light);
  border-color: var(--realty-gold-light);
}

/* =========================================================
   HEADER
   ========================================================= */
.realty-header {
  position: fixed;
  top: 46px;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 28px 0;
  transition: var(--realty-transition);
  background: transparent;
}
.realty-header.realty-header--scrolled {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.realty-header .realty-header__logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 3px;
  text-decoration: none;
}

.realty-header .realty-header__logo span { color: var(--realty-gold); }

.realty-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.realty-header .realty-nav__list a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}

.realty-header .realty-nav__list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--realty-gold);
  transition: width 0.3s ease;
}

.realty-header .realty-nav__list a:hover { color: #FFFFFF; }
.realty-header .realty-nav__list a:hover::after { width: 100%; }

.realty-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  background: transparent;
  border: none;
}

.realty-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--realty-transition);
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.realty-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #0B1120;
  z-index: 1100;
  flex-direction: column;
  padding: 40px 32px;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.realty-drawer.is-open {
  right: 0;
}

.realty-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFFFFF;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.realty-drawer__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 3px;
  margin-top: 20px;
}

.realty-drawer__logo span { color: var(--realty-gold); }

.realty-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.realty-drawer__nav li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.realty-drawer__nav a {
  display: block;
  padding: 18px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

.realty-drawer__btn { margin-top: auto; width: 100%; }

.realty-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  backdrop-filter: blur(2px);
}

.realty-drawer-overlay.is-open { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.realty-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.realty-hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('../img/hero.jpg') center center / cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.realty-hero__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: -1;
}

.realty-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: 120px;
}

.realty-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--realty-gold);
  margin-bottom: 24px;
  display: block;
}

.realty-hero .realty-hero__title {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.realty-hero .realty-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* Search Box */
.realty-searchbox {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 12px 16px 12px 36px;
  text-align: left;
}

.realty-searchbox__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 24px 12px 0;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 24px;
}

.realty-searchbox__field:nth-child(5) {
  border-right: none;
  margin-right: 16px;
}

.realty-searchbox__divider { display: none; }

.realty-searchbox__field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--realty-grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.realty-searchbox__field select {
  width: 100%;
  padding: 4px 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--realty-black);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.realty-searchbox__field select option {
  background: var(--realty-white);
  color: var(--realty-black);
}

.realty-searchbox__btn {
  padding: 0 40px;
  height: 60px;
  border-radius: 100px;
  flex-shrink: 0;
  font-size: 0.85rem;
  gap: 8px;
}

/* Scroll Hint */
.realty-hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.realty-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =========================================================
   LEAD GEN MODAL
   ========================================================= */
.realty-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.realty-modal.is-open { display: flex; }

.realty-modal__box {
  background: var(--realty-white);
  max-width: 480px;
  width: 100%;
  padding: 56px 48px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  border-radius: var(--realty-radius);
}

.realty-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--realty-grey);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.realty-modal__close:hover { color: var(--realty-black); }

.realty-modal__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--realty-gold);
  margin-bottom: 12px;
}

.realty-modal__title {
  font-size: 1.9rem;
  color: var(--realty-black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.realty-modal__sub {
  font-size: 0.92rem;
  color: var(--realty-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}

.realty-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.realty-modal__form input {
  padding: 14px 16px;
  border: 1px solid var(--realty-lightgrey);
  border-radius: var(--realty-radius-sm);
  font-size: 0.95rem;
  color: var(--realty-black);
  background: var(--realty-cream);
  outline: none;
  transition: border-color 0.3s ease;
}
.realty-modal__form input::placeholder {
  color: var(--realty-grey);
}
.realty-modal__form input:focus { border-color: var(--realty-gold); }
.realty-modal__form .realty-btn { width: 100%; margin-top: 4px; }

.realty-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  backdrop-filter: blur(4px);
}

.realty-modal-overlay.is-open { display: block; }

/* =========================================================
   STATS SECTION
   ========================================================= */
.realty-stats {
  background: #0B1120;
  padding: 48px 0;
  border-top: 1px solid #fff374;
}

.realty-stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.realty-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
}

.realty-stat__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.realty-stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.realty-stat__sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* =========================================================
   FEATURED PROPERTIES
   ========================================================= */
.realty-properties {
  padding: 120px 0;
  background: #0B1120;
  border-top: 1px solid #fff374;
}

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

/* Property Card */
.realty-card {
  background: var(--realty-white);
  border-radius: var(--realty-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--realty-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.realty-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.realty-card__img {
  width: 100%;
  height: 100%;
  background-color: #C9B89A;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s ease;
}

.realty-card:hover .realty-card__img {
  transform: scale(1.06);
}

.realty-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--realty-black);
  color: var(--realty-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--realty-radius-sm);
}

.realty-card__tag--gold {
  background: var(--realty-gold);
  color: var(--realty-black);
}

.realty-card__body {
  padding: 36px 32px 32px;
}

.realty-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--realty-grey);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.realty-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--realty-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.realty-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--realty-black);
  margin-bottom: 16px;
  font-family: var(--font-sans);
  letter-spacing: -0.5px;
}

.realty-card__specs {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--realty-grey);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--realty-lightgrey);
}

.realty-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--realty-black);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.realty-card__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--realty-gold);
  transition: width 0.3s ease;
}

.realty-card:hover .realty-card__link::after { width: 100%; }
.realty-card__link:hover { color: var(--realty-gold-dark); }

/* Featured card emphasis */
.realty-card--featured {
  grid-row: span 1;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.realty-about {
  padding: 130px 0;
  background: #0B1120;
  border-top: 1px solid #fff374;
}

.realty-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.realty-about__image-col {
  position: relative;
}

.realty-about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: url('../img/about.jpg') center / cover no-repeat;
  background-color: #C9B89A;
  border-radius: var(--realty-radius);
}

.realty-about__img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 50%;
  aspect-ratio: 3/4;
  background: url('../img/about2.jpg') center / cover no-repeat;
  background-color: var(--realty-gold-dark);
  border-radius: var(--realty-radius);
  border: 6px solid var(--realty-cream);
}

.realty-about__badge {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--realty-black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  border: 3px solid var(--realty-gold);
}

.realty-about__badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--realty-gold);
  line-height: 1;
}

.realty-about__badge-text {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

.realty-about__para {
  color: var(--realty-grey);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.85;
}

.realty-about__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 40px;
}

.realty-about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.realty-about__pillar-icon {
  width: 28px;
  height: 28px;
  background: var(--realty-gold);
  color: var(--realty-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.realty-about__pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--realty-black);
  margin-bottom: 4px;
}

.realty-about__pillar p {
  font-size: 0.88rem;
  color: var(--realty-grey);
  line-height: 1.6;
}

/* =========================================================
   PROMO BANNER
   ========================================================= */
.realty-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.realty-banner__bg {
  position: absolute;
  inset: 0;
  background: url('../img/banner.jpg') center / cover no-repeat;
  background-color: #0B1120;
}

.realty-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.72);
}

.realty-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.realty-banner .realty-banner__title {
  font-size: 2.8rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 12px;
  letter-spacing: -0.02em;
}

/* =========================================================
   AGENTS
   ========================================================= */
.realty-agents {
  padding: 120px 0;
  background: #0B1120;
  border-top: 1px solid #fff374;
}

.realty-agents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.realty-agent-card {
  background: var(--realty-white);
  border-radius: var(--realty-radius);
  overflow: hidden;
  box-shadow: var(--realty-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.realty-agent-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #C9B89A;
  background-position: center top;
  background-size: cover;
}

.realty-agent-card__body {
  padding: 24px 20px 20px;
}

.realty-agent-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--realty-black);
  margin-bottom: 4px;
}

.realty-agent-card__role {
  font-size: 0.8rem;
  color: var(--realty-grey);
  margin-bottom: 8px;
}

.realty-agent-card__sales {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--realty-gold-dark);
  margin-bottom: 14px;
}

.realty-agent-card__contact a {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--realty-black);
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--realty-lightgrey);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.realty-agent-card__contact a:hover {
  color: var(--realty-gold-dark);
  border-color: var(--realty-gold);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.realty-testimonials {
  padding: 120px 0;
  background: #0B1120;
  border-top: 1px solid #fff374;
}

.realty-testimonials .realty-section-title {
  color: #FFFFFF;
}

.realty-testimonials .realty-section-head {
  margin-bottom: 64px;
}

.realty-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.realty-testimonial {
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--realty-radius);
  background: rgba(255,255,255,0.05);
  position: relative;
}

.realty-testimonial::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  font-family: var(--font-serif);
  color: var(--realty-gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 8px;
}

.realty-testimonial__quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 28px;
  padding-top: 0;
}

.realty-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.realty-testimonial__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

.realty-testimonial__detail {
  font-size: 0.78rem;
  color: var(--realty-gold);
  letter-spacing: 0.5px;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.realty-contact {
  padding: 0;
  background: #0B1120;
  border-top: 1px solid #fff374;
}

.realty-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.realty-contact__text {
  padding: 100px 60px 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.realty-contact .realty-contact__title {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.realty-contact__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 420px;
}

.realty-contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.realty-contact__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.realty-contact__info-item svg { color: var(--realty-gold); flex-shrink: 0; }

.realty-contact__form-wrap {
  background: var(--realty-white);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.realty-contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--realty-black);
}

.realty-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.realty-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.realty-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.realty-form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--realty-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.realty-form-field input,
.realty-form-field select,
.realty-form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--realty-lightgrey);
  border-radius: var(--realty-radius-sm);
  font-size: 0.95rem;
  color: var(--realty-black);
  background: var(--realty-cream);
  outline: none;
  transition: border-color 0.3s ease;
}
.realty-form-field input::placeholder,
.realty-form-field textarea::placeholder {
  color: var(--realty-grey);
}
.realty-form-field select option {
  background: var(--realty-cream);
  color: var(--realty-black);
}
.realty-form-field input:focus,
.realty-form-field select:focus,
.realty-form-field textarea:focus {
  border-color: var(--realty-gold);
}

.realty-form-field textarea { resize: vertical; }

/* =========================================================
   FOOTER
   ========================================================= */
.realty-footer {
  background: #0B1120;
  padding: 80px 0 0;
  border-top: 1px solid #fff374;
}

.realty-footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.realty-footer__logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.realty-footer__logo span { color: var(--realty-gold); }

.realty-footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}

.realty-footer__socials {
  display: flex;
  gap: 14px;
}

.realty-footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.realty-footer__socials a:hover {
  border-color: var(--realty-gold);
  color: var(--realty-gold);
}

.realty-footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.realty-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.realty-footer__col ul li,
.realty-footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.realty-footer__col ul a:hover {
  color: var(--realty-gold);
}

.realty-footer__bottom {
  padding: 24px 0;
}

.realty-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.realty-footer__bottom-inner p {
  font-size: 0.78rem;
  color: #FFFFFF;
}

.realty-footer__bottom-links {
  display: flex;
  gap: 24px;
}

.realty-footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.realty-footer__bottom-links a:hover { color: #FFFFFF; }

/* =========================================================
   MOBILE STICKY BAR
   ========================================================= */
.realty-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 12px;
  gap: 12px;
}

.realty-sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  height: 48px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--realty-transition);
}

.realty-sticky-bar__btn--whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
}

.realty-sticky-bar__btn--schedule {
  background: var(--realty-gold);
  color: #0B1120 !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .realty-container { padding: 0 32px; }
  .realty-about__inner { gap: 60px; }
  .realty-contact__text { padding: 80px 40px 80px 0; }
  .realty-contact__form-wrap { padding: 60px 40px; }
  .realty-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .realty-hero .realty-hero__title { font-size: 4rem; }
  .realty-section-title { font-size: 2.4rem; }
  .realty-properties__grid { grid-template-columns: 1fr 1fr; }
  .realty-agents__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .realty-about__inner { grid-template-columns: 1fr; gap: 80px; }
  .realty-about__img-accent { right: -20px; }
  .realty-banner .realty-banner__title { font-size: 2.2rem; }
  .realty-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .realty-nav, .realty-header__cta { display: none; }
  .realty-hamburger { display: flex; }
  .realty-drawer { display: flex; }
  .realty-contact__inner { grid-template-columns: 1fr; }
  .realty-contact__text { padding: 80px 0 40px; }
  .realty-contact__form-wrap { padding: 48px 32px; }
  .realty-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .realty-container { padding: 0 20px; }
  .realty-hero__overlay { background: linear-gradient(to bottom, rgba(11, 17, 32, 0.5) 0%, rgba(11, 17, 32, 0.95) 100%) !important; }
  .realty-hero .realty-hero__title { font-size: 2.8rem; text-shadow: 0 4px 16px rgba(0,0,0,0.8); }
  .realty-hero .realty-hero__subtitle { font-size: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
  .realty-hero__content { padding-top: 120px; padding-bottom: 80px; }
  .realty-section-title { font-size: 2rem; }
  .realty-properties { padding: 80px 0; }
  .realty-properties__grid { grid-template-columns: 1fr; }
  .realty-about { padding: 80px 0; }
  .realty-about__img-accent { display: none; }
  .realty-about__badge { right: 16px; top: 16px; }
  .realty-agents { padding: 80px 0; }
  .realty-agents__grid { grid-template-columns: 1fr 1fr; }
  .realty-testimonials { padding: 80px 0; }
  .realty-testimonials__grid { grid-template-columns: 1fr; gap: 24px; }
  .realty-banner { padding: 70px 0; }
  .realty-banner .realty-banner__title { font-size: 1.8rem; }
  .realty-footer { padding: 60px 0 0; }
  .realty-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .realty-footer__bottom-inner { flex-direction: column; text-align: center; gap: 12px; }

  /* Search box — premium mobile form card */
  .realty-searchbox {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px 0;
    align-items: stretch;
    text-align: left;
  }
  .realty-searchbox__field {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 22px;
    margin-right: 0;
    text-align: left;
    gap: 2px;
  }
  .realty-searchbox__field label {
    color: var(--realty-gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-align: left;
  }
  .realty-searchbox__field select {
    color: #FFFFFF !important;
    font-size: 1rem;
    font-weight: 600;
    text-align: left !important;
    text-align-last: left !important;
  }
  .realty-searchbox__field:nth-child(5) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-right: 0;
  }
  .realty-searchbox__btn {
    margin: 8px 16px 8px;
    padding: 14px 24px;
    border-radius: 100px;
    height: auto;
    align-self: auto;
  }

  /* Stats */
  .realty-stats__inner { flex-wrap: wrap; gap: 32px; }
  .realty-stat { min-width: calc(50% - 16px); }
  .realty-stat__sep { display: none; }
  .realty-stat__num { font-size: 1.8rem; }

  /* Contact */
  .realty-form-row { grid-template-columns: 1fr; }
  .realty-contact .realty-contact__title { font-size: 2.2rem; }
  .realty-contact__text { padding: 60px 0 32px; }
  .realty-contact__form-wrap { padding: 40px 20px; }

  /* Sticky bar */
  .realty-sticky-bar { display: flex; }
  .realty-footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .realty-hero .realty-hero__title { font-size: 2.2rem; }
  .realty-section-title { font-size: 1.7rem; }
  .realty-agents__grid { grid-template-columns: 1fr; }
  .realty-footer__inner { grid-template-columns: 1fr; }
  .realty-testimonial { padding: 32px 24px; }
  .realty-about__badge { width: 90px; height: 90px; }
  .realty-about__badge-num { font-size: 1.5rem; }
}
