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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2C3E3F;
  background: #FFFFFF;
  background-attachment: fixed;
  line-height: 1.6;
  scroll-behavior: smooth;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(107, 142, 111, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(251, 191, 36, 0.01) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

:root {
  --primary: #6B8E6F;
  --accent: #6B8E6F;
  --accent-dark: #4A5F52;
  --accent-light: #8BA88D;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --yellow: #FBBF24;
  --gold: #D4AF37;
  --soft: #F5F3F0;
  --charcoal: #2C3E3F;
  --gray-light: #f3f4f6;
  --gray-border: #e5e7eb;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4), inset 0 0 10px rgba(251, 191, 36, 0.2);
  }
  50% {
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.7), inset 0 0 15px rgba(251, 191, 36, 0.4);
  }
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(107, 142, 111, 0.5), 0 15px 35px rgba(107, 142, 111, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(107, 142, 111, 0.8), 0 20px 45px rgba(107, 142, 111, 0.6);
  }
}

@keyframes ctaGlowYellow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5), 0 15px 35px rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.8), 0 20px 45px rgba(251, 191, 36, 0.6);
  }
}

@keyframes ctaGlowOrange {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5), 0 15px 35px rgba(255, 140, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.8), 0 20px 45px rgba(255, 140, 0, 0.6);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fogMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20%);
  }
}

@keyframes flyBird {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  50% {
    transform: translateX(50vw) translateY(-15px);
    opacity: 0.7;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(110vw) translateY(0);
    opacity: 0;
  }
}

@keyframes birdIdle {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  40% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(-2px);
  }
  60% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}

.bird {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 50px;
  height: 30px;
  opacity: 0.6;
  animation: flyBird 18s linear infinite;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.perched-bird {
  position: absolute;
  bottom: 80px;
  left: 8%;
  width: 45px;
  height: 60px;
  opacity: 0.85;
  animation: birdIdle 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 600;
  color: #2C3E3F;
}

h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 44px;
  margin-bottom: 40px;
}

h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(107, 142, 111, 0.03) 35px, rgba(107, 142, 111, 0.03) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(37, 99, 235, 0.03) 35px, rgba(37, 99, 235, 0.03) 70px);
  pointer-events: none;
}

section.white-clean::before {
  background-image: none;
}

section:nth-child(even) {
  background: #FFFFFF;
}

section:nth-child(odd) {
  background: #FFFFFF;
}

section h2 {
  animation: fadeInDown 0.6s ease-out;
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
  will-change: auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 62, 50, 0.5) 0%, rgba(37, 99, 235, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  right: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  will-change: auto;
  backface-visibility: hidden;
}

.hero .container {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 25px;
  animation: fadeInDown 0.8s ease-out;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  transition: all 0.3s ease;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .cta {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* LEAD FORM */
.lead-box {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  animation: slideInRight 0.8s ease-out 0.3s both;
  border-top: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.lead-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lead-box h3 {
  color: #2C3E3F;
  margin-bottom: 25px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

input, select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 2px solid #E5E7EB;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  color: #2C3E3F;
  position: relative;
  z-index: 1;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 0 15px rgba(37, 99, 235, 0.2);
  background: #FAFAFA;
}

input::placeholder {
  color: #9CA3AF;
  transition: color 0.3s ease;
}

input:focus::placeholder {
  color: #6B7280;
}

button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

button:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563EB 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

button:active {
  transform: translateY(0);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: ctaGlow 2.5s ease-in-out infinite;
}

.hero-content .cta {
  background: linear-gradient(135deg, #FBBF24 0%, #D4AF37 100%);
  border-color: #FBBF24;
  animation: ctaGlowYellow 2.5s ease-in-out infinite;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #3a4a3f 100%);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(107, 142, 111, 0.9), 0 25px 50px rgba(107, 142, 111, 0.7);
  animation: none;
}

.hero-content .cta:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  border-color: #D4AF37;
  color: white;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.9), 0 25px 50px rgba(251, 191, 36, 0.7);
  animation: none;
}

.cta:hover::before {
  left: 100%;
}

/* CARDS */
.card {
  background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid var(--blue);
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #E5E7EB;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.card-title-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-header h3 {
  margin: 0;
  color: #2C3E3F;
  font-size: 28px;
}

.card-subtitle {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
}

.dropdown-icon {
  font-size: 20px;
  color: var(--yellow);
  transition: transform 0.3s ease;
  display: inline-block;
  font-weight: bold;
  flex-shrink: 0;
}

.card.active .dropdown-icon {
  transform: rotate(180deg);
}

.card-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.card.active .card-dropdown {
  max-height: 500px;
}

.dropdown-content {
  padding-top: 15px;
  border-top: 3px solid rgba(107, 142, 111, 0.3);
  margin-top: 15px;
  background: linear-gradient(135deg, rgba(107, 142, 111, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

.dropdown-content p {
  margin: 10px 0;
  color: #2C3E3F;
  font-size: 14px;
  line-height: 1.6;
}

.dropdown-content strong {
  color: var(--primary);
  font-weight: 700;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(107, 142, 111, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
  border-top-color: #6B8E6F;
  background: linear-gradient(135deg, #F0F7F2 0%, #FFFFFF 100%);
}

.card:nth-child(1):hover {
  background: linear-gradient(135deg, #E8F3EA 0%, #F5FAFB 100%);
  border-color: #6B8E6F;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
  border-top-color: #2563EB;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.card:nth-child(2):hover {
  background: linear-gradient(135deg, #E0EFFE 0%, #F5FAFB 100%);
  border-color: #2563EB;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
  border-top-color: #FBBF24;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}

.card:nth-child(3):hover {
  background: linear-gradient(135deg, #FFF8E6 0%, #F5FAFB 100%);
  border-color: #FBBF24;
}

.card:nth-child(4) {
  animation-delay: 0.4s;
  border-top-color: #D4AF37;
  background: linear-gradient(135deg, #FFFAF0 0%, #FFFFFF 100%);
}

.card:nth-child(4):hover {
  background: linear-gradient(135deg, #FFF5E6 0%, #F5FAFB 100%);
  border-color: #D4AF37;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(107, 142, 111, 0.2);
}

.card h3 {
  color: #2C3E3F;
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

#soldCount {
  color: var(--blue);
  font-weight: 700;
  font-size: 32px;
  display: inline;
}

.sold-text {
  color: #4b5563;
  font-weight: 500;
  font-size: 28px;
  margin-left: 6px;
}

#totalCount {
  color: var(--primary);
  font-weight: 700;
  font-size: 32px;
  display: inline;
}

.total-text {
  color: #4b5563;
  font-weight: 500;
  font-size: 28px;
  margin-left: 6px;
}

.card p {
  color: #4b5563;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* GALLERY */
.zigzag-gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  animation: fadeInUp 0.6s ease-out both;
}

.zigzag-item:nth-child(1) {
  animation-delay: 0.1s;
}

.zigzag-item:nth-child(2) {
  animation-delay: 0.2s;
}

.zigzag-item:nth-child(3) {
  animation-delay: 0.3s;
}

.zigzag-item:nth-child(4) {
  animation-delay: 0.4s;
}

.zigzag-item.reverse {
  direction: rtl;
}

.zigzag-item.reverse > * {
  direction: ltr;
}

.zigzag-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.zigzag-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  display: block;
  border: 3px solid var(--yellow);
  cursor: pointer;
}

.zigzag-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(107, 142, 111, 0.2);
}

.zigzag-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.zigzag-content h3 {
  color: #2C3E3F;
  font-size: 32px;
  margin: 0;
  font-weight: 600;
}

.zigzag-content p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: block;
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--yellow);
  background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
  cursor: pointer;
}

.gallery img:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery img:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery img:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery img:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(107, 142, 111, 0.2);
}

/* INVESTMENT */
.invest {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #E5E7EB;
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
}

.invest::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.invest::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.invest:nth-child(1) {
  animation-delay: 0.1s;
  border-color: var(--primary);
  background: linear-gradient(135deg, #F0F7F2 0%, #FFFFFF 100%);
}

.invest:nth-child(1):hover {
  background: linear-gradient(135deg, #E8F3EA 0%, #F5FAFB 100%);
  border-color: var(--primary);
}

.invest:nth-child(2) {
  animation-delay: 0.2s;
  border-color: var(--blue);
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.invest:nth-child(2):hover {
  background: linear-gradient(135deg, #E0EFFE 0%, #F5FAFB 100%);
  border-color: var(--blue);
}

.invest:nth-child(3) {
  animation-delay: 0.3s;
  border-color: var(--yellow);
  background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}

.invest:nth-child(3):hover {
  background: linear-gradient(135deg, #FFF8E6 0%, #F5FAFB 100%);
  border-color: var(--yellow);
}

.invest:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(107, 142, 111, 0.2);
}

.invest h3 {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.invest p {
  color: #4b5563;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12.5px));
  }
}

/* TESTIMONIAL CAROUSEL */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.testimonial-carousel {
  display: flex;
  gap: 25px;
  overflow: visible;
  padding: 20px 0;
  position: relative;
  animation: slideCarousel 40s linear infinite;
  width: fit-content;
  margin-left: 0;
}

.testimonial-carousel:hover {
  animation-play-state: paused;
}

.testimonial-carousel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, #FFFFFF 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.testimonial-carousel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(90deg, transparent 0%, #FFFFFF 100%);
  z-index: 10;
  pointer-events: none;
}

.testimonial-item {
  flex: 0 0 calc(20% - 20px);
  min-width: 300px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #E5E7EB;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(107, 142, 111, 0.15);
}

.testimonial-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
  border-bottom: 3px solid var(--yellow);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  max-height: 100%;
}

.testimonial-item:hover .testimonial-image img {
  transform: scale(1.05);
}

.testimonial-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content p {
  font-style: italic;
  color: #374151;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* TESTIMONIAL */
.testimonial {
  background: linear-gradient(135deg, #1F2937 0%, #1A1F35 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--yellow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial:nth-child(1) {
  animation-delay: 0.1s;
  border-left-color: var(--primary);
}

.testimonial:nth-child(2) {
  animation-delay: 0.2s;
  border-left-color: var(--blue);
}

.testimonial:nth-child(3) {
  animation-delay: 0.3s;
  border-left-color: var(--yellow);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 40px;
  color: var(--yellow);
  opacity: 0.2;
}

.testimonial:hover {
  box-shadow: 0 10px 30px rgba(107, 142, 111, 0.25);
  transform: translateY(-4px);
}

.testimonial p {
  font-style: italic;
  color: #D1D5DB;
  margin-bottom: 15px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonial b {
  color: var(--yellow);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.testimonial:nth-child(3) {
  animation-delay: 0.3s;
  border-left-color: var(--yellow);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 40px;
  color: var(--yellow);
  opacity: 0.3;
}

.testimonial:hover {
  box-shadow: 0 10px 30px rgba(107, 142, 111, 0.15);
  transform: translateY(-4px);
}

.testimonial p {
  font-style: italic;
  color: #374151;
  margin-bottom: 15px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonial b {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.video-siteplan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 40px 0;
}

.video-siteplan-grid > div h3 {
  color: #2C3E3F;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.video-siteplan-grid > div p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 15px;
}

.video-siteplan-grid img {
  background: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-wrapper {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: transparent;
  animation: fadeInUp 0.6s ease-out;
  transition: all 0.3s ease;
  border: 3px solid var(--blue);
  position: relative;
  cursor: pointer;
}

.video-wrapper:hover {
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: transparent;
  object-fit: contain;
  pointer-events: none;
}

.video-wrapper video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.7);
}

.video-wrapper video::-webkit-media-controls-mute-button,
.video-wrapper video::-webkit-media-controls-play-button,
.video-wrapper video::-webkit-media-controls-timeline,
.video-wrapper video::-webkit-media-controls-volume-slider,
.video-wrapper video::-webkit-media-controls-fullscreen-button {
  filter: brightness(1.2);
}

.video-wrapper + div img {
  animation: fadeInUp 0.6s ease-out 0.2s both;
  transition: all 0.3s ease;
  border: 3px solid var(--yellow);
  border-radius: 12px;
  cursor: pointer;
}

.video-wrapper + div img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(107, 142, 111, 0.3);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  background-color: transparent;
  max-width: 90vw;
  max-height: 90vh;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content img,
.modal-content video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: none;
  animation: playIconGlow 2s ease-in-out infinite;
}

.video-wrapper:hover .play-icon {
  background: rgba(37, 99, 235, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
  animation: none;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 50%, #1e4d7b 100%) !important;
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.stats h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease-out;
  position: relative;
  z-index: 1;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.badge {
  background: var(--yellow);
  color: var(--charcoal);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
  animation: glowPulse 2s ease-in-out infinite;
  letter-spacing: 0.5px;
}

.badge:hover {
  animation: glowPulse 1.5s ease-in-out infinite;
}

/* FINAL CTA */
.final {
  background: linear-gradient(135deg, #7ec97e 0%, #5fb85f 50%, #4da74d 100%) !important;
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease-out;
  position: relative;
  z-index: 1;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.final .cta {
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
  font-weight: 700;
  animation: ctaGlowYellow 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.final .cta:hover {
  background: #FBBF24;
  color: var(--charcoal);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.9), 0 25px 50px rgba(251, 191, 36, 0.7);
  animation: none;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  animation: slideInRight 0.6s ease-out 0.5s both;
}

.whatsapp:hover {
  background: #1fa752;
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  animation: float 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.whatsapp.pulse {
  animation: waPulse 1s ease-in-out;
}

/* FOOTER */
footer {
  background: #0F1419;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid var(--primary);
  animation: fadeInUp 0.6s ease-out;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* SALES PROGRESS BAR */
.sales-progress {
  margin: 30px 0;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  border: 2px solid #1e3a8a;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.progress-label {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  flex: 1;
}

.progress-percentage {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-right: 8px;
}

.progress-bar {
  width: 100%;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--gold) 100%);
  width: 0%;
  animation: progressFill 1.2s ease-out forwards;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
  position: relative;
}


@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 87.7%;
  }
}

.progress-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-align: right;
  font-weight: 500;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 142, 111, 0.15);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(107, 142, 111, 0.3);
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(107, 142, 111, 0.25);
  box-shadow: 0 0 15px rgba(107, 142, 111, 0.4);
  border-color: rgba(107, 142, 111, 0.6);
}

.badge-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.badge-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes playIconGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), inset 0 0 10px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.9), inset 0 0 15px rgba(37, 99, 235, 0.5);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 22px;
  }

  section {
    padding: 50px 0;
  }

  .hero {
    min-height: 80vh;
    padding: 40px 20px;
  }

  .hero .container {
    flex-direction: column;
    gap: 40px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-logo {
    max-width: 120px;
  }

  .lead-box {
    max-width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 14px;
  }

  .dropdown-content {
    padding: 12px;
  }

  .dropdown-content p {
    font-size: 13px;
  }

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

  .gallery img {
    height: 250px;
  }

  .perched-bird {
    bottom: 40px;
    left: 5%;
    width: 35px;
    height: 50px;
  }

  .zigzag-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zigzag-item.reverse {
    direction: ltr;
  }

  .zigzag-image img {
    height: 280px;
  }

  .zigzag-content h3 {
    font-size: 22px;
  }

  .zigzag-content p {
    font-size: 14px;
  }

  .stats {
    padding: 60px 20px;
  }

  .stats h2 {
    font-size: 28px;
  }

  .final {
    padding: 60px 20px;
  }

  .final h2 {
    font-size: 28px;
  }

  .whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .video-siteplan-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .video-siteplan-grid > div h3 {
    color: #2C3E3F;
  }

  .video-siteplan-grid > div p {
    color: #4b5563;
  }

  .invest h3 {
    font-size: 24px;
  }

  .card h3 {
    font-size: 22px;
  }

  .testimonial-item {
    flex: 0 0 calc(50% - 12.5px);
    min-width: 200px;
  }

  .testimonial-carousel {
    animation: slideCarousel 25s linear infinite;
  }

  .carousel-wrapper {
    margin: 0;
    padding: 0;
  }

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 50px;
  }

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 50px;
  }

  .testimonial-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  .modal-content {
    max-width: 95vw;
    max-height: 85vh;
  }
}

@media (max-width: 390px) {
  .progress-label {
    font-size: 12px;
    line-height: 1.3;
  }

  .progress-percentage {
    font-size: 16px;
    gap: 4px;
  }

  .progress-bar {
    height: 20px;
  }

  .hero-logo {
    max-width: 90px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .progress-header {
    gap: 8px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .cta {
    padding: 14px 30px;
    font-size: 15px;
    width: 100%;
  }

  input, select, button {
    padding: 12px 14px;
    font-size: 14px;
  }

  .lead-box {
    padding: 25px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }

  .dropdown-content {
    padding: 10px;
  }

  .dropdown-content p {
    font-size: 12px;
    margin: 8px 0;
  }

  .progress-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .progress-label {
    font-size: 13px;
    flex: 1;
    line-height: 1.3;
  }

  .progress-percentage {
    font-size: 15px;
    align-self: center;
    gap: 6px;
  }

  .progress-bar {
    height: 22px;
  }

  .hero-logo {
    max-width: 100px;
  }

  .invest {
    padding: 25px 20px;
  }

  .invest h3 {
    font-size: 22px;
  }

  .perched-bird {
    bottom: 30px;
    left: 3%;
    width: 30px;
    height: 45px;
  }

  .zigzag-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zigzag-gallery {
    gap: 40px;
  }

  .zigzag-image img {
    height: 220px;
  }

  .zigzag-content h3 {
    font-size: 18px;
  }

  .zigzag-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .testimonial {
    padding: 20px;
  }

  .stats {
    padding: 50px 20px;
  }

  .stats h2 {
    font-size: 28px;
  }

  .stats p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .final {
    padding: 50px 20px;
  }

  .final h2 {
    font-size: 28px;
  }

  .final p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .whatsapp {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .gallery img {
    height: 200px;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }

  .badge {
    padding: 12px 24px;
    font-size: 16px;
  }

  .testimonial-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    animation: none;
    width: 100%;
    scroll-snap-type: x mandatory;
  }

  .testimonial-carousel::-webkit-scrollbar {
    height: 4px;
  }

  .testimonial-carousel::-webkit-scrollbar-track {
    background: transparent;
  }

  .testimonial-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
  }
  }

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    display: none;
  }

  .carousel-wrapper {
    margin: 0;
    padding: 0;
  }

  .testimonial-item {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: start;
  }

  .trust-badges {
    gap: 10px;
  }

  .badge-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .badge-icon {
    font-size: 12px;
  }

  .progress-label {
    font-size: 12px;
  }

  .progress-percentage {
    font-size: 14px;
  }

  .testimonial-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  .testimonial-content {
    padding: 12px;
  }

  .testimonial-content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .modal-content {
    max-width: 98vw;
    max-height: 80vh;
  }

  .close {
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .play-icon {
    font-size: 40px;
    width: 80px;
    height: 80px;
  }

