/* ============================================================
   LURELIS REAL ESTATE — Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --gold:        #C4A358;
  --gold-light:  #E8D5A0;
  --gold-pale:   #F7F0E0;
  --primary:     #1A1916;
  --secondary:   #4A4845;
  --muted:       #9A9794;
  --bg:          #FAFAF7;
  --bg-alt:      #F4F1EA;
  --white:       #FFFFFF;
  --border:      #E8E3D8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --nav-h:    88px;
  --sec-pad:  100px;
  --cmax:     1200px;
  --cpad:     24px;

  --r-sm: 4px;
  --r-md: 10px;

  --sh-sm: 0 2px 14px rgba(26,25,22,.06);
  --sh-md: 0 8px 36px rgba(26,25,22,.11);
  --sh-lg: 0 20px 64px rgba(26,25,22,.15);

  --ease: .3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-body); color: var(--primary); background: var(--bg); line-height: 1.68; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utilities ---- */
.container { max-width: var(--cmax); margin: 0 auto; padding: 0 var(--cpad); }
.section   { padding: var(--sec-pad) 0; }
.bg-alt    { background: var(--bg-alt); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-label  {
  display: inline-block; font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 600; line-height: 1.2; margin-bottom: 16px;
}
.section-title.left { text-align: left; }
.section-subtitle { font-size: 1.03rem; color: var(--secondary); line-height: 1.72; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: .875rem; font-weight: 500;
  letter-spacing: .04em; border-radius: var(--r-sm);
  transition: all var(--ease); cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-primary:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-dark    { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-dark:hover { background: transparent; color: var(--primary); }
.btn-full    { width: 100%; justify-content: center; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(10,10,8,.55) 0%, transparent 100%);
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled { background: var(--white); box-shadow: var(--sh-sm); }

.nav-container {
  max-width: var(--cmax); margin: 0 auto; padding: 0 var(--cpad);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo */
.nav-logo { display: flex; flex-direction: column; align-items: center; line-height: 1; flex-shrink: 0; gap: 2px; }
.logo-img {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--ease);
}
.navbar.scrolled .logo-img { filter: none; }
.logo-re {
  font-size: .48rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.85); transition: color var(--ease); padding-left: .32em;
}
.navbar.scrolled .logo-re { color: var(--gold); }
.logo-img--footer { height: 56px; width: auto; filter: brightness(0) invert(1); display: block; }
.logo-re--footer  { font-size: .48rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-light); padding-left: .32em; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .86rem; font-weight: 500; padding: 6px 14px;
  color: rgba(255,255,255,.88); border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.navbar.scrolled .nav-links a { color: var(--secondary); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: var(--bg-alt); }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: 18px; }

.lang-switcher { display: flex; align-items: center; gap: 8px; }
.lang-sep { font-size: .75rem; color: rgba(255,255,255,.35); }
.navbar.scrolled .lang-sep { color: var(--border); }

.lang-btn {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.5); padding: 2px 4px; border-radius: 2px;
  transition: color var(--ease);
}
.lang-btn:hover, .lang-btn.active { color: var(--white); }
.navbar.scrolled .lang-btn { color: var(--muted); }
.navbar.scrolled .lang-btn:hover, .navbar.scrolled .lang-btn.active { color: var(--gold); }

.nav-cta {
  padding: 10px 22px; background: var(--gold); color: var(--white) !important;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  border-radius: var(--r-sm); transition: background var(--ease);
}
.nav-cta:hover { background: #b8943f !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all var(--ease); }
.navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 20px 16px 28px;
    box-shadow: var(--sh-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--secondary); padding: 12px 16px; width: 100%; border-radius: var(--r-sm); }
  .nav-links a:hover { color: var(--primary); background: var(--bg-alt); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 620px; }
.heroSwiper, .hero-slide { height: 100%; }
.hero-slide { background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,8,.68) 0%, rgba(10,10,8,.38) 100%);
}
.hero-content {
  position: relative; z-index: 1; height: 100%; display: flex;
  flex-direction: column; justify-content: center; align-items: flex-start;
  max-width: var(--cmax); margin: 0 auto; padding: 0 var(--cpad);
  padding-top: var(--nav-h);
}
.hero-label {
  font-size: .73rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.15; color: var(--white); white-space: pre-line;
  max-width: 680px; margin-bottom: 20px;
  animation: fadeUp .8s .15s ease both;
}
.hero-subtitle {
  font-size: clamp(.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,.82);
  max-width: 500px; line-height: 1.72; font-weight: 300; margin-bottom: 40px;
  animation: fadeUp .8s .3s ease both;
}
.hero-content .btn { animation: fadeUp .8s .45s ease both; }

/* Swiper hero overrides */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next { color: rgba(255,255,255,.75); transition: color var(--ease); }
.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover { color: #fff; }
.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after { font-size: 1.1rem; }
.heroSwiper .swiper-pagination-bullet { background: rgba(255,255,255,.55); opacity: 1; width: 8px; height: 8px; }
.heroSwiper .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Scroll mouse indicator */
.scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator span {
  display: block; width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.45); border-radius: 12px; position: relative;
}
.scroll-indicator span::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,.65); border-radius: 2px;
  animation: scrollDot 2.2s ease infinite;
}
@keyframes scrollDot { 0%{top:6px;opacity:1} 80%{top:18px;opacity:0} 100%{top:6px;opacity:0} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 52px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 16px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: .83rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }
}

/* ============================================================
   WHY DUBAI
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-md); padding: 36px 28px; min-height: 230px;
  background-size: cover; background-position: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.benefit-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,8,.62);
  transition: background var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.benefit-card:hover::before { background: rgba(10,10,8,.50); }
.benefit-card > * { position: relative; z-index: 1; }
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(196,163,88,.22); border: 1px solid rgba(196,163,88,.5);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 20px; transition: all var(--ease);
}
.benefit-card:hover .benefit-icon { background: var(--gold); color: var(--white); border-color: var(--gold); }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--white); }
.benefit-card p  { font-size: .94rem; color: rgba(255,255,255,.80); line-height: 1.68; }

@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); transition: box-shadow var(--ease), transform var(--ease);
}
.service-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.service-img-wrap { overflow: hidden; height: 230px; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-img { transform: scale(1.05); }

.service-body { padding: 28px 26px; }
.service-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-pale); line-height: 1; margin-bottom: 6px; }
.service-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.service-body p  { font-size: .94rem; color: var(--secondary); line-height: 1.68; margin-bottom: 20px; }
.service-cta {
  font-size: .82rem; font-weight: 700; color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease);
}
.service-cta:hover { gap: 10px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (min-width: 600px) and (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); max-width: none; } }

/* ============================================================
   PROPERTIES SLIDER
   ============================================================ */
.propertiesSwiper { padding: 12px 24px 56px !important; overflow: visible !important; }
.property-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); transition: box-shadow var(--ease), transform var(--ease);
}
.property-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.property-img-wrap { position: relative; overflow: hidden; height: 240px; }
.property-img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.property-card:hover .property-img { transform: scale(1.07); }
.property-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; background: var(--gold); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; border-radius: 2px;
}
.property-body { padding: 20px 22px; }
.property-location { font-size: .77rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.property-title  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.property-price  { font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.property-features { display: flex; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.property-feature { display: flex; align-items: center; gap: 5px; font-size: .83rem; color: var(--secondary); }
.property-feature i { color: var(--gold); font-size: .85rem; }

/* Properties swiper nav */
.propertiesSwiper .swiper-button-prev,
.propertiesSwiper .swiper-button-next {
  color: var(--primary); background: var(--white); width: 44px; height: 44px;
  border-radius: 50%; box-shadow: var(--sh-sm); border: 1px solid var(--border); transition: all var(--ease);
}
.propertiesSwiper .swiper-button-prev:hover,
.propertiesSwiper .swiper-button-next:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.propertiesSwiper .swiper-button-prev::after,
.propertiesSwiper .swiper-button-next::after { font-size: .9rem; }
.propertiesSwiper .swiper-pagination-bullet        { background: var(--border); opacity: 1; }
.propertiesSwiper .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   INVESTMENT SECTION
   ============================================================ */
.investment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.investment-image { position: relative; }
.investment-image img { width: 100%; border-radius: var(--r-md); box-shadow: var(--sh-lg); aspect-ratio: 4/3; object-fit: cover; }
.investment-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gold); color: var(--white); width: 104px; height: 104px;
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; box-shadow: var(--sh-md);
}
.badge-num  { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; line-height: 1; }
.badge-txt  { font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: center; margin-top: 3px; }
.investment-content { padding-left: 12px; }
.investment-content p { color: var(--secondary); line-height: 1.78; margin-bottom: 28px; font-size: .97rem; }
.investment-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.investment-points li { display: flex; align-items: flex-start; gap: 12px; font-size: .94rem; color: var(--secondary); }
.investment-points li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); margin-top: 8px;
}

@media (max-width: 900px) {
  .investment-grid { grid-template-columns: 1fr; gap: 52px; }
  .investment-badge { right: 0; }
  .investment-content { padding-left: 0; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team-list { display: flex; flex-direction: column; gap: 32px; }

.team-card {
  display: grid;
  grid-template-columns: 48fr 52fr;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--white);
  min-height: 460px;
  max-width: 900px;
  margin: 0 auto;
}

.team-photo-wrap { position: relative; overflow: hidden; }
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s ease; }
.team-card:hover .team-photo { transform: scale(1.03); }

.team-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,8,.88) 0%, rgba(10,10,8,.3) 60%, transparent 100%);
  padding: 32px 28px 26px;
}
.team-name-overlay {
  display: block; font-family: var(--font-display); font-size: 2rem;
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 6px;
}
.team-instagram {
  font-size: .85rem; color: var(--gold-light); font-weight: 500;
  transition: color var(--ease);
}
.team-instagram:hover { color: var(--gold); }

.team-content {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.team-about-label {
  display: inline-block; font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.team-member-name {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--primary); margin-bottom: 6px;
}
.team-role {
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.team-bio { font-size: .95rem; color: var(--secondary); line-height: 1.78; margin-bottom: 14px; }
.team-bio:last-child { margin-bottom: 0; }

/* Alternating layout: odd cards → text left / photo right */
.team-card:nth-child(odd) .team-photo-wrap { order: 2; }
.team-card:nth-child(odd) .team-content    { order: 1; }

@media (max-width: 860px) {
  .team-card { grid-template-columns: 1fr; min-height: auto; }
  .team-card:nth-child(odd) .team-photo-wrap { order: 0; }
  .team-card:nth-child(odd) .team-content    { order: 0; }
  .team-photo-wrap { height: 340px; }
  .team-content { padding: 36px 28px; }
  .team-member-name { font-size: 1.6rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonialsSwiper { padding-bottom: 56px !important; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 36px 30px;
}
.testimonial-header {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px;
}
.testimonial-quote {
  font-family: var(--font-display); font-size: 3.8rem; line-height: .75;
  color: var(--gold); flex-shrink: 0;
}
.testimonial-title {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  color: var(--primary); line-height: 1.25; padding-top: 6px;
}
.testimonial-stars { display: flex; gap: 3px; color: var(--gold); font-size: .82rem; margin-bottom: 16px; }
.testimonial-text  { font-size: 1rem; color: var(--secondary); line-height: 1.75; font-style: italic; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold);
}
.testimonial-name   { font-size: .88rem; font-weight: 600; }
.testimonial-origin { font-size: .78rem; color: var(--muted); }
.testimonialsSwiper .swiper-pagination-bullet        { background: var(--border); opacity: 1; }
.testimonialsSwiper .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: start; }
.contact-info p { color: var(--secondary); line-height: 1.72; margin-bottom: 36px; font-size: .97rem; }

.contact-details  { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-item     { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem; flex-shrink: 0;
}
.contact-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-value { font-size: .94rem; color: var(--primary); font-weight: 500; transition: color var(--ease); }
a.contact-value:hover { color: var(--gold); }

.contact-social { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: .98rem; transition: all var(--ease);
}
.social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--r-md); padding: 44px 40px;
  box-shadow: var(--sh-sm); border: 1px solid var(--border);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { position: relative; }
.form-group.full { margin-bottom: 16px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 22px 16px 8px; font-family: var(--font-body);
  font-size: .95rem; color: var(--primary); background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-sm); outline: none;
  transition: border-color var(--ease); appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group label {
  position: absolute; left: 16px; top: 14px; font-size: .85rem;
  color: var(--muted); pointer-events: none; transition: all .2s ease;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group.has-value label {
  top: 5px; font-size: .66rem; letter-spacing: .05em; color: var(--gold);
}
/* Select label is always floated — selects always show visible content */
.form-select-wrap label {
  top: 5px; font-size: .66rem; letter-spacing: .05em; color: var(--muted);
}
.form-select-wrap select:focus ~ label { color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }
.form-group textarea { resize: vertical; min-height: 112px; }

.form-select-wrap::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}

.form-privacy { font-size: .78rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

.turnstile-wrap { margin-bottom: 20px; }

.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 18px; background: #F0FAF4; border: 1px solid #A3D9B5;
  border-radius: var(--r-sm); font-size: .88rem; color: #2D7A4F;
}
.form-success.visible { display: flex; }
.form-success i { font-size: 1.1rem; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 52px; } }
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; line-height: 1; margin-bottom: 18px; }
.footer .logo-main { color: var(--white); }
.footer .logo-sub  { color: var(--gold-light); }
.footer-desc { font-size: .875rem; line-height: 1.72; color: rgba(255,255,255,.58); margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .88rem; transition: all var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-col h4 { font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li span { font-size: .875rem; color: rgba(255,255,255,.58); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact li i { color: var(--gold); font-size: .8rem; margin-top: 4px; flex-shrink: 0; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; box-shadow: 0 4px 20px rgba(37,211,102,.42);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --sec-pad: 68px; }
  .section-header { margin-bottom: 44px; }
  .hero-content .btn { padding: 12px 26px; }
  .stats-bar { padding: 36px 0; }
  .propertiesSwiper { padding: 12px 16px 52px !important; }
  .investment-badge { width: 88px; height: 88px; }
  .badge-num { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: .88rem; }
  .scroll-indicator { display: none; }
}
