/* ============================================
   ZUCATO IMOBILIARIA - Design System
   Colors from logo: Navy #1a3a4a, Gold #c5a96a
   ============================================ */

:root {
  --navy-900: #0d1f28;
  --navy-800: #142d3a;
  --navy-700: #1a3a4a;
  --navy-600: #24506a;
  --navy-500: #2e6680;
  --navy-400: #3d7f9a;
  --navy-300: #5a9db8;
  --navy-200: #8ec0d4;
  --navy-100: #c5e0ec;
  --navy-50: #e8f3f8;

  --gold-900: #6b5a2e;
  --gold-800: #8a7438;
  --gold-700: #a48d45;
  --gold-600: #b59d52;
  --gold-500: #c5a96a;
  --gold-400: #d4be87;
  --gold-300: #e0cfa3;
  --gold-200: #ecdfc0;
  --gold-100: #f5efdf;
  --gold-50: #faf7f0;

  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #404040;
  --gray-600: #595959;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #c4c4c4;
  --gray-200: #e0e0e0;
  --gray-100: #f0f0f0;
  --gray-50: #f8f8f8;
  --white: #ffffff;

  --success: #2d8a5e;
  --warning: #c5942a;
  --error: #c0392b;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

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

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.gold { color: var(--gold-500); }

/* Page Loader */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content { text-align: center; }

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.loader-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--navy-700);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold-500);
  animation: loaderFill 1.5s var(--ease-out) forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-5) 0;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(13, 31, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-3) 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}

.logo:hover .logo-img { opacity: 0.85; }

.logo-img--footer {
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link--cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  padding: var(--space-2) var(--space-5);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s;
}

.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-primary::before { background: var(--gold-400); }
.btn-primary span,
.btn-primary { position: relative; z-index: 1; }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197, 169, 106, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline::before { background: rgba(255,255,255,0.1); }
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-full { width: 100%; }

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,40,0.92) 0%, rgba(13,31,40,0.7) 50%, rgba(13,31,40,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-32);
  padding-bottom: var(--space-16);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--gold-700);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: var(--space-10);
  letter-spacing: 0.02em;
}

.hero-subtitle strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat { text-align: left; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.hero-stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-500);
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-2);
  letter-spacing: 0.03em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* Services Strip */

.services-strip {
  background: var(--navy-900);
  padding: var(--space-20) 0;
  position: relative;
}

.services-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.service-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(197,169,106,0.2);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.02);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-6);
  color: var(--gold-500);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Section Shared */

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 480px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-desc { margin: 0 auto; }

/* About */

.about {
  padding: var(--space-32) 0;
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-accent img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-year-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  background: var(--gold-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-year-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.about-year-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy-800);
  font-weight: 500;
}

.about-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold-600);
}

.about-feature-icon svg { width: 100%; height: 100%; }

.about-feature span {
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* Properties */

.properties {
  padding: var(--space-32) 0;
  background: var(--white);
}

.properties-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-2) var(--space-6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
}

.filter-btn:hover { color: var(--navy-700); border-color: var(--navy-300); }

.filter-btn.active {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.property-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.property-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.property-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.property-card:hover .property-card-img img { transform: scale(1.08); }

.property-card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-card-badge--venda {
  background: var(--navy-800);
  color: var(--white);
}

.property-card-badge--aluguel {
  background: var(--gold-500);
  color: var(--navy-900);
}

.property-card-featured {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-1) var(--space-3);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(197,169,106,0.9);
  color: var(--navy-900);
}

.property-card-body { padding: var(--space-6); }

.property-card-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-2);
}

.property-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.property-card-location {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.property-card-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.property-card-meta {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-100);
  margin-bottom: var(--space-4);
}

.property-card-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.8rem;
  color: var(--gray-600);
}

.property-card-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

.property-card-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-800);
}

.property-card-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  font-family: var(--font-body);
}

.properties-loading {
  display: flex;
  justify-content: center;
  padding: var(--space-16) 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.properties-empty {
  text-align: center;
  padding: var(--space-16) 0;
  color: var(--gray-500);
}

/* CTA Banner */

.cta-banner {
  position: relative;
  padding: var(--space-32) 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,40,0.93) 0%, rgba(26,58,74,0.88) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.25;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

/* Advertise */

.advertise {
  padding: var(--space-32) 0;
  background: var(--gray-50);
}

.advertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.advertise-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.advertise-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.advertise-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.advertise-step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.advertise-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-1);
}

.advertise-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.advertise-form-wrapper {
  background: var(--white);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold-500);
}

.advertise-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-8);
}

.form-row { margin-bottom: var(--space-5); }

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all 0.3s;
  outline: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197,169,106,0.15);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23737373' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-message {
  margin-top: var(--space-4);
  padding: var(--space-4);
  font-size: 0.875rem;
  text-align: center;
}

.form-message--success {
  background: rgba(45,138,94,0.1);
  color: var(--success);
  border: 1px solid rgba(45,138,94,0.2);
}

.form-message--error {
  background: rgba(192,57,43,0.1);
  color: var(--error);
  border: 1px solid rgba(192,57,43,0.2);
}

/* Footer */

.footer {
  background: var(--navy-900);
  padding: var(--space-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo--footer .logo-img { height: 44px; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-5);
  line-height: 1.6;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  padding: var(--space-2) 0;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: var(--space-2);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-bottom {
  padding: var(--space-6) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* WhatsApp Float */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* Reveal Animations */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: var(--space-10); }
  .advertise-grid { gap: var(--space-10); }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,31,40,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    z-index: 999;
  }

  .nav.open { display: flex; }

  .nav-link {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
  }

  .nav-link--cta { margin-top: var(--space-4); }

  .menu-toggle { display: flex; z-index: 1001; }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-6);
    align-items: flex-start;
  }

  .hero-stat-divider { width: 48px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }

  .about-images { margin-bottom: var(--space-10); }

  .about-img-accent {
    bottom: -20px;
    right: -10px;
    width: 150px;
  }

  .about-img-accent img { height: 150px; }

  .properties-grid { grid-template-columns: 1fr; }

  .advertise-grid { grid-template-columns: 1fr; }

  .form-row--2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-10); }

  .hero-scroll { display: none; }

  .advertise-form-wrapper { padding: var(--space-6); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero-content { padding-top: var(--space-24); }

  .about-year-badge {
    top: -16px;
    left: -8px;
    width: 80px;
    height: 80px;
  }

  .about-year-number { font-size: 1.5rem; }

  .whatsapp-float {
    bottom: var(--space-5);
    right: var(--space-5);
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg { width: 24px; height: 24px; }
}
