/* ================================
   FORTIS INMOBILIARIA — Design System
   Modern · 3D · Youthful · Premium
   ================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ================================
   CSS Variables
   ================================ */
:root {
  /* Colors — Lime Green Light Theme */
  --primary: #76B900;
  --primary-light: #A8E005;
  --primary-dark: #5A8F00;
  --accent: #4CAF50;
  --accent-alt: #8BC34A;
  --neon-green: #76B900;
  --neon-pink: #FF6B6B;
  --neon-orange: #FF9F43;
  
  /* Light theme */
  --bg-dark: #F5F9F0;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F0F7E6;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-light: rgba(118, 185, 0, 0.08);
  
  /* Text */
  --text-primary: #1A2E05;
  --text-secondary: #4A6328;
  --text-muted: #7A9B5A;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #76B900, #A8E005);
  --gradient-card: linear-gradient(145deg, rgba(118,185,0,0.08), rgba(168,224,5,0.04));
  --gradient-cta: linear-gradient(135deg, #76B900, #4CAF50);
  --gradient-glow: radial-gradient(circle, rgba(118,185,0,0.15), transparent 70%);
  
  /* Spacing */
  --section-padding: 60px 0;
  --container-width: 1280px;
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-xs: 8px;
  
  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-hover: 0 16px 48px rgba(118,185,0,0.18);
  --shadow-glow: 0 0 60px rgba(118,185,0,0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  width: min(90%, var(--container-width));
  margin: 0 auto;
}

/* ================================
   Scrollbar
   ================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #EAF2DE; }
::-webkit-scrollbar-thumb {
  background: var(--gradient-hero);
  border-radius: 10px;
}

/* ================================
   Preloader
   ================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-img {
    max-width: 120px;
    height: auto;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(118,185,0,0.12);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gradient-hero);
  border-radius: 10px;
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
}



/* ================================
   Navigation
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.85); /* Clean clear background */
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 4px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(118, 185, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
}
.nav-cta {
  margin-left: auto;
}

.currency-nav {
    margin-right: 10px;
}

.nav-select {
    padding: 8px 12px;
    background: var(--bg-glass-light);
    border: 1px solid rgba(118, 185, 0, 0.2);
    border-radius: var(--border-radius-xs);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-select:hover {
    border-color: var(--primary);
    background: white;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-hero);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  background: var(--gradient-hero);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5A8F00, #4CAF50);
  opacity: 0;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(118, 185, 0, 0.3);
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(245, 249, 240, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ================================
   Hero Section
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 249, 240, 0.3) 0%,
    rgba(245, 249, 240, 0.6) 50%,
    var(--bg-dark) 100%
  );
}

/* Floating 3D shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: var(--border-radius);
  animation: float-3d 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  background: linear-gradient(135deg, rgba(118,185,0,0.15), rgba(168,224,5,0.1));
  border: 1px solid rgba(118,185,0,0.2);
  backdrop-filter: blur(10px);
  transform: rotateX(20deg) rotateY(-15deg);
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  background: linear-gradient(135deg, rgba(76,175,80,0.12), rgba(139,195,74,0.08));
  border: 1px solid rgba(76,175,80,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  animation-delay: -2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  left: 5%;
  background: linear-gradient(135deg, rgba(168,224,5,0.15), rgba(118,185,0,0.1));
  border: 1px solid rgba(168,224,5,0.18);
  backdrop-filter: blur(10px);
  animation-delay: -4s;
  border-radius: 8px;
  transform: rotate(45deg);
}

.shape-4 {
  width: 40px;
  height: 40px;
  bottom: 25%;
  left: 15%;
  background: rgba(139, 195, 74, 0.15);
  border: 1px solid rgba(139, 195, 74, 0.2);
  border-radius: 50%;
  animation-delay: -6s;
}

@keyframes float-3d {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-30px) rotateX(10deg) rotateY(10deg);
  }
  50% {
    transform: translateY(-15px) rotateX(-5deg) rotateY(-10deg);
  }
  75% {
    transform: translateY(-25px) rotateX(8deg) rotateY(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 140px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid rgba(118, 185, 0, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-hero);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-hero);
  border: none;
  border-radius: 60px;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(118, 185, 0, 0.35);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(118, 185, 0, 0.3);
  border-radius: 60px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--bg-glass);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(118, 185, 0, 0.2);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

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

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(118, 185, 0, 0.35);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

.scroll-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ================================
   Section Headers
   ================================ */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--bg-glass-light);
  border: 1px solid rgba(118, 185, 0, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* ================================
   Properties Section
   ================================ */
.properties {
  padding: var(--section-padding);
  position: relative;
}

.properties::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  opacity: 0.3;
  pointer-events: none;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  perspective: 1200px;
}

.property-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(118, 185, 0, 0.08);
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
  position: relative;
}

.property-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
  border-radius: var(--border-radius);
}

.property-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: var(--shadow-hover);
  border-color: rgba(118, 185, 0, 0.2);
}

.property-card:hover::before { opacity: 1; }

.property-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  border: 1px solid rgba(118, 185, 0, 0.25);
  z-index: 1;
}

.property-badge.rent {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
  border-color: rgba(33, 150, 243, 0.25);
}

.property-badge.sold, .property-badge.alquilada {
  background: rgba(255, 71, 87, 0.85);
  color: white;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 50px;
  transform: translate(-50%, -50%) rotate(35deg);
  border-radius: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 800;
  z-index: 5;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.property-badge.alquilada {
  background: rgba(255, 165, 0, 0.85);
}

.property-compare {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  color: var(--text-secondary);
}

.property-compare:hover {
  background: white;
  color: var(--primary);
  transform: scale(1.1);
}

.property-compare.selected {
  background: var(--primary);
  color: white;
}

.property-like {
  position: absolute;
  top: 16px;
  right: 60px; /* Adjusted from 16px to accommodate compare button */
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.property-like:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  transform: scale(1.15);
}

.property-like svg {
  width: 18px;
  height: 18px;
  stroke: #666;
  fill: none;
  stroke-width: 2;
  transition: var(--transition-fast);
}

.property-like.liked svg {
  fill: var(--neon-pink);
  stroke: var(--neon-pink);
}

.property-info {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.property-location svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-light);
}

.property-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.property-features {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(118, 185, 0, 0.1);
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-light);
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.property-price span {
  font-size: 0.82rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
}

.property-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-glass-light);
  border: 1px solid rgba(118, 185, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.property-btn:hover {
  background: var(--gradient-hero);
  border-color: transparent;
  transform: scale(1.1);
}

.property-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-primary);
  transition: var(--transition-fast);
}

/* ================================
   Features / Why Us Section
   ================================ */
.why-us {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,224,5,0.08), transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(118, 185, 0, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(118, 185, 0, 0.2);
  box-shadow: var(--shadow-card);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.feature-icon.purple {
  background: rgba(118, 185, 0, 0.1);
  color: var(--primary);
}

.feature-icon.blue {
  background: rgba(76, 175, 80, 0.1);
  color: var(--accent);
}

.feature-icon.pink {
  background: rgba(255, 107, 107, 0.1);
  color: var(--neon-pink);
}

.feature-icon.green {
  background: rgba(118, 185, 0, 0.1);
  color: var(--neon-green);
}

.feature-icon.orange {
  background: rgba(255, 159, 67, 0.1);
  color: var(--neon-orange);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================
   3D Showcase Section
   ================================ */
.showcase-3d {
  padding: var(--section-padding);
  position: relative;
}

.showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-visual {
  position: relative;
  height: 500px;
  perspective: 1200px;
}

.card-3d {
  position: absolute;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-3d-1 {
  width: 320px;
  height: 380px;
  top: 10%;
  left: 5%;
  transform: rotateY(15deg) rotateX(-5deg);
  z-index: 3;
  border: 2px solid rgba(118, 185, 0, 0.25);
}

.card-3d-2 {
  width: 260px;
  height: 320px;
  top: 0;
  right: 0;
  transform: rotateY(-10deg) rotateX(5deg) translateZ(-30px);
  z-index: 2;
  border: 2px solid rgba(76, 175, 80, 0.2);
}

.card-3d-3 {
  width: 200px;
  height: 250px;
  bottom: 0;
  right: 15%;
  transform: rotateY(8deg) rotateX(-3deg) translateZ(-60px);
  z-index: 1;
  border: 2px solid rgba(168, 224, 5, 0.2);
}

.card-3d:hover {
  z-index: 10;
  transform: rotateY(0deg) rotateX(0deg) scale(1.05) translateZ(20px);
  box-shadow: var(--shadow-glow);
}

.showcase-content {
  padding-left: 40px;
}

.showcase-content .section-tag {
  margin-bottom: 20px;
}

.showcase-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(118, 185, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--neon-green);
  stroke-width: 3;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(118,185,0,0.08), transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid rgba(118, 185, 0, 0.08);
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(118, 185, 0, 0.2);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFD700;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
}

.cta-card {
  background: var(--bg-card);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(118, 185, 0, 0.1);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(118,185,0,0.06), transparent, rgba(168,224,5,0.04), transparent);
  animation: cta-rotate 15s linear infinite;
}

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

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================
   Contact Section
   ================================ */
.contact {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(118, 185, 0, 0.08);
  transition: var(--transition-smooth);
}

.contact-method:hover {
  border-color: rgba(118, 185, 0, 0.25);
  transform: translateX(6px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(118, 185, 0, 0.1);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(245, 249, 240, 0.6);
  border: 1px solid rgba(118, 185, 0, 0.15);
  border-radius: var(--border-radius-xs);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(118, 185, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-hero);
  border: none;
  border-radius: var(--border-radius-xs);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(118, 185, 0, 0.3);
}

/* ================================
   Footer
   ================================ */
.footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(118, 185, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(118, 185, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--gradient-hero);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-brand .logo img {
  height: 90px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(37, 211, 102, 0.5); /* Transparent green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  background: rgba(37, 211, 102, 0.9);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(118, 185, 0, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ================================
   Scroll Animations
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

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

/* ================================
   Floating particles
   ================================ */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 1024px) {
  .properties-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-visual {
    height: 400px;
    order: -1;
  }
  
  .showcase-content {
    padding-left: 0;
    text-align: center;
  }
  
  .showcase-list {
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .properties-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cta-card {
    padding: 50px 30px;
  }
  
  .showcase-visual {
    height: 350px;
  }
  
  .card-3d-1 {
    width: 60%;
    height: 280px;
  }
  
  .card-3d-2 {
    width: 45%;
    height: 240px;
  }
  
  .card-3d-3 {
    width: 35%;
    height: 180px;
  }
  
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item::after { display: none; }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .cta-actions {
    flex-direction: column;
  }
}

/* ================================
   3D Tilt Interactive Card Effect
   ================================ */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card .tilt-content {
  transform: translateZ(30px);
}

/* Glow line animation */
.glow-line {
  position: relative;
  overflow: hidden;
}

.glow-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(118,185,0,0.08), transparent);
  animation: glow-slide 3s ease-in-out infinite;
}

@keyframes glow-slide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Number counter animation helper */
.count-up {
  display: inline-block;
}

/* ================================
   Scroll Reveal Animations
   ================================ */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}
