/* =============================================
   VARGAS & UNANUE INVEST GROUP
   Corporate Property Management Website
   Colors: Navy · Gold · Cream · White
   ============================================= */

:root {
  --navy: #0B2545;
  --navy-dark: #061530;
  --navy-light: #13315C;
  --gold: #C9A961;
  --gold-dark: #B08D42;
  --gold-light: #E4C989;
  --cream: #F7F3EC;
  --white: #FFFFFF;
  --gray-900: #1A1A1A;
  --gray-700: #4A4A4A;
  --gray-500: #757575;
  --gray-300: #D5D5D5;
  --gray-100: #F5F5F5;
  --success: #2E7D32;
  --danger: #C62828;

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

  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.15);

  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; font-family: inherit; }

/* -------- Tipografía -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.divider.left { margin-left: 0; }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 6rem 0; }

/* -------- Botones -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* -------- Header -------- */
.topbar {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 0.55rem 0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.topbar-info {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.topbar-info span, .topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-info a:hover { color: var(--gold); }

.lang-switch {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.lang-switch a {
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.lang-switch a.active {
  background: var(--gold);
  color: var(--navy);
}
.lang-switch a:not(.active):hover { color: var(--gold); }

.header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  box-shadow: 0 1px 0 var(--gray-100);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--navy);
}
.logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: var(--transition);
  flex-shrink: 0;
}
.logo:hover .logo-img { transform: scale(1.03); }
.logo-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.logo-text span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--gold-dark);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .logo-img { height: 44px; }
  .logo-divider { display: none; }
  .logo-text strong { font-size: 0.95rem; }
  .logo-text span { font-size: 0.55rem; letter-spacing: 2px; }
  .logo { gap: 0.6rem; }
}
@media (max-width: 480px) {
  .logo-text { display: none; }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-menu a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-dark); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
  padding: 0.3rem;
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 37, 69, 0.85) 0%, rgba(6, 21, 48, 0.7) 100%),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80') center/cover;
  color: var(--white);
  padding: 5rem 0;
}
.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero-lead {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  line-height: 1.75;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 700px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

/* Page hero (sub-pages) */
.page-hero {
  min-height: 45vh;
  padding: 4rem 0;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.breadcrumb a:hover { color: var(--gold-light); }

/* -------- Trust bar -------- */
.trust-bar {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.trust-item i {
  font-size: 1.8rem;
  color: var(--gold-dark);
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* -------- About / Two-column -------- */
.about {
  background: var(--white);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-col-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.two-col-content h2 { text-align: left; margin-bottom: 1.5rem; }
.two-col-content .lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.features-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.features-list li {
  padding: 0.7rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--gray-700);
}
.features-list li i {
  color: var(--gold-dark);
  margin-top: 4px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* -------- Services grid -------- */
.services {
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* -------- Values / mission grid -------- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.mvv-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}
.mvv-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.mvv-icon {
  width: 80px;
  height: 80px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.3rem;
  border: 2px solid var(--gold);
}
.mvv-card h3 { margin-bottom: 1rem; color: var(--navy); }
.mvv-card p { color: var(--gray-700); font-size: 0.98rem; margin: 0; }

/* -------- Values list -------- */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-item {
  text-align: center;
  padding: 1.5rem;
}
.value-item .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.value-item h4 { color: var(--navy); margin-bottom: 0.5rem; }
.value-item p { color: var(--gray-700); font-size: 0.9rem; margin: 0; }

/* -------- CTA banner -------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(11, 37, 69, 0.92), rgba(6, 21, 48, 0.88)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover;
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-banner h2 .accent { color: var(--gold-light); font-style: italic; }
.cta-banner p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.92);
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* -------- Location / Map -------- */
.location {
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: stretch;
}
.location-info {
  background: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.location-info::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
}
.location-info h2 { color: var(--gold-light); text-align: left; margin-bottom: 1.5rem; }
.location-info .divider { margin: 1rem 0; background: var(--gold); }
.location-info p { color: rgba(255,255,255,0.85); }

.location-list {
  list-style: none;
  margin-top: 2rem;
}
.location-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: flex-start;
}
.location-list li:last-child { border-bottom: none; }
.loc-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.loc-content strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.loc-content a { color: var(--white); }
.loc-content a:hover { color: var(--gold-light); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
}

/* -------- Contact form -------- */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
}
.contact-info h3 { color: var(--gold-light); }
.contact-info p { color: rgba(255,255,255,0.85); }

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { color: var(--navy); margin-bottom: 0.6rem; }
.contact-form > p { color: var(--gray-500); margin-bottom: 1.8rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--gray-900);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.form-success {
  background: var(--success);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: none;
}
.form-success.show { display: flex; align-items: center; gap: 0.6rem; }

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}
.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* -------- Testimonials / trust -------- */
.testimonials { background: var(--white); }
.tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.test-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.test-card i.fa-quote-left {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.test-text {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-300);
}
.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.test-author-info strong { display: block; color: var(--navy); }
.test-author-info span { font-size: 0.85rem; color: var(--gray-500); }

/* -------- Guest reviews (Airbnb-style) -------- */
.guest-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.review-property {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  color: var(--navy);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.review-property i { color: var(--gold-dark); }
.review-text {
  color: var(--gray-700);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info { line-height: 1.3; }
.review-author-info strong {
  color: var(--navy);
  font-size: 0.95rem;
  display: block;
}
.review-author-info span {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* -------- Property cards -------- */
.property-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.property {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
}
.property.reverse { grid-template-columns: 1fr 1.2fr; direction: rtl; }
.property.reverse > * { direction: ltr; }
.property-cover {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.property-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property:hover .property-cover img { transform: scale(1.04); }
.property-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.property-body {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.property-body .eyebrow { color: var(--gold-dark); margin-bottom: 0.4rem; }
.property-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.property-address {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.property-specs {
  display: flex;
  gap: 1.8rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
}
.property-spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 600;
}
.property-spec i {
  color: var(--gold-dark);
  font-size: 1.15rem;
}
.property-spec span {
  font-family: var(--font-body);
  font-size: 0.98rem;
}
.property-desc {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.property-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Interior thumbnails strip */
.property-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.property-thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.property-thumb:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.property-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Property detail gallery on properties page */
.property-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.property-detail-gallery .gallery-item {
  height: 220px;
}

@media (max-width: 768px) {
  .property, .property.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .property-cover { min-height: 280px; }
  .property-body { padding: 2rem 1.5rem; }
  .property-body h3 { font-size: 1.4rem; }
  .property-specs { flex-wrap: wrap; gap: 1rem; }
  .property-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Office gallery -------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  background: var(--cream);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11,37,69,0.9));
  color: var(--white);
  padding: 1.5rem 1rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* -------- FAQ -------- */
.faq-wrap { max-width: 850px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border-left: 3px solid var(--gold);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* -------- Footer -------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 { color: var(--white); margin-bottom: 1rem; font-family: var(--font-display); }
.footer-brand p { color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.4rem;
  font-family: var(--font-body);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
}
.footer-links a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  background: #050D1F;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { margin: 0; }
.footer-bottom .accent { color: var(--gold-light); }

/* -------- WhatsApp float -------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: #128C7E;
  color: var(--white);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
}

/* -------- Animaciones -------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Responsive -------- */
@media (max-width: 992px) {
  section { padding: 4.5rem 0; }
  .two-col, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col.reverse { direction: ltr; }
  .two-col-img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar-info { font-size: 0.75rem; gap: 1rem; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right 0.4s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 0.6rem 0; }
  .hero { min-height: auto; padding: 6rem 0 4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links a { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .contact-info, .contact-form, .location-info { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .hero-stat-number { font-size: 1.8rem; }
}
