@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600&display=swap');

:root {
  --navy: #2e1a0a;
  --gold: #D4A017;
  --gold-light: #E8B830;
  --gold-dark: #B8890F;
  --white: #FFFFFF;
  --soft-gray: #F8FAFC;
  --charcoal: #334155;
  --slate: #64748B;
  --border: #E2E8F0;
  --shadow: 0 4px 20px rgba(46,26,10,0.08);
  --shadow-lg: 0 8px 40px rgba(46,26,10,0.12);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-tag.revealed { opacity: 1; transform: translateY(0); }

.section-tag::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin-left: 12px;
  vertical-align: middle;
  animation: shimmerLine 2s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes shimmerLine {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.section-title {
  font-size: clamp(28px,4vw,44px);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.section-title.revealed { opacity: 1; transform: translateY(0); }

.section-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 600px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.section-sub.revealed { opacity: 1; transform: translateY(0); }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-soft {
  background: var(--soft-gray);
  position: relative;
}

.bg-soft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.15), transparent);
  pointer-events: none;
}
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }

.gold-btn, .outline-btn, .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.gold-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: -1;
}

.gold-btn:hover::before { left: 125%; }

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}

.outline-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.outline-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

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

.outline-btn:hover {
  color: var(--navy);
  border-color: var(--white);
}

.outline-btn-dark {
  border-color: var(--gold);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.outline-btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

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

.outline-btn-dark:hover {
  color: var(--navy);
  border-color: var(--gold);
}

/* ===== STATIC HEADER ===== */
.navbar {
  position: relative;
  z-index: 1000;
  padding: 18px 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}

.nav-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 25s 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(46,26,10,0.92) 0%, rgba(46,26,10,0.6) 50%, rgba(46,26,10,0.3) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(212,160,23,0.03) 80px, rgba(212,160,23,0.03) 81px);
  z-index: 1;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(36px,5.5vw,64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title span {
  color: var(--gold);
  position: relative;
  display: inline-block;
  animation: goldGlow 3s ease-in-out infinite;
}

@keyframes goldGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(212,160,23,0.3); }
  50% { text-shadow: 0 0 25px rgba(212,160,23,0.6), 0 0 50px rgba(212,160,23,0.2); }
}

.hero-desc {
  font-size: clamp(16px,1.3vw,20px);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.3s both;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.45s both; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
  transition: transform 0.3s ease;
}

.hero-stat:hover { transform: translateY(-4px); }

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold);
  transition: text-shadow 0.3s ease;
}

.hero-stat:hover h3 { text-shadow: 0 0 20px rgba(212,160,23,0.4); }

.hero-stat p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

/* ===== FEATURED PROPERTIES ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
  gap: 32px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid var(--border);
  cursor: pointer;
}

.property-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.property-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(46,26,10,0.15);
  border-color: rgba(212,160,23,0.2);
}

.property-card:hover::after { transform: scaleX(1); }

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

.property-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,26,10,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.property-card:hover .property-img::after { opacity: 1; }

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

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

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-type {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(46,26,10,0.85);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.property-body { padding: 24px; }

.property-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.property-location {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-specs {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.property-specs span {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.property-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.property-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap: 24px;
}

.cat-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(-50%);
}

.cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(46,26,10,0.12);
  border-color: var(--gold);
}

.cat-card:hover::after { width: 60%; }

.cat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--soft-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cat-card:hover .cat-icon { background: var(--gold); color: var(--navy); transform: rotateY(180deg) scale(1.1); }

.cat-card h3 { font-size: 20px; margin-bottom: 8px; }
.cat-card p { font-size: 14px; color: var(--slate); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.why-card:hover::before { transform: translateX(100%); }

.why-card:hover {
  background: rgba(212,160,23,0.08);
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.why-card .why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.why-card h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ===== STATS ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px,4vw,52px);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 12px;
}

.testimonial-card-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name { font-weight: 600; font-size: 16px; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--slate); }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question .faq-icon {
  font-size: 24px;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #3d2312 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px,3.5vw,42px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 16px;
}

/* ===== LEAD FORM ===== */
.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lead-form-image {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
}

.lead-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.form-group { margin-bottom: 16px; }

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  background: var(--white);
  color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,160,23,0.1);
}

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

.form-submit {
  grid-column: 1 / -1;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: -1;
}

.form-submit:hover::before { left: 125%; }

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--soft-gray);
  padding: 60px 0;
}

.newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-content h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.newsletter-content p { color: var(--slate); font-size: 14px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  min-width: 280px;
  transition: var(--transition);
}

.newsletter-form input:focus { outline: none; border-color: var(--gold); }

.newsletter-form button {
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--gold); color: var(--navy); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { font-family: var(--font-heading); font-size: 24px; color: var(--white); margin-bottom: 16px; }

.footer-brand-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-right: 10px;
  vertical-align: middle;
}

.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 16px;
}

.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact .fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

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

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.7); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}

.scroll-top.visible { opacity: 1; visibility: visible; }

.scroll-top:hover { transform: translateY(-3px); }

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.4s ease;
  max-width: 400px;
}

.notification.show { transform: translateX(0); }

.notification.success { background: #065F46; color: white; border-left: 4px solid #34D399; }
.notification.error { background: #7F1D1D; color: white; border-left: 4px solid #F87171; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 80px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #3d2312 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(32px,4vw,48px);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  pointer-events: none;
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(46,26,10,0.1);
  transform: translateY(-4px);
}

.value-card:hover::after { border-color: var(--gold); }

.value-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--slate); }

/* ===== PROPERTIES FILTER ===== */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 15px rgba(46,26,10,0.2);
}

.filter-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(46,26,10,0.12);
  border-color: rgba(212,160,23,0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--soft-gray);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-icon { background: var(--gold); color: var(--navy); transform: rotateY(180deg) scale(1.1); }

.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--slate); line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--navy);
  padding: 48px 40px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-info-card > p { margin-bottom: 32px; font-size: 14px; }

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(212,160,23,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

.contact-detail h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; }

.contact-hours { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-hours h4 { color: var(--white); font-size: 16px; margin-bottom: 12px; }
.contact-hours p { font-size: 14px; display: flex; justify-content: space-between; margin-bottom: 6px; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.map-placeholder {
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* ===== HERO FLOATING PARTICLES ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 4px; height: 4px; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; width: 8px; height: 8px; opacity: 0.3; }
.hero-particle:nth-child(3) { left: 45%; top: 15%; animation-delay: 2s; width: 5px; height: 5px; }
.hero-particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.5s; width: 7px; height: 7px; opacity: 0.2; }
.hero-particle:nth-child(5) { left: 80%; top: 30%; animation-delay: 3s; width: 4px; height: 4px; }
.hero-particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 1.5s; width: 6px; height: 6px; opacity: 0.25; }
.hero-particle:nth-child(7) { left: 15%; top: 85%; animation-delay: 2.5s; width: 5px; height: 5px; }
.hero-particle:nth-child(8) { left: 50%; top: 50%; animation-delay: 4s; width: 3px; height: 3px; opacity: 0.4; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  20% { opacity: 1; transform: translateY(-20px) translateX(10px) scale(1); }
  80% { opacity: 0.5; }
  100% { transform: translateY(-80px) translateX(-10px) scale(0); opacity: 0; }
}

/* ===== HERO GOLD ACCENT LINE ===== */
.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
  z-index: 2;
  animation: accentSlide 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes accentSlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== FADE IN UP KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

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

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

/* ===== STAGGER ANIMATION FOR GRIDS ===== */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children.revealed > *:nth-child(12) { transition-delay: 0.6s; }
.stagger-children.revealed > *:nth-child(13) { transition-delay: 0.65s; }
.stagger-children.revealed > *:nth-child(14) { transition-delay: 0.7s; }
.stagger-children.revealed > *:nth-child(15) { transition-delay: 0.75s; }

/* ===== IMAGE REVEAL ON SCROLL ===== */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s;
}

.img-reveal.revealed::before { transform: translateY(100%); }

.img-reveal img {
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s;
}

.img-reveal.revealed img { transform: scale(1); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING SPINNER ===== */
.form-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 0 auto;
}

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

.form-submit.loading .form-spinner { display: inline-block; }
.form-submit.loading .btn-text { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-form-wrap { grid-template-columns: 1fr; }
  .lead-form-image { height: 300px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    align-items: flex-start;
  }

  .nav-links.open { right: 0; }

  .hamburger { display: flex; }

  .nav-cta { display: none; }

  .hero { min-height: 90vh; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat h3 { font-size: 28px; }

  .property-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  section { padding: 60px 0; }
  .page-header { padding: 60px 0 60px; }

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

  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-wrap { flex-direction: column; text-align: center; }
  .newsletter-form input { min-width: 200px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .gold-btn, .hero-buttons .outline-btn { text-align: center; justify-content: center; }
  .filter-bar { gap: 8px; }
  .filter-btn { font-size: 13px; padding: 8px 16px; }
  .contact-form-card { padding: 32px 20px; }
  .contact-info-card { padding: 32px 20px; }
  .page-header { padding: 40px 0 40px; }
  .newsletter-form input { min-width: 100%; }
  .newsletter-form button { width: 100%; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 24px; bottom: 16px; right: 16px; }
  .scroll-top { width: 38px; height: 38px; font-size: 16px; bottom: 16px; left: 16px; }
}

@media (max-width: 360px) {
  .property-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
